/* Reset */
* {
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Global */
html {
  scroll-behavior: smooth;
}

/* Variables */
:root {
  --color1: #000000;
  --color2: #ffffff;
  --color3: #0000ff99;
  --color4: #ff0000;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--color2);
}

a {
  font-size: 1rem;
  color: var(--color1);
}

.btn {
  cursor: pointer;
  border: none;
  font-size: 1rem;
  padding: 0.5rem 1rem;
  background-color: transparent;
}

input[type="checkbox"] {
  display: none;
}

label {
  cursor: pointer;
  display: none;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 40px;
  border-bottom: 1px solid #ccc;
  box-shadow: 0px 0px 10px #ccc;
}

.navbar-izq {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar-logo img {
  display: flex;
}

.navbar-izq .navbar-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.navbar-der ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 1rem;
}

.navbar-der ul li a {
  color: var(--color3);
}

/* Inicio */
.inicio {
  margin: 1rem 2rem;
}

.inicio-enlaces {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}

.inicio-enlaces a:first-child {
  color: var(--color4);
}

.inicio img {
  display: block;
  object-fit: cover;
  min-width: 700px;
  width: 80%;
  height: 80%;
  margin: 1rem auto;
}

.inicio::before {
  content: 'Ableton';
  position: absolute;
  font-weight: bold;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  top: 70%;
  left: 50%;
  font-size: 5rem;
  z-index: 1;
  color: var(--color4);
}

.inicio-texto {
  width: 60%;
  margin: 4rem auto;
}

.inicio-texto h3 {
  margin: 2rem 0;
  font-size: 1.5rem;
  line-height: 3rem;
}

.inicio-texto p {
  margin: 2rem 0;
  font-size: 1.2rem;
  line-height: 2rem;
}

/* Dos Imágenes */
.contenedor {
  position: relative;
  display: inline-block;
}

.contenedor .img1 {
  position: absolute;
  top: 550px;
  right: 150px;
  width: 500px;
  height: 500px;
}

.contenedor .img1 img {
  width: 100%;
  height: 100%;
}

.contenedor .img2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 800px;
  height: 800px;
  background-color: #b8fe0655;
}

.contenedor .img2 img {
  width: 60%;
}

/* Primer Video */
.video {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video .video1 img {
  object-fit: cover;
  width: 500px;
  height: 500px;
}

.video .video1 p {
  margin: 0.5rem 2rem;
  font-size: 0.8rem;
}

/* Tres Imágenes */
.tresImágenes .img1 {
  left: 150px;
}

.tresImágenes .img2 {
  float: right;
  display: flex;
  flex-direction: column;
}

.tresImágenes .img2 img {
  display: block;
  object-fit: cover;
  width: 40%;
  height: 40%;
  margin: 1rem auto;
}

/* Una Imagen */
.unaImagen {
  position: relative;
}

.unaImagen .img {
  width: 800px;
  height: 500px;
  margin: 0 auto;
}

.unaImagen .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Dos Imágenes Centradas */
.dosImágenesCentradas .img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 800px;
  height: 600px;
  margin: 0 auto;
  background-color: #060efe82;
}

.dosImágenesCentradas .img1 {
  position: absolute;
  left: 150px;
}

.dosImágenesCentradas .img2 {
  position: absolute;
  right: 150px;
}

.dosImágenesCentradas .img1 img {
  object-fit: cover;
  width: 300px;
  height: 300px;
}

.dosImágenesCentradas .img2 img {
  object-fit: cover;
  width: 500px;
  height: 500px;
}

/* Dos Paneles */
.panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 1000px;
  height: 400px;
  gap: 1rem;
  margin: 0 auto;
  background-color: #060efe82;
}

.panel img {
  object-fit: cover;
  width: 50%;
  height: 100%;
}

.panel-texto {
  width: 50%;
  margin: 0 20px;
}

.panel-texto h3 {
  margin: 2rem 0;
  font-size: 1.5rem;
  line-height: 3rem;
}

.panel-texto a {
  margin: 2rem 0;
  font-size: 1.2rem;
  line-height: 2rem;
  color: #a8f709;
}

/* Footer */
.footer {
  width: 100%;
  height: 100px;
  margin: 100px auto;
  padding: 100px;
  border-top: 1px solid #ccc;
}

.footer .titulo {
  margin: 2rem 0;
  font-size: 1.5rem;
  line-height: 3rem;
}

.footer .footerSup {
  display: flex;
  justify-content: space-evenly;
  gap: 5rem;
  margin: 1rem 0;
}

.footer .footerSup .enlaces1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5rem;
}

.footer .footerSup .enlaces1 li,
.footer .footerSup .enlaces2 li,
.footer .footerSup .enlaces3 li {
  margin: 1rem 0;
  font-size: 1rem;
}

.footer .footerSup .enlaces2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer .footerSup .enlaces1 h3,
.footer .footerSup .enlaces2 h3,
.footer .footerSup .enlaces3 h3 {
  margin: 10px 0px;
  font-size: 1.3rem;
}

.footer .footerSup .enlaces3 {
  width: 40%;
}

.footer .footerSup .enlaces3 p {
  width: 70%;
  margin: 10px 0px;
  font-size: 1.2rem;
}

.footer .footerSup .enlaces3 input {
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  border: 1px solid #ccc;
}

.footer .footerSup .enlaces3 button {
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  border: 1px solid #ccc;
}

.footer .footerInf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem 0;
}

.footer .footerInf .enlaces ul {
  display: flex;
  gap: 1rem;
  line-height: 3rem;
}

.footer .footerInf .enlaces ul li a {
  font-size: 0.8rem;
}

.footer .footerInf .copy {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
}

