*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy: #1a2d4a;
    --taupe: #a8936a;
    --taupe-light: #86827B;
    --cream: #faf8f4;
    --stone: #e8e2d8;
    --text: #2c3e50;
    --text-light: #6b7280;
    --marroncito: #DAD4CF45
}

body {
  font-family: 'Poppins', sans-serif;
  /*background: var(--cream);*/
  color: var(--text);
  min-height: 100vh;
}

/* ── HEADER ── */
header {
  background: #fff;
  text-align: center;
  padding: 2rem 1rem 1.5rem;
  border-bottom: 1px solid var(--stone);
}
header img {
  height: 70px;
  width: auto;
}

/* ── HERO ── */
.hero {
    text-align: center;
    padding: 3rem 1.5rem;
    position: relative;
    overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168,147,106,0.08) 0%, transparent 70%);
  pointer-events: none;
}
    .hero h1 {
        font-family: 'Montserrat', serif;
        font-size: clamp(3rem, 8vw, 4rem);
        font-weight: 300;
        color: var(--taupe);
        letter-spacing: -0.01em;
        line-height: 1;
        margin-bottom: 1.2rem;
    }
.wave-divider {
  display: block;
  margin: 0 auto 1.4rem;
  color: var(--taupe);
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  opacity: 0.7;
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 300;
  color: var(--navy);
  letter-spacing: 0.04em;
  opacity: 0.8;
}

/* ── CARDS ── */
.cards-section {
    max-width: 1060px;
    margin: 0 auto;
    padding: 1rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.card-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.card-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.card-item:nth-child(2) {
  transition-delay: 0.14s;
}

.card-img-wrap {
    width: 100%;
    margin-bottom: 1.8rem;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26,45,74,0.13), 0 2px 8px rgba(26,45,74,0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card-img-wrap:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 22px 55px rgba(26,45,74,0.18), 0 4px 12px rgba(26,45,74,0.08);
}
.card-img-wrap img {
  width: 100%;
  display: block;
}

.card-name {
  margin-top: 1.8rem;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}
.card-price {
  font-family: 'Montserrat', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.1;
  margin: 0.25rem 0 1rem;
}
.card-price sup {
  font-size: 1.3rem;
  vertical-align: super;
  margin-left: 0.1em;
}
.card-desc {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text);
    text-align: center;
    max-width: 400px;
    margin-bottom: 1.8rem;
}

.btn-comprar {
  display: inline-block;
  padding: 0.85rem 2.4rem;
  background: var(--taupe);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  transition: background 0.25s ease, transform 0.2s ease;
}
.btn-comprar:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

/* ── BLOQUE TEXTO CENTRAL ── */
.footer-text {
    border-top: 1px solid var(--stone);
    padding: 2rem 2rem;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.footer-text .gift-icon {
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  display: block;
  opacity: 0.5;
}
.footer-text p {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text);
}

/* ── FOOTER PRINCIPAL ── */
.site-footer {
    background: var(--marroncito);
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    font-weight: 300;
}

.footer-top {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
}

/* Logo + tagline */
.footer-brand img {
  height: 64px;
  width: auto;
  opacity: 0.9;
  margin-bottom: 1.2rem;
  display: block;
}
.footer-brand p {
    line-height: 1.7;
    max-width: 240px;
    color: #000000;
    font-size: 0.85rem;
}

/* Columnas info */
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe-light);
  margin-bottom: 1.1rem;
}
.footer-col address {
    font-style: normal;
    line-height: 1.9;
    color: #000000;
}
.footer-col a {
    display: block;
    color: #86827B;
    text-decoration: none;
    line-height: 2;
    transition: color 0.2s ease;
}
.footer-col a:hover {
  color: var(--taupe-light);
}

/* Redes sociales */
.footer-social {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.4rem;
}
    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border: 1px solid #86827B;
        border-radius: 50%;
        color: #86827B;
        text-decoration: none;
        transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
        line-height: 1;
    }
.footer-social a:hover {
  border-color: var(--taupe-light);
  color: var(--taupe-light);
  background: rgba(168,147,106,0.1);
}
.footer-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Línea inferior */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-bottom .legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
    .footer-bottom .legal-links a {
        color: #86827B;
        text-decoration: none;
        font-size: 0.8rem;
        transition: color 0.2s ease;
    }
.footer-bottom .legal-links a:hover {
  color: var(--taupe-light);
}
    .footer-bottom .copyright {
        color: #86827B;
        font-size: 0.8rem;
    }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .cards-section {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding: 1rem 1.2rem 4rem;
  }
  .hero {
    padding: 3.5rem 1.2rem 2.5rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.2rem 1.5rem;
  }
}
