*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: #FAFAF6; color: #1C2B1A; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }

:root {
  --green-deep: #1A4D2E; --green-mid: #2D6A4F; --green-light: #7AB648;
  --cream: #F5F2EB; --warm-white: #FAFAF6; --text-dark: #1C2B1A; --text-muted: #5A6B58;
  --border: rgba(26,77,46,.12); --shadow-sm: 0 2px 12px rgba(26,77,46,.08); --shadow-md: 0 8px 32px rgba(26,77,46,.14);
  --radius-sm: 12px; --radius-md: 20px; --radius-lg: 32px;
}

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; font-size: 15px; font-weight: 600; border-radius: 50px; cursor: pointer; border: none; white-space: nowrap; }
.btn-primary { background: var(--green-deep); color: #fff; }
.btn-primary:hover { background: var(--green-mid); }
.btn-white { background: #fff; color: var(--green-deep); }
.section-label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--green-light); }


.page-hero { background: var(--green-deep); padding: 52px 20px 48px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; max-width: 1140px; margin: 0 auto; }
.page-hero .section-label { color: var(--green-light); display: block; margin-bottom: 10px; }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 6vw, 52px); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.7); max-width: 480px; line-height: 1.6; }

.contact-section { padding: 56px 0 80px; }
.contact-grid { display: flex; flex-direction: column; gap: 32px; }
.contact-channels { display: flex; flex-direction: column; gap: 14px; }
.channel-card { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 20px; transition: box-shadow .22s, transform .22s; cursor: pointer; }
.channel-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.channel-card.whatsapp { border-color: rgba(37,211,102,.3); }
.channel-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.channel-icon.green { background: rgba(26,77,46,.08); color: var(--green-deep); }
.channel-icon.wa { background: rgba(37,211,102,.12); color: #25D366; }
.channel-icon.ig { background: rgba(193,53,132,.08); color: #C13584; }
.channel-icon svg { width: 24px; height: 24px; }
.channel-info h4 { font-size: 15px; font-weight: 600; color: var(--text-dark); margin-bottom: 3px; }
.channel-info p { font-size: 13px; color: var(--text-muted); line-height: 1.4; }
.channel-arrow { margin-left: auto; color: var(--text-muted); }
.channel-arrow svg { width: 18px; height: 18px; }

.info-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.info-card { background: var(--cream); border-radius: var(--radius-sm); padding: 20px; }
.info-card-icon { width: 36px; height: 36px; background: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.info-card-icon svg { width: 18px; height: 18px; color: var(--green-deep); }
.info-card h4 { font-size: 13px; font-weight: 600; color: var(--green-deep); margin-bottom: 4px; }
.info-card p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

.contact-form-wrap { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 24px; box-shadow: var(--shadow-sm); }
.form-heading { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 700; color: var(--green-deep); margin-bottom: 6px; }
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }
.form-row { display: flex; flex-direction: column; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.form-field input, .form-field select, .form-field textarea { padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 14px; color: var(--text-dark); background: var(--warm-white); outline: none; width: 100%; }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 16px; background: var(--green-deep); color: #fff; border: none; border-radius: 50px; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 8px; }
.form-success { display: none; flex-direction: column; align-items: center; gap: 14px; padding: 32px 0; text-align: center; }
.form-success.show { display: flex; }
.form-success-icon { width: 64px; height: 64px; background: rgba(122,182,72,.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.form-success-icon svg { width: 32px; height: 32px; color: var(--green-light); }
.form-success h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--green-deep); }
.form-success p { font-size: 14px; color: var(--text-muted); max-width: 280px; line-height: 1.5; }

.faq-section { background: var(--cream); padding: 56px 0; }
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 5vw, 36px); font-weight: 700; color: var(--green-deep); margin-top: 10px; }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 20px; cursor: pointer; gap: 12px; }
.faq-q span { font-size: 15px; font-weight: 500; color: var(--text-dark); line-height: 1.4; }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; transition: transform .25s; }
.faq-icon svg { width: 14px; height: 14px; color: var(--green-deep); }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--green-deep); }
.faq-item.open .faq-icon svg { color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-a p { padding: 0 20px 18px; font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.faq-item.open .faq-a { max-height: 200px; }

.cta-strip { background: var(--green-deep); padding: 48px 20px; text-align: center; position: relative; overflow: hidden; }
.cta-strip::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.cta-strip-inner { position: relative; z-index: 1; max-width: 520px; margin: 0 auto; }
.cta-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 5vw, 38px); font-weight: 900; color: #fff; margin-bottom: 10px; line-height: 1.15; }
.cta-strip p { font-size: 15px; color: rgba(255,255,255,.7); margin-bottom: 24px; }
.cta-strip-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }


@media (min-width: 768px) {
  .contact-grid { flex-direction: row; align-items: flex-start; gap: 40px; }
  .contact-left { flex: 0 0 340px; } .contact-right { flex: 1; }
  .form-row { flex-direction: row; }
}
