:root {
  --color-rojo: #C72F2D;
  --color-overkay: #c7302d1e;
  --color-overkay2: #0000001d;
}

* {
  /* font-family: -apple-system, BlinkMacSystemFont, "San Francisco", Helvetica, Arial, sans-serif; */
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  margin: 0;
}

/* .madimi-one-regular {
  font-family: "Madimi One", sans-serif;
  font-weight: 400;
  font-style: normal;
} */

html,
body {
  height: 200vh;
  width: 100vw;
  margin: 0 0;
  display: block;
  overflow-x: hidden;
  /* background-image: url("/static/img/background1.avif"); */
  background:
    linear-gradient(var(--color-overkay2), var(--color-overkay2)),
    /* url("/static/img/background1.avif"); */
    url("/static/img/background5.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* opcional: efecto elegante */
  z-index: 0;

  margin: 0;
  /* align-items: flex-start; */
  /* justify-content: flex-start; */
}

.navbar {
  display: flex;
  align-items: center;
  top: 0;
  width: 100%;
  z-index: 10;
  height: 120px;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: rgba(0, 0, 0, 0.489);
  border-bottom: 1px solid rgba(255, 255, 255, 0.611);
  margin-bottom: 20px;
}

.logo img {
  height: 120px;
  padding-left: 150px;
}

.textTittle {
  padding-left: 20px;
  color: white;
  font-size: larger;
}



/* .btn-descarga {
  display: flex;
  width: 200px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 20px;
  padding: 15px 18px;
  background: var(--color-rojo);
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-descarga:hover {
  background: #1B242B;
  transform: translateY(-2px);
} */

.btn-descarga {
  position: relative;
  overflow: hidden;

  display: flex;
  width: 200px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 20px;
  padding: 15px 18px;

  background: var(--color-rojo);
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;

  transition: all 0.3s ease;
}

/* Destello */
.btn-descarga::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.7),
    transparent
  );

  transform: skewX(-25deg);

  animation: brillo 4s infinite;
}

@keyframes brillo {
  0% {
    left: -120%;
  }

  20% {
    left: 130%;
  }

  100% {
    left: 130%;
  }
}

.btn-descarga:hover {
  background: #1B242B;
  transform: translateY(-2px);
}

.carousel {
  /* background-color: aqua; */

  position: relative;
  width: 600px;
  height: 600px;
  margin: auto;
  perspective: 1200px;
  /* CLAVE para efecto 3D */
  overflow: hidden;

  display: flex;
  justify-content: center;
  /* horizontal */
  align-items: center;
  /* vertical */

}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  /* horizontal */
  align-items: center;
  /* vertical */
  /* background-color: bisque; */
}

.slide {
  position: absolute;
  width: 70%;
  height: auto;
  left: 15%;
  top: 0;
  opacity: 0;
  transition: all 0.6s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

/* Centro */
.slide.active {
  transform: translateX(0) scale(1) rotateY(0deg);
  opacity: 1;
  z-index: 3;
}

/* Izquierda */
.slide.prevSlide {
  transform: translateX(-60%) scale(0.8) rotateY(40deg);
  opacity: 0.6;
  z-index: 2;
}

/* Derecha */
.slide.nextSlide {
  transform: translateX(60%) scale(0.8) rotateY(-40deg);
  opacity: 0.6;
  z-index: 2;
}

/* Ocultas atrás */
.slide.hidden {
  transform: translateX(0) scale(0.5);
  opacity: 0;
  z-index: 1;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all 0.3s ease;
  z-index: 10;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

.prev:hover,
.next:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}

.prev:active,
.next:active {
  transform: translateY(-50%) scale(0.95);
}


.carousel2 {
  /* position:fixed; */
  /* display: flex;
  flex-direction: column; */
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #ffffff;
  padding-top: 3px;
  padding-bottom: 3px;
  z-index: 100;
  /* margin-top: 10px; */
  /* height: 40px; */
}

.title {
  /* background-color: #1ebe5d; */
  height: max-content;
  text-align: center;
  /* centra el texto */
  /* color: var(--color-rojo); */
  color: black;
  /* color blanco */
  font-size: 2rem;
  /* opcional: más grande */
  font-weight: 300;
  /* opcional */
  margin-top: 10px;
  padding: 10px;
  /* margin-bottom: 10px; */
}

.track {
  /* bottom: 0px; */
  display: flex;
  width: max-content;
  animation: scroll 60s linear infinite alternate;
  height: 25vh;
  padding: 60px;
}

.track img {
  /* width: 40%; */
  /* SVG suele verse mejor más pequeño */
  /* height: 180px; */
  object-fit: fill;
  /* 🔥 IMPORTANTE para SVG */
  margin-right: 20px;
}

/* Animación infinita */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


.confianza {
  /* margin-top: 10px; */
  height: 100vh;
  padding: 20px 20px;
  padding-bottom: 20px;
  /* background-color: rgba(255, 255, 255, 0.748); */
  background-color: var(--color-rojo);
  text-align: center;
}

.confianza h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.confianza .descripcion {
  max-width: 600px;
  margin: 0 auto 50px;
  /* color: #666; */
  color: white;
}

.grid-confianza {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

.item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  border-top: 20px solid black
    /* rojo corporativo */
}

.item:hover {
  transform: translateY(-5px);
}

.icono {
  font-size: 30px;
  margin-bottom: 15px;
}

.item h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.item p {
  font-size: 0.95rem;
  color: #666;
}

.contacto-info {
  margin-top: 80px;
}

.contacto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.contacto-item {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contacto-item h3 {
  margin-bottom: 10px;
}

.contacto-item p {
  color: #555;
  line-height: 1.6;
}

.footer {
  background: var(--color-rojo);
  /* background: #c7302dab; */
  color: #fff;
  padding: 60px 20px 20px;
  height: 70vh;
}

.footer-container {
  padding-left: 100px;
  padding-right: 100px;
  /* background-color: var(--color-rojo); */
  /* background: #c7302dab; */
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}



.footer-col h3 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #cbd5e1;
}

.footer-col strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 6px;
  color: #ffffff;
  font-weight: 500;
}

