@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Montserrat:wght@400;500;600&display=swap");
/* ========================================
   COLORES PRINCIPALES

   Aquí podrás cambiar fácilmente los
   colores de toda la página.
======================================== */


:root {
  --background: #fffaf5;
  --surface: #ffffff;
  --cream: #f8eee5;

  --text: #33261f;
  --text-soft: #715f54;

  --gold: #b98029;
  --gold-dark: #8f601d;

  --rose: #c9827c;
  --rose-dark: #a8605b;

  --border: #eadbd0;
  --white: #ffffff;

  --max-width: 1200px;
}

/* ========================================
   CONFIGURACIÓN GENERAL
======================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  margin: 0;
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
summary {
  font: inherit;
}

svg {
  display: block;
}

/* ========================================
   BARRA SUPERIOR
======================================== */

.top-bar {
  background: var(--cream);
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  text-align: center;
  text-transform: uppercase;
}

/* ========================================
   CABECERA
======================================== */

.site-header {
  background: rgba(255, 250, 245, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;

  /* Efecto de cristal suave */
  backdrop-filter: blur(12px);
}

/* Contenedor que centra la cabecera */

.header-container {
  align-items: center;
  display: grid;
  gap: 25px;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: var(--max-width);
  min-height: 86px;
  padding: 14px 24px;
  position: relative;
}

/* ========================================
   MARCA
======================================== */

.brand {
  align-items: center;
  display: flex;
  gap: 8px;
  white-space: nowrap;
}

.brand-name {
  font-family: "Allura", cursive;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1;
}

.brand-star {
  color: var(--gold);
  font-size: 1.1rem;
  display: inline;
}

/* ========================================
   MENÚ DE ORDENADOR
======================================== */

.desktop-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 3vw, 38px);
  justify-content: center;
}

.desktop-nav a {
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 10px 0;
  position: relative;
}

/* Línea dorada al pasar el ratón */

.desktop-nav a::after {
  background: var(--gold);
  bottom: 2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  width: 100%;
}

.desktop-nav a:hover {
  color: var(--text);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

/* ========================================
   ACCIONES DE LA CABECERA
======================================== */

.header-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

/* Botón de Instagram */

.instagram-button {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 42px;
  justify-content: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
  width: 42px;
}

.instagram-button:hover {
  background: var(--cream);
  color: var(--rose-dark);
}

.instagram-button svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 22px;
}

/* Botón de WhatsApp */

.whatsapp-button {
  align-items: center;
  background: var(--rose);
  border-radius: 999px;
  color: var(--white);
  display: flex;
  font-size: 0.78rem;
  font-weight: 600;
  gap: 8px;
  min-height: 44px;
  padding: 8px 18px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.whatsapp-button:hover {
  background: var(--rose-dark);
  transform: translateY(-2px);
}

.whatsapp-button svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 19px;
}

/* ========================================
   MENÚ MÓVIL
======================================== */

.mobile-menu {
  display: none;
}

/* Quita el triángulo predeterminado */

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

/* ========================================
   CONTENIDO PROVISIONAL
======================================== */

.temporary-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 70vh;
  padding: 40px 20px;
  text-align: center;
}

.temporary-content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  margin: 0 0 10px;
}

.temporary-content p {
  color: var(--text-soft);
  margin: 0;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 950px) {
  .header-container {
    gap: 15px;
  }

  .desktop-nav {
    gap: 15px;
  }

  .desktop-nav a {
    font-size: 0.75rem;
  }

  .brand-name {
    font-size: 2.1rem;
  }
}

/* ========================================
   MÓVIL
======================================== */

@media (max-width: 768px) {
  .top-bar {
    font-size: 0.61rem;
    padding: 7px 10px;
  }

  .header-container {
    grid-template-columns: 42px 1fr auto;
    min-height: 70px;
    padding: 10px 14px;
  }

  /* Ocultamos el menú grande */

  .desktop-nav {
    display: none;
  }

  /* Mostramos el menú móvil */

  .mobile-menu {
    display: block;
    position: static;
  }

  .mobile-menu summary {
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 42px;
    justify-content: center;
    width: 42px;
  }

  .mobile-menu summary:hover {
    background: var(--cream);
  }

  .mobile-menu summary svg {
    fill: none;
    height: 24px;
    stroke: var(--text);
    stroke-linecap: round;
    stroke-width: 1.7;
    width: 24px;
  }

  /* Menú desplegable */

  .mobile-nav {
    background: var(--background);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 30px rgba(51, 38, 31, 0.1);
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 12px 20px 20px;
    position: absolute;
    right: 0;
    top: 100%;
  }

  .mobile-nav a {
    border-bottom: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 0.85rem;
    padding: 14px 5px;
  }

  .mobile-nav a:last-child {
    border-bottom: 0;
  }

  .brand {
    justify-self: center;
  }

  .brand-name {
    font-size: 2rem;
  }

 .brand {
  align-items: center;
  display: flex;
  gap: 6px;
}

  .header-actions {
    gap: 0;
  }

  .instagram-button {
    display: flex;
  }

  .whatsapp-button {
    border-radius: 50%;
    height: 42px;
    justify-content: center;
    min-height: 42px;
    padding: 0;
    width: 42px;
  }

  .whatsapp-button span {
    display: none;
  }

  .temporary-content h1 {
    font-size: 3rem;
  }
}

