/* ============================================================
   VERDE Y MENTA EVENTOS — Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Variables ─────────────────────────────────────────── */
:root {
  --sage:        #6B7A5C;
  --sage-dark:   #4E5C42;
  --sage-light:  #E8EDE3;
  --sage-mist:   #F2F5EE;
  --gold:        #C9A55A;
  --gold-light:  #E8C97A;
  --white:       #FDFCF9;
  --off-white:   #F5F3EE;
  --text:        #2A2A25;
  --text-muted:  #7A7A72;
  --card-bg:     #F8F7F3;
  --border:      #E2DDD5;
  --shadow:      rgba(42, 42, 37, 0.08);
  --shadow-lg:   rgba(42, 42, 37, 0.15);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --section-py: clamp(4rem, 8vw, 7rem);
  --container:  min(90%, 1140px);
  --radius:     4px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilities ──────────────────────────────────────────── */
.container { width: var(--container); margin-inline: auto; }
.section    { padding-block: var(--section-py); }
.section--alt { background: var(--card-bg); }
.section--sage { background: var(--sage); }
.text-center { text-align: center; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}
.eyebrow--light { color: rgba(255,255,255,0.7); }

.divider {
  width: 3rem;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.2rem auto 2rem;
  border: none;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); font-weight: 500; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  text-transform: uppercase;
}
.btn--gold {
  background: var(--gold);
  color: #1a1a15;
  border-color: var(--gold);
}
.btn--gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-1px); }

.btn--outline {
  background: transparent;
  color: var(--sage-dark);
  border-color: var(--sage);
}
.btn--outline:hover { background: var(--sage); color: #fff; }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(253, 252, 249, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  padding: 0.85rem 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo img { height: 46px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--sage-dark); }
.nav--hero .nav__links a { color: rgba(255,255,255,0.8); }
.nav--hero .nav__links a:hover { color: #fff; }
.nav__cta { font-size: 0.75rem !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: var(--transition);
}
.nav.scrolled .nav__hamburger span { background: var(--text); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(25, 35, 20, 0.42) 0%,
    rgba(25, 35, 20, 0.58) 60%,
    rgba(25, 35, 20, 0.72) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 780px;
  animation: fadeUp 1s ease both;
}
.hero__eyebrow { color: var(--gold-light); margin-bottom: 1.5rem; }
.hero__title { color: #fff; margin-bottom: 1.5rem; }
.hero__desc {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.35);
}

/* ── Intro ──────────────────────────────────────────────── */
.intro { text-align: center; }
.intro p {
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.02rem;
  line-height: 1.8;
}

/* ── Services Grid ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-lg);
}
.service-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--sage-light);
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card__img img { transform: scale(1.06); }
.service-card__body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}
.tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
  background: var(--sage-light);
  color: var(--sage-dark);
  font-weight: 500;
}
.service-card__title { margin-bottom: 0.6rem; font-size: 1.22rem; }
.service-card__desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; flex: 1; margin-bottom: 1.5rem; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage-dark);
  transition: gap var(--transition), color var(--transition);
}
.service-card__link:hover { color: var(--gold); gap: 0.7rem; }
.service-card__link svg { transition: transform var(--transition); }
.service-card__link:hover svg { transform: translateX(3px); }

/* ── How It Works ───────────────────────────────────────── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-top: 3.5rem;
}
.how-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.how-card__icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--sage-dark);
}
.how-card__step {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.how-card h3 { margin-bottom: 0.6rem; font-size: 1.15rem; }
.how-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--sage-light);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}
.testimonial-card__quote {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  padding-top: 1.2rem;
}
.testimonial-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
}
.testimonial-card__event {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 0.2rem;
}
.stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.8rem; }

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-section {
  background: var(--sage);
  text-align: center;
  padding-block: var(--section-py);
}
.cta-section h2, .cta-section p { color: #fff; }
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p {
  font-size: 0.95rem;
  opacity: 0.82;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  padding-top: 8rem;
  padding-bottom: 4rem;
  text-align: center;
  background: var(--sage-mist);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 1.2rem auto 0;
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ── Contact Form ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
  padding-block: var(--section-py);
}
.contact-info h3 { margin-bottom: 0.8rem; }
.contact-info p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.75; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.contact-detail__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage-dark);
}
.contact-detail__text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }
.contact-detail__text strong { display: block; color: var(--text); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.2rem; }

.form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.2rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
}
.form-group textarea { min-height: 110px; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; font-size: 0.8rem; padding: 1rem; }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding-block: 3rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand img { height: 42px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer__brand p { font-size: 0.83rem; line-height: 1.7; max-width: 240px; }
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
}
.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-6px); }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── WhatsApp Float ─────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  z-index: 200;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55); }
.wa-float svg { color: #fff; }

/* ── Mobile Nav ─────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(253,252,249,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.6rem;
  font-family: var(--font-display);
  color: var(--text);
}
.mobile-menu__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--text-muted);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__brand p { max-width: 100%; }

  .services-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }
}