.footer-col a {
  display: inline-block;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: #cbd5e1;
  transition: all 0.25s ease;
}

.footer-col a:hover {
  color: #25D366;
  /* verde WhatsApp */
  transform: translateX(3px);
}

/* Mejora espaciado entre bloques */
.footer-col p:last-child {
  margin-bottom: 0;
}


.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

/* BOTÓN WHATSAPP */
.btn-whatsapp {
  display: inline-block;
  margin-top: 10px;
  background: #25D366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
}

/* FOOTER BOTTOM */
.footer-bottom {
  background-color: black;
  text-align: center;
  border-top: 1px solid #1e293b;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #94a3b8;
}

.footer-bottom-pro {
  width: 100%;

  background: #020617;
  padding: 10px 10px;
  color: #cbd5e1;
  font-size: 0.85rem;
}

.footer-bottom-container {
  height: 15vh;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* IZQUIERDA */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 10px;
}

.footer-left a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-left a:hover {
  color: #25D366;
}

/* DERECHA */
.footer-right {
  text-align: right;
}

.social {
  margin-bottom: 10px;
}

.social a {
  margin-left: 12px;
  color: #cbd5e1;
  font-size: 1rem;
  transition: 0.3s;
}

.social a:hover {
  color: #25D366;
  transform: scale(1.2);
}

.copy {
  margin-bottom: 5px;
}

.dev strong {
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .social a {
    margin: 0 8px;
  }
}

.footer-bottom-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  text-align: center;
}

.footer-left,
.footer-right {
  display: contents;
  /* 👈 mezcla todo en una sola línea */
}

.footer-logo {
  width: 80px;
  vertical-align: middle;
}


.categorias {
  min-height: 100vh;
  display: flex;
  padding: 20px 20px;
  /* margin-bottom: 20px; */
  text-align: center;
  background: #f8fafc00;
}

.categorias h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}

/* GRID */
.grid-categorias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.card {
  background: var(--color-rojo);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  height: 90%;
  /* importante */
}

.card:hover {
  transform: translateY(-8px);
}

/* IMAGEN */
.card img {
  width: 100%;
  height: 40%;
  object-fit: contain;
  background-color: white;
}

/* CONTENIDO */
.card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  /* ocupa todo el espacio disponible */
}

.card-content h3 {
  font-size: 1.3rem;
  font-weight: 350;
  margin-bottom: 10px;
  color: white;
}

.card-content p {
  font-size: 0.9rem;
  color: white;
  margin-bottom: 15px;
}

/* BOTÓN */
.btn {
  display: inline-block;
  padding: 10px 18px;
  background: white;
  color: var(--color-rojo);
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;

  margin-top: auto;
  /* 🔥 empuja el botón al fondo */
  height: 25px;
  /* altura fija */
  display: flex;
  align-items: center;
  justify-content: center;


}

.btn:hover {
  /* background: #c9c9c9; */
  transform: scale(1.05);
}

.parrafoCalidad {
  /* background-color: #94a3b8; */
  text-align: justify;
  color: rgba(0, 0, 0, 0.903);
  line-height: 1.6;
  /* mejora la lectura */
  max-width: 800px;
  /* opcional: evita líneas muy largas */
  margin: auto;
  /* lo centra en la página */
  height: 20vh;
}

