/* ===========================
   INIZIO — CSS
   Paleta:
   Crema:      #FEEEC1
   Rojo teja:  #7F1100
   Verde:      #294C29
   Dorado:     #E7AF67
=========================== */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --crema:  #FEEEC1;
  --rojo:   #7F1100;
  --verde:  #294C29;
  --dorado: #E7AF67;
  --negro:  #1a1a1a;
  --gris:   #555;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,.12);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--crema);
  color: var(--negro);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

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

/* ---- CONTAINER ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  font-weight: 600;
}

.section__label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rojo);
  margin-bottom: 10px;
  display: block;
}

.section__label--light { color: var(--dorado); }

.section__title {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--rojo);
  margin-bottom: 16px;
}

.section__title--light { color: var(--crema); }

.section__sub {
  font-size: 1.15rem;
  color: var(--gris);
  font-style: italic;
  margin-bottom: 48px;
  max-width: 600px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--verde);
  color: var(--crema);
}

.btn--outline {
  background: transparent;
  color: var(--crema);
  border: 2px solid var(--crema);
}

.btn--outline:hover { background: var(--crema); color: var(--verde); }

.btn--nav {
  background: var(--verde);
  color: var(--crema);
  padding: 10px 22px;
  font-size: .9rem;
}

.btn--lg {
  font-size: 1.1rem;
  padding: 18px 36px;
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--crema);
  border-bottom: 1px solid rgba(127, 17, 0, .12);
  transition: box-shadow var(--transition);
}

.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }

.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__logo svg {
  height: 36px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--rojo);
  transition: opacity var(--transition);
}

.nav__links a:hover { opacity: .7; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--rojo);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  display: block;
}

.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  min-height: 100svh;
  background: var(--verde);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(127,17,0,.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(231,175,103,.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero__overlay { display: none; }

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__badge {
  display: inline-block;
  background: var(--dorado);
  color: var(--negro);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 32px;
}

.hero__logo {
  height: 64px;
  width: auto;
  display: block;
  margin: 0 auto 32px;
}

.hero__headline {
  font-size: clamp(2.2rem, 6vw, 4rem);
  color: var(--crema);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero__headline em {
  font-style: italic;
  color: var(--dorado);
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(254,238,193,.75);
  margin-bottom: 40px;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(254,238,193,.5);
  font-size: .8rem;
  animation: bounce 2s infinite;
}

.hero__scroll svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---- PILARES ---- */
.pilares {
  padding: 96px 0;
  background: var(--crema);
}

.pilares .section__title,
.pilares .section__sub { text-align: center; }

.pilares .section__label { text-align: center; }

.pilares__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.pilar {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.pilar:hover { transform: translateY(-6px); }

.pilar__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1;
}

.pilar h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  color: var(--rojo);
  margin-bottom: 12px;
}

.pilar p { color: var(--gris); font-size: .95rem; line-height: 1.65; }

/* ---- EXPERIENCIA ---- */
.experiencia {
  padding: 96px 0;
  background: var(--crema);
  border-top: 1px solid rgba(127,17,0,.1);
}

.experiencia__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.experiencia__precio {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.precio__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  color: var(--rojo);
  line-height: 1;
}

.precio__per {
  font-size: 1rem;
  color: var(--gris);
}

.experiencia__lista {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.experiencia__lista li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--negro);
}

.experiencia__lista svg {
  width: 18px;
  height: 18px;
  stroke: var(--verde);
  flex-shrink: 0;
  margin-top: 3px;
}

.experiencia__ubicacion {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--gris);
  margin-bottom: 36px;
  background: rgba(41,76,41,.07);
  padding: 10px 16px;
  border-radius: 8px;
}

.experiencia__ubicacion svg {
  width: 16px;
  height: 16px;
  stroke: var(--verde);
  flex-shrink: 0;
}

.experiencia__visual { position: relative; }

.experiencia__foto-placeholder {
  background: var(--verde);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(254,238,193,.6);
  font-size: .9rem;
  text-align: center;
}

.experiencia__foto-placeholder span { font-size: 3rem; }

/* ---- PRIVADA ---- */
.privada {
  padding: 96px 0;
  background: var(--rojo);
}

.privada__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.privada__badge {
  display: inline-block;
  background: var(--dorado);
  color: var(--negro);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.privada__desc {
  font-size: 1.05rem;
  color: rgba(254,238,193,.85);
  margin-bottom: 40px;
  line-height: 1.7;
}

.privada__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}

.privada__feature {
  background: rgba(254,238,193,.08);
  border: 1px solid rgba(254,238,193,.15);
  border-radius: var(--radius);
  padding: 20px 12px;
  text-align: center;
}