/* ========================================
   PORTADA PRINCIPAL
======================================== */

.hero {
  margin: 18px auto 0;
  max-width: 1200px;
  padding: 0 20px;
}

.hero-contenido {
  background-color: #f7ede4;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 430px;
  overflow: hidden;
}

.hero-texto {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px;
}

.hero-bienvenida {
  color: #b98029;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.hero-texto h1 {
  color: #33261f;
  font-family: Georgia, serif;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  font-weight: 400;
  line-height: 0.95;
  margin: 0;
}

.hero-linea {
  background-color: #d4a156;
  height: 1px;
  margin: 24px 0 18px;
  width: 125px;
}

.hero-descripcion {
  color: #715f54;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
  max-width: 330px;
}

.hero-botones {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.boton-productos,
.boton-pedido {
  border-radius: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 14px 20px;
}

.boton-productos {
  background-color: #c9827c;
  color: white;
}

.boton-pedido {
  border: 1px solid #c99b57;
  color: #6a4a32;
}

.hero-imagen img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/* ========================================
   VENTAJAS
======================================== */

.hero-ventajas {
  background-color: white;
  border: 1px solid #eadbd0;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(74, 45, 29, 0.07);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: -22px auto 0;
  max-width: 1050px;
  position: relative;
}

.ventaja {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: center;
  min-height: 78px;
  padding: 15px;
}

.ventaja:not(:last-child) {
  border-right: 1px solid #eadbd0;
}

.ventaja-icono {
  fill: none;
  flex-shrink: 0;
  height: 28px;
  stroke: #c9827c;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  width: 28px;
}

.ventaja p {
  color: #5e4b40;
  font-size: 0.74rem;
  line-height: 1.5;
  margin: 0;
}

/* ========================================
   PORTADA EN MÓVIL
======================================== */

@media (max-width: 768px) {

  .hero {
    margin-top: 12px;
    padding: 0 12px;
  }

  .hero-contenido {
    grid-template-columns: 1fr;
  }

  .hero-texto {
    padding: 38px 24px;
  }

  .hero-texto h1 {
    font-size: 3rem;
  }

  .hero-imagen {
    min-height: 280px;
  }

  .hero-ventajas {
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .ventaja:not(:last-child) {
    border-bottom: 1px solid #eadbd0;
    border-right: 0;
  }

}
/* EFECTOS DE LOS BOTONES */

.boton-productos,
.boton-pedido {
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.boton-productos:hover {
  background-color: #a8605b;
  box-shadow: 0 8px 18px rgba(168, 96, 91, 0.25);
  transform: translateY(-3px);
}

.boton-pedido:hover {
  background-color: #c99b57;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(201, 155, 87, 0.25);
  transform: translateY(-3px);
}

/* EFECTO DE LA IMAGEN */

.hero-imagen {
  overflow: hidden;
}

.hero-imagen img {
  transition: transform 0.6s ease;
}

.hero-imagen:hover img {
  transform: scale(1.05);
}
/* ========================================
   COLECCIONES
======================================== */

.colecciones {
  margin: 0 auto;
  max-width: 1200px;
  padding: 45px 20px 40px;
}

.colecciones-titulo {
  margin-bottom: 20px;
  text-align: center;
}

.colecciones-titulo h2 {
  color: #4b382e;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0;
  text-transform: uppercase;
}

.colecciones-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1000px;
}

.coleccion-card {
  background-color: #ffffff;
  border: 1px solid #eadbd0;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(74, 45, 29, 0.06);
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.coleccion-card:hover {
  box-shadow: 0 14px 30px rgba(74, 45, 29, 0.12);
  transform: translateY(-5px);
}

.coleccion-card a {
  display: block;
}

.coleccion-card img {
  display: block;
  height: 190px;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}

.coleccion-card:hover img {
  transform: scale(1.05);
}

.coleccion-info {
  padding: 18px 15px;
  text-align: center;
}

.coleccion-info h3 {
  color: #4b382e;
  font-family: Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0 0 6px;
}

.coleccion-info span {
  color: #c9827c;
  font-size: 0.72rem;
  font-weight: 500;
}

/* ========================================
   COLECCIONES EN MÓVIL
======================================== */

@media (max-width: 768px) {

  .colecciones {
    padding: 50px 14px;
  }

  .colecciones-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .coleccion-card img {
    height: 220px;
  }

}
/* ========================================
   PRODUCTOS DESTACADOS
======================================== */

.productos {
  margin: 0 auto;
  max-width: 1200px;
  padding: 5px 20px 25px;
}

.productos-encabezado {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin: 0 auto 24px;
  max-width: 1000px;
}

.productos-encabezado h2 {
  color: #4b382e;
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  grid-column: 2;
  letter-spacing: 0.04em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.productos-encabezado a {
  color: #c9827c;
  font-size: 0.82rem;
  font-weight: 600;
  grid-column: 3;
  justify-self: end;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.productos-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1000px;
}

.producto-card {
  background-color: #ffffff;
  border: 1px solid #eadbd0;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(74, 45, 29, 0.06);
  overflow: hidden;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.producto-card:hover {
  box-shadow: 0 14px 30px rgba(74, 45, 29, 0.12);
  transform: translateY(-5px);
}

.producto-imagen {
  height: 195px;
}

.producto-imagen img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  width: 100%;
}

.producto-card:hover .producto-imagen img {
  transform: scale(1.05);
}

.producto-favorito {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.85);
  border: 0;
  border-radius: 50%;
  color: #4b382e;
  cursor: pointer;
  display: flex;
  font-size: 1.5rem;
  height: 38px;
  justify-content: center;
  position: absolute;
  right: 12px;
  top: 12px;
  width: 38px;
}

.producto-favorito:hover {
  color: #c9827c;
}

.producto-info {
  padding: 16px;
}

.producto-info h3 {
  color: #33261f;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  margin: 0 0 10px;
}

.producto-precio {
  color: #c9827c;
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 12px;
}

.producto-consultar {
  color: #a8605b;
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* TABLET */

@media (max-width: 950px) {
  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MÓVIL */

@media (max-width: 600px) {
  .productos {
    padding: 35px 14px 55px;
  }

  .productos-encabezado h2 {
    font-size: 1.05rem;
  }

  .productos-grid {
    grid-template-columns: 1fr;
  }

  .producto-imagen {
    height: 260px;
  }
}
/* ========================================
   SOBRE ELEN
======================================== */

.sobre-elen {
  margin: 0 auto;
  max-width: 1200px;
  padding: 15px 20px 50px;
}

.sobre-elen-contenido {
  align-items: stretch;
  background-color: #f8eee5;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 38% 1fr;
  min-height: 300px;
  overflow: hidden;
  position: relative;
}

.sobre-elen-imagen {
  overflow: hidden;
}

.sobre-elen-imagen img {
  display: block;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  width: 100%;
}

.sobre-elen-contenido:hover .sobre-elen-imagen img {
  transform: scale(1.04);
}

.sobre-elen-texto {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 150px 42px 55px;
  position: relative;
  z-index: 2;
}

.sobre-elen-etiqueta {
  color: #9a6b31;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.sobre-elen-texto h2 {
  color: #4b382e;
  font-family: Georgia, serif;
  font-size: 2.3rem;
  font-weight: 400;
  margin: 0 0 14px;
}

.sobre-elen-descripcion {
  color: #715f54;
  font-size: 0.82rem;
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 430px;
}

.sobre-elen-boton {
  border: 1px solid #c99b57;
  border-radius: 5px;
  color: #6a4a32;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 12px 18px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.sobre-elen-boton:hover {
  background-color: #c99b57;
  color: #ffffff;
  transform: translateY(-3px);
}

.sobre-elen-decoracion {
  bottom: 15px;
  opacity: 0.55;
  position: absolute;
  right: 28px;
  width: 90px;
}

.sobre-elen-decoracion svg {
  fill: none;
  stroke: #d9a09b;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.2;
  width: 100%;
}

/* MÓVIL */

@media (max-width: 768px) {
  .sobre-elen {
    padding: 30px 14px 55px;
  }

  .sobre-elen-contenido {
    grid-template-columns: 1fr;
  }

  .sobre-elen-imagen {
    height: 280px;
  }

  .sobre-elen-texto {
    padding: 34px 24px 40px;
  }

  .sobre-elen-texto h2 {
    font-size: 2rem;
  }

  .sobre-elen-decoracion {
    bottom: 10px;
    opacity: 0.25;
    right: 12px;
    width: 70px;
  }
}
/* ========================================
   CONTACTO RÁPIDO
======================================== */

.contacto-rapido {
  margin: 0 auto;
  max-width: 1200px;
  padding: 10px 20px 50px;
}

.contacto-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.contacto-card {
  align-items: center;
  background-color: #f9f1ea;
  border: 1px solid #efe0d5;
  border-radius: 16px;
  display: flex;
  gap: 20px;
  min-height: 150px;
  padding: 26px 28px;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.contacto-card:hover {
  box-shadow: 0 12px 28px rgba(74, 45, 29, 0.1);
  transform: translateY(-4px);
}

.contacto-icono {
  fill: none;
  flex-shrink: 0;
  height: 44px;
  stroke: #d4877f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  width: 44px;
}

.contacto-texto h3 {
  color: #4b382e;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.contacto-texto p {
  color: #715f54;
  font-size: 0.7rem;
  line-height: 1.55;
  margin: 0 0 10px;
}

.contacto-texto a {
  color: #c9827c;
  font-size: 0.7rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* TABLET Y MÓVIL */

@media (max-width: 850px) {
  .contacto-grid {
    grid-template-columns: 1fr;
  }

  .contacto-card {
    margin: 0 auto;
    max-width: 520px;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .contacto-rapido {
    padding: 15px 14px 55px;
  }

  .contacto-card {
    align-items: flex-start;
    padding: 24px 20px;
  }

  .contacto-icono {
    height: 36px;
    width: 36px;
  }
}
/* ========================================
   PIE DE PÁGINA
======================================== */

.footer {
  background-color: #f8eee5;
  border-top: 1px solid #eadbd0;
  color: #5e4b40;
}

/* ========================================
   FRANJA DE VENTAJAS
======================================== */

.footer-ventajas {
  border-bottom: 1px solid #eadbd0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1200px;
  padding: 22px 20px;
}

.footer-ventaja {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: center;
  padding: 10px 18px;
}

.footer-ventaja:not(:last-child) {
  border-right: 1px solid #eadbd0;
}

.footer-ventaja svg {
  fill: none;
  flex-shrink: 0;
  height: 30px;
  stroke: #d4877f;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  width: 30px;
}

.footer-ventaja p {
  font-size: 0.7rem;
  line-height: 1.5;
  margin: 0;
}

/* ========================================
   CONTENIDO PRINCIPAL DEL FOOTER
======================================== */

.footer-contenido {
  display: grid;
  gap: 35px;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  margin: 0 auto;
  max-width: 1200px;
  padding: 45px 20px 30px;
}

/* MARCA */

.footer-logo {
  color: #4b2d1e;
  font-family: "Allura", cursive;
  font-size: 2.7rem;
  line-height: 1;
}

.footer-marca p {
  color: #9b7c6c;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  margin: 8px 0 0;
  text-transform: uppercase;
}

/* COLUMNAS */

.footer-columna {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-columna h3 {
  color: #4b382e;
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.footer-columna a {
  color: #715f54;
  font-size: 0.7rem;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-columna a:hover {
  color: #c9827c;
  transform: translateX(3px);
}

/* REDES */

.footer-redes-iconos {
  display: flex;
  gap: 12px;
}

.footer-redes-iconos a {
  align-items: center;
  border: 1px solid #d9c3b5;
  border-radius: 50%;
  display: flex;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.footer-redes-iconos a:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
}

.footer-redes-iconos svg {
  fill: none;
  height: 18px;
  stroke: #715f54;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 18px;
}

/* COPYRIGHT */

.footer-copyright {
  border-top: 1px solid #eadbd0;
  padding: 14px 20px;
  text-align: center;
}

.footer-copyright p {
  color: #8b7568;
  font-size: 0.65rem;
  margin: 0;
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 950px) {

  .footer-ventajas {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-ventaja:nth-child(2) {
    border-right: 0;
  }

  .footer-contenido {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-marca {
    grid-column: 1 / -1;
  }

}

/* ========================================
   MÓVIL
======================================== */

@media (max-width: 600px) {

  .footer-ventajas {
    grid-template-columns: 1fr;
    padding: 16px 14px;
  }

  .footer-ventaja {
    justify-content: flex-start;
    padding: 16px 10px;
  }

  .footer-ventaja:not(:last-child) {
    border-bottom: 1px solid #eadbd0;
    border-right: 0;
  }

  .footer-contenido {
    gap: 30px;
    grid-template-columns: 1fr;
    padding: 35px 24px 25px;
  }

  .footer-marca {
    grid-column: auto;
  }

  .footer-logo {
    font-size: 2.5rem;
  }

}
.producto-favorito {
  display: none;
}