/* Botón hamburguesa */
.menu-btn {
  position: fixed;
  height: 70px;
  width: 70px;
  top: 45px;
  left: 20px;
  z-index: 1001;
  background: #C72F2D;
  color: white;

  border: 3px solid rgba(0, 0, 0, 0.442); /* borde negro */
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;



  font-size: 60px;
  border-radius: 8px;
  cursor: pointer;
}

/* Overlay oscuro */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999;
}

/* Menú lateral */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: #111;
  display: flex;
  flex-direction: column;
  padding-top: 120px;
  transition: 0.3s;
  z-index: 1000;
}

/* Links */
.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 18px 25px;
  font-size: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.mobile-menu a:hover {
  background: #C72F2D;
}

/* Estado activo */
.mobile-menu.active {
  left: 0;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  z-index: 9999;
}

/* Botones */
.float-btn {
  width: 70px;
  height: 70px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: transform 0.4s ease;
}

.float-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Hover */
.float-btn:hover {
  transform: scale(1.1);
}

/* Estado abierto */
.floating-buttons.active {
  flex-direction: row-reverse;
}



.search-dialog {
    
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 90vw;
    height: 85vh;
    max-width: 1200px;

    border: none;
    border-radius: 20px;
    padding: 0;

    background: #121212;
    color: white;
    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.search-dialog[open] {
    display: flex;
    flex-direction: column;
}

.search-dialog::backdrop {
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(6px);
}

.search-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #1c1c1c;
    border-bottom: 1px solid #333;
  
}

.search-header input {
    flex: 1;
    padding: 14px 18px;
    font-size: 18px;
    color: white;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 12px;
    outline: none;
    transition: 0.3s;
}

.search-header input:focus {
    /* border-color: #ff9800; */
    border-color: var(--color-rojo);
    box-shadow: 0 0 15px rgba(255,152,0,.3);
}

.search-header button {
    width: 48px;
    height: 48px;
    border: none;
    background: #2a2a2a;
    color: white;
    border-radius: 12px;
    cursor: pointer;
    font-size: 20px;
    transition: .3s;
}

.search-header button:hover {
    /* background: #ff9800; */
    background: var(--color-rojo);
}

.search-results {
    flex: 1;
    min-height: 0; /* MUY IMPORTANTE */

    overflow-y: auto;

    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));

    gap: 15px;
    padding: 20px;

    align-content: start;
}

.search-results::-webkit-scrollbar {
    width: 8px;
}

.search-results::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 10px;
}

.result-item {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;

    display: flex;
    flex-direction: column;

    height: 290px; /* altura fija */
    cursor: pointer;

    transition: all .2s ease;
}

.result-item:hover {
    transform: translateY(-4px);
    border-color: #ff9800;
}

.result-item img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    background: white;
    padding: 10px;
}

.product-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-info strong {
    color: white;
    font-size: 12px;
}

.product-info small {
    color: #bdbdbd;
    font-size: 13px;
}




.empty-search {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 80px;
    color: #bbb;
}

.empty-search h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: white;
}