.privada__feature span { font-size: 1.8rem; display: block; margin-bottom: 8px; }

.privada__feature p {
  font-size: .82rem;
  color: rgba(254,238,193,.75);
  line-height: 1.4;
}

/* ---- RODNY ---- */
.rodny {
  padding: 96px 0;
  background: var(--crema);
  border-top: 1px solid rgba(127,17,0,.1);
}

.rodny__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.rodny__foto-placeholder {
  background: var(--dorado);
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(127,17,0,.5);
  font-size: .9rem;
  text-align: center;
}

.rodny__foto-placeholder span { font-size: 3.5rem; }

.rodny__bio {
  color: var(--negro);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.rodny__stats {
  display: flex;
  gap: 32px;
  margin: 36px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(127,17,0,.15);
  border-bottom: 1px solid rgba(127,17,0,.15);
}

.stat { text-align: center; }

.stat__num {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  color: var(--rojo);
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label { font-size: .8rem; color: var(--gris); }

.rodny__social {
  display: flex;
  gap: 20px;
  margin-top: 28px;
}

.social__link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--rojo);
  transition: opacity var(--transition);
}

.social__link:hover { opacity: .7; }

.social__link svg {
  width: 18px;
  height: 18px;
}

/* ---- FAQ ---- */
.faq {
  padding: 96px 0;
  background: #fff;
}

.faq .section__label,
.faq .section__title { text-align: center; }

.faq__list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid rgba(127,17,0,.12);
}

.faq__item:first-child { border-top: 1px solid rgba(127,17,0,.12); }

.faq__question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--negro);
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}

.faq__question:hover { color: var(--rojo); }

.faq__question[aria-expanded="true"] { color: var(--rojo); }

.faq__question svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__question[aria-expanded="true"] svg { transform: rotate(180deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq__answer.open { max-height: 200px; padding-bottom: 20px; }

.faq__answer p {
  color: var(--gris);
  line-height: 1.7;
  font-size: .95rem;
}

/* ---- CTA FINAL ---- */
.cta-final {
  padding: 96px 0;
  background: var(--verde);
  text-align: center;
}

.cta-final__logo {
  height: 48px;
  width: auto;
  display: block;
  margin: 0 auto 36px;
}

.cta-final__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--crema);
  margin-bottom: 12px;
}

.cta-final__sub {
  font-size: 1rem;
  color: rgba(254,238,193,.7);
  margin-bottom: 40px;
}

.cta-final__note {
  margin-top: 20px;
  font-size: .85rem;
  color: rgba(254,238,193,.5);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--negro);
  padding: 48px 0 40px;
  text-align: center;
}

.footer__logo {
  height: 32px;
  width: auto;
  display: block;
  margin: 0 auto 16px;
}

.footer__tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  color: var(--crema);
  margin-bottom: 16px;
  opacity: .8;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer__social a {
  color: var(--dorado);
  font-size: .9rem;
  font-weight: 500;
  transition: opacity var(--transition);
}

.footer__social a:hover { opacity: .7; }

.footer__social span { color: rgba(255,255,255,.3); }

.footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* ---- STICKY WHATSAPP ---- */
.whatsapp-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  z-index: 90;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-sticky:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,.3); }

.whatsapp-sticky svg {
  width: 30px;
  height: 30px;
  fill: white;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .pilares__grid { grid-template-columns: 1fr; gap: 20px; }
  .experiencia__inner { grid-template-columns: 1fr; gap: 40px; }
  .experiencia__visual { order: -1; }
  .experiencia__foto-placeholder { aspect-ratio: 16/9; }
  .privada__features { grid-template-columns: repeat(2, 1fr); }
  .rodny__inner { grid-template-columns: 1fr; gap: 40px; }
  .rodny__foto-placeholder { aspect-ratio: 16/9; max-height: 280px; }
}

@media (max-width: 600px) {
  .nav__links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--crema);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 2px solid rgba(127,17,0,.15);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .3s ease, opacity .3s ease;
    z-index: 99;
  }

  .nav__links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__links li { width: 100%; }

  .nav__links a {
    display: block;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(127,17,0,.08);
  }

  .nav__links .btn--nav {
    margin: 16px 24px;
    width: calc(100% - 48px);
    text-align: center;
    justify-content: center;
    border-radius: 50px;
  }

  .nav__toggle { display: flex; }

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

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

  .rodny__stats { flex-direction: column; gap: 20px; }

  .btn--lg { width: 100%; justify-content: center; }

  section { padding: 64px 0; }

  .hero { padding-top: 100px; }
}