/* ========================= */
/* CELULARES */
/* ========================= */
@media screen and (max-width: 768px) {

  body {
    background-attachment: scroll;
  }

  /* NAVBAR */
  .navbar {
    height: auto;
    padding: 15px 10px;
    flex-direction: column;
    text-align: center;
  }

  .logo img {
    height: 70px;
    padding-left: 0;
  }

  .textTittle {
    padding-left: 0;
    margin-top: 10px;
    font-size: 1rem;
  }

  .btn-descarga {
    width: 90%;
    margin: 15px auto 0;
    font-size: 16px;
  }

  /* CARRUSEL */
  .carousel {
    width: 100%;
    height: 400px;
  }

  .slide {
    width: 85%;
    left: 7.5%;
  }

  /* TITULOS */
  .title,
  .confianza h2,
  .categorias h2 {
    font-size: 1.6rem;
  }

  /* MARCAS */
  .carousel2 {
    height: auto;
  }

  .track {
    height: 120px;
    padding: 20px;
  }

  /* CONFIANZA */
  .confianza {
    height: auto;
    padding: 40px 15px;
  }

  .grid-confianza {
    grid-template-columns: 1fr;
  }

  /* CATEGORIAS */
  .categorias {
    min-height: auto;
    padding: 20px 10px;
  }

  .grid-categorias {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card {
    height: auto;
  }

  .card img {
    height: 100px;
  }

  /* FOOTER */
  .footer {
    height: auto;
    padding: 40px 15px;
  }

  .footer-container {
    padding-left: 0;
    padding-right: 0;
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-bottom-container {
    height: auto;
    flex-direction: column;
  }

  /* MENÚ */
  .menu-btn {
    width: 55px;
    height: 55px;
    font-size: 45px;
    top: 15px;
    left: 15px;
  }

  /* BOTONES FLOTANTES */
  .floating-buttons {
    bottom: 15px;
    left: 15px;
  }

  .float-btn {
    width: 60px;
    height: 60px;
  }

  /* BUSCADOR */
  .search-dialog {
    width: 95vw;
    height: 90vh;
  }

  .search-header {
    padding: 10px;
  }

  .search-header input {
    font-size: 16px;
  }

  .search-results {
    grid-template-columns: repeat(2, 1fr);
    padding: 10px;
    gap: 10px;
  }

  .result-item {
    height: 240px;
  }

  .result-item img {
    height: 130px;
  }

  .product-info strong {
    font-size: 11px;
  }

  .product-info small {
    font-size: 11px;
  }

  .parrafoCalidad {
    height: auto;
    padding: 0 10px;
  }
}

/* Buscador */

@media (max-width: 768px) {

    .search-dialog {
        width: 100vw;
        height: 100vh;
        max-width: none;
        max-height: none;

        margin: 0;
        border-radius: 0;

        top: 0;
        left: 0;
        transform: none;
    }

    .search-header {
        padding: 12px;
        gap: 8px;
    }

    .search-header span {
        font-size: 20px !important;
        flex-shrink: 0;
    }

    .search-header input {
        font-size: 16px;
        padding: 12px;
        min-width: 0;
    }

    .search-header button {
        width: 42px;
        height: 42px;
        font-size: 18px;
        flex-shrink: 0;
    }

    .search-results {
        padding: 10px;

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .result-item {
        height: auto;
        min-height: 220px;
    }

    .result-item img {
        height: 120px;
    }

    .product-info {
        padding: 8px;
    }

    .product-info strong {
        font-size: 11px;
        line-height: 1.3;
    }

    .product-info small {
        font-size: 10px;
    }

    .empty-search {
        margin-top: 40px;
        padding: 20px;
    }

    .empty-search h2 {
        font-size: 22px;
    }

    .empty-search p {
        font-size: 14px;
    }
}

/* Card celular*/


@media (max-width: 768px) {

    .grid-categorias {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .card {
        height: 220px;
        border-radius: 12px;
    }

    /* Imagen más protagonista */
    .card img {
        width: 100%;
        height: 140px;
        object-fit: contain;
        background: white;
    }

    /* Ocultar descripción */
    .card-content p {
        display: none;
    }

    .card-content {
        padding: 8px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .card-content h3 {
        font-size: 13px;
        text-align: center;
        margin: 0;
        line-height: 1.2;
    }

    /* Botón más pequeño */
    .btn {
        height: 28px;
        min-height: 28px;

        padding: 4px 8px;

        font-size: 11px;
        font-weight: 500;

        border-radius: 6px;
    }
}

/* Tactil carousel */

@media (max-width: 768px) {
.carousel {
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}
}
/* Botones flotantes */

@media (max-width: 768px) {

    .floating-buttons {
        position: fixed;

        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);

        display: flex;
        flex-direction: row;
        gap: 10px;

        padding: 8px 12px;

        background: rgba(0,0,0,.75);
        backdrop-filter: blur(10px);

        border-radius: 50px;

        z-index: 9999;
    }

    .float-btn {
        width: 50px;
        height: 50px;
    }

    /* Estado abierto */
  .floating-buttons.active {
    flex-direction: row;
}
}

/* Credito y derechos bottom */

@media (max-width: 768px) {

    .footer-bottom-pro {
        padding: 15px 10px 90px;
        /* 90px deja espacio para la barra flotante */
        text-align: center;
    }

    .footer-bottom-container {
        height: auto;
        min-height: auto;

        display: flex;
        flex-direction: column;

        justify-content: center;
        align-items: center;

        gap: 10px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        text-align: center;
    }

    .footer-logo {
        width: 90px;
        margin: 0 auto;
    }

    .copy {
        font-size: 12px;
        line-height: 1.4;
        margin: 0;
    }

}

/* Boton de menú   */

@media (max-width: 768px) {

    .menu-btn {
        top: 10px;
        left: 10px;

        width: 55px;
        height: 55px;

        font-size: 36px;
        line-height: 1;

        border-radius: 12px;
        border: 2px solid rgba(0,0,0,.3);

        padding: 0;

        box-shadow: 0 4px 12px rgba(0,0,0,.25);

        -webkit-tap-highlight-color: transparent;
        -webkit-touch-callout: none;
        user-select: none;

        transition: transform .15s ease;
    }

    .menu-btn:focus,
    .menu-btn:active,
    .menu-btn:focus-visible {
        outline: none;
        box-shadow: 0 4px 12px rgba(0,0,0,.25);
    }

    .menu-btn:active {
        transform: scale(0.95);
    }

}

@media (max-width: 768px) {

    * {
        -webkit-tap-highlight-color: transparent;
    }

}


