:root {
  --green-950: #20331e;
  --green-900: #2f4728;
  --green-800: #3c5a32;
  --green-700: #557446;
  --green-100: #e8efe3;
  --gold: #a98b2f;
  --gold-soft: #d9c98f;
  --cream: #fffdf7;
  --sand: #f4eee2;
  --plum: #5d315d;
  --ink: #1f281e;
  --muted: #667063;
  --white: #ffffff;
  --line: rgba(46, 71, 40, .14);
  --shadow: 0 24px 60px rgba(39, 53, 35, .13);
  --shadow-soft: 0 12px 34px rgba(39, 53, 35, .09);
  --radius: 28px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-150%); padding: 10px 14px; border-radius: 9px; background: var(--white); color: var(--green-950); font-weight: 700; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 247, .93);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 28px rgba(31, 51, 30, .08); }
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; min-width: 0; }
.brand img { width: 66px; height: 66px; object-fit: contain; border-radius: 18px; border: 1px solid var(--line); background: var(--white); }
.brand span { display: grid; line-height: 1.15; }
.brand strong { color: var(--green-900); font-family: Georgia, "Times New Roman", serif; font-size: 1.08rem; }
.brand small { margin-top: 4px; color: var(--gold); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-size: .68rem; }
.main-menu { display: flex; align-items: center; gap: 24px; }
.main-menu a { text-decoration: none; color: var(--green-900); font-size: .9rem; font-weight: 700; }
.main-menu a:hover { color: var(--gold); }
.main-menu .menu-cta { padding: 11px 17px; border-radius: 999px; background: var(--green-800); color: var(--white); }
.main-menu .menu-cta:hover { background: var(--green-950); color: var(--white); }
.menu-button { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); cursor: pointer; }
.menu-button span { display: block; width: 22px; height: 2px; border-radius: 99px; background: var(--green-900); transition: transform .2s ease, opacity .2s ease; }

.hero { position: relative; isolation: isolate; padding: 86px 0 94px; overflow: hidden; background: linear-gradient(135deg, #fffdf7 0%, #f7f1e6 55%, #eaf0e6 100%); }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .35; background-image: radial-gradient(circle at 1px 1px, rgba(80, 106, 69, .14) 1px, transparent 0); background-size: 24px 24px; }
.hero-shape { position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); }
.hero-shape-one { width: 420px; height: 420px; right: -170px; top: -120px; background: rgba(169, 139, 47, .14); }
.hero-shape-two { width: 360px; height: 360px; left: -160px; bottom: -170px; background: rgba(85, 116, 70, .12); }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 78px; }
.eyebrow { margin: 0 0 12px; color: var(--gold); font-size: .79rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero h1, .section-title h2, .benefits-heading h2, .contact-card h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; line-height: 1.03; letter-spacing: -.035em; }
.hero h1 { max-width: 700px; color: var(--green-950); font-size: clamp(3.5rem, 7vw, 6.8rem); }
.hero h1 span { display: block; color: var(--green-700); font-style: italic; font-weight: 400; }
.hero-name { margin: 22px 0 8px; color: var(--plum); font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 2.5vw, 2.1rem); font-style: italic; }
.hero-text { max-width: 690px; margin: 0; color: var(--muted); font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.button { display: inline-flex; min-height: 49px; align-items: center; justify-content: center; padding: 13px 20px; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 800; line-height: 1.2; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green-800); color: var(--white); box-shadow: 0 12px 28px rgba(60, 90, 50, .22); }
.button-primary:hover { background: var(--green-950); }
.button-outline { border-color: rgba(47, 71, 40, .25); background: rgba(255,255,255,.65); color: var(--green-900); }
.button-outline:hover { border-color: var(--green-700); }
.button-light { background: var(--white); color: var(--green-950); }
.quick-info { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 40px; overflow: hidden; border: 1px solid var(--line); border-radius: 19px; background: var(--line); }
.quick-info div { padding: 16px 14px; background: rgba(255,255,255,.72); }
.quick-info strong, .quick-info span { display: block; }
.quick-info strong { color: var(--green-900); font-size: .93rem; }
.quick-info span { margin-top: 2px; color: var(--muted); font-size: .75rem; }
.hero-media { position: relative; justify-self: end; width: min(100%, 500px); }
.logo-card { padding: 18px; border: 1px solid rgba(169, 139, 47, .25); border-radius: 42px; background: rgba(255,255,255,.75); box-shadow: var(--shadow); transform: rotate(1.2deg); }
.logo-card img { width: 100%; height: auto; object-fit: contain; border-radius: 28px; }
.hero-badge { position: absolute; right: -24px; bottom: 32px; padding: 13px 18px; border: 1px solid rgba(255,255,255,.7); border-radius: 999px; background: var(--green-900); color: var(--white); box-shadow: var(--shadow-soft); font-size: .83rem; font-weight: 800; }

.social-strip { background: var(--green-950); color: var(--white); }
.social-strip-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.social-strip p { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 1.25rem; }
.social-buttons { display: flex; flex-wrap: wrap; gap: 9px; }
.social-buttons a { padding: 9px 14px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; background: rgba(255,255,255,.07); color: var(--white); text-decoration: none; font-size: .81rem; font-weight: 800; }
.social-buttons a:hover { background: rgba(255,255,255,.14); }

.section { padding: 100px 0; }
.section-soft { background: var(--sand); }
.intro-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: start; }
.section-title h2, .benefits-heading h2, .contact-card h2 { color: var(--green-950); font-size: clamp(2.3rem, 4.5vw, 4.3rem); }
.section-title.centered { max-width: 800px; margin: 0 auto 48px; text-align: center; }
.intro-text { padding: 18px 0 18px 36px; border-left: 2px solid var(--gold-soft); }
.intro-text p { margin: 0; color: var(--muted); font-size: 1.18rem; }

.topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.topic-card { min-height: 170px; padding: 24px; border: 1px solid rgba(47, 71, 40, .12); border-radius: 22px; background: rgba(255,255,255,.78); box-shadow: 0 8px 24px rgba(39,53,35,.05); transition: transform .18s ease, box-shadow .18s ease; }
.topic-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.topic-card span { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 12px; background: var(--green-100); color: var(--green-700); font-size: .72rem; font-weight: 900; }
.topic-card h3 { margin: 24px 0 0; color: var(--green-950); font-size: 1.05rem; line-height: 1.35; }

.tool-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 15px; }
.tool-card { min-height: 220px; padding: 27px 21px; border: 1px solid var(--line); border-radius: 24px; background: var(--white); text-align: center; box-shadow: var(--shadow-soft); }
.tool-card span { display: inline-flex; width: 62px; height: 62px; align-items: center; justify-content: center; border-radius: 19px; background: linear-gradient(145deg, var(--green-100), #f7f1dc); color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 1.9rem; }
.tool-card h3 { margin: 25px 0 0; color: var(--green-900); font-size: 1.02rem; line-height: 1.4; }

.benefits-section { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--green-950), #45623b); color: var(--white); }
.benefits-section::after { content: ""; position: absolute; width: 420px; height: 420px; right: -170px; bottom: -220px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 40px rgba(255,255,255,.035), 0 0 0 80px rgba(255,255,255,.025); }
.benefits-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.eyebrow-light { color: var(--gold-soft); }
.benefits-heading h2 { color: var(--white); }
.benefits-heading .button { margin-top: 28px; }
.benefit-list { display: grid; gap: 12px; }
.benefit-list div { display: grid; grid-template-columns: 42px 1fr; gap: 15px; align-items: center; padding: 17px 19px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.07); }
.benefit-list span { display: inline-flex; width: 35px; height: 35px; align-items: center; justify-content: center; border-radius: 50%; background: var(--gold); color: var(--white); font-weight: 900; }
.benefit-list p { margin: 0; color: rgba(255,255,255,.91); font-size: 1rem; font-weight: 700; }

.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card { min-height: 245px; padding: 30px 25px; border: 1px solid var(--line); border-radius: 25px; background: var(--white); box-shadow: var(--shadow-soft); }
.service-card.featured { background: linear-gradient(145deg, #eef4ea, #fffdf7); }
.service-label { margin: 0 0 22px; color: var(--gold); font-size: .75rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.service-card h3 { margin: 0; color: var(--green-950); font-family: Georgia, "Times New Roman", serif; font-size: 1.7rem; }
.service-card p:last-child { margin: 14px 0 0; color: var(--muted); }
.schedule-card { display: grid; grid-template-columns: 1fr auto auto; gap: 34px; align-items: center; margin-top: 24px; padding: 29px 32px; border: 1px solid rgba(169,139,47,.23); border-radius: 26px; background: #fbf5e7; }
.schedule-card span, .schedule-card strong, .schedule-card p { display: block; }
.schedule-card span { color: var(--gold); font-size: .77rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.schedule-card strong { color: var(--green-950); font-family: Georgia, "Times New Roman", serif; font-size: 1.55rem; }
.schedule-card p { margin: 2px 0 0; color: var(--muted); }
.price-block { padding-left: 34px; border-left: 1px solid rgba(169,139,47,.25); }
.price-block strong { font-size: 2.9rem; line-height: 1; }

.section-gallery { background: #f3efe7; }
.gallery-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 20px; align-items: start; }
.gallery-item { margin: 0; padding: 11px; border: 1px solid rgba(47,71,40,.11); border-radius: 26px; background: var(--white); box-shadow: var(--shadow-soft); overflow: hidden; }
.gallery-item img { width: 100%; height: auto; object-fit: contain; border-radius: 18px; }
.gallery-vertical { grid-row: span 2; }
.qr-item { background: linear-gradient(145deg, #ffffff, #f6eefd); }
.qr-item figcaption { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 8px 7px; }
.qr-item figcaption span { color: var(--plum); font-weight: 900; }
.qr-item figcaption a { padding: 9px 13px; border-radius: 999px; background: linear-gradient(135deg, #d9188e, #8d29ce); color: var(--white); text-decoration: none; font-size: .8rem; font-weight: 800; white-space: nowrap; }

.contact-section { padding-top: 0; background: #f3efe7; }
.contact-card { display: grid; grid-template-columns: .92fr 1.08fr; gap: 70px; align-items: center; padding: 55px; border-radius: 34px; background: linear-gradient(135deg, var(--green-950), #41603a); color: var(--white); box-shadow: var(--shadow); }
.contact-card h2 { color: var(--white); }
.contact-card > div > p:last-child { color: rgba(255,255,255,.72); }
.contact-links { display: grid; gap: 11px; }
.contact-links a { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 16px; background: rgba(255,255,255,.07); color: var(--white); text-decoration: none; }
.contact-links a:hover { background: rgba(255,255,255,.13); }
.contact-links span { color: rgba(255,255,255,.68); }
.contact-links strong { text-align: right; }

.site-footer { padding: 46px 0; background: #172617; color: var(--white); }
.footer-grid { display: grid; grid-template-columns: 120px 1fr 1fr; gap: 34px; align-items: center; }
.footer-logo img { width: 104px; height: 104px; object-fit: contain; border-radius: 22px; background: var(--white); }
.footer-grid strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; }
.footer-grid p { margin: 5px 0 0; color: rgba(255,255,255,.65); }
.footer-details p { margin: 2px 0; }

.floating-whatsapp { position: fixed; right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); z-index: 950; display: flex; align-items: center; gap: 10px; padding: 13px 17px; border-radius: 999px; background: #25d366; color: var(--white); text-decoration: none; font-weight: 900; box-shadow: 0 15px 36px rgba(29, 109, 58, .32); }
.floating-whatsapp svg { width: 24px; height: 24px; fill: currentColor; }

@media (max-width: 1040px) {
  .main-menu { gap: 14px; }
  .main-menu a { font-size: .82rem; }
  .hero-grid { gap: 48px; }
  .tool-grid { grid-template-columns: repeat(3, 1fr); }
  .tool-card:last-child { grid-column: span 2; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .header-inner { min-height: 78px; }
  .menu-button { display: flex; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-menu { position: fixed; top: 78px; left: 20px; right: 20px; display: grid; gap: 2px; padding: 13px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,253,247,.99); box-shadow: var(--shadow); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-14px); transition: .2s ease; }
  .main-menu.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
  .main-menu a { padding: 11px 13px; border-radius: 11px; }
  .main-menu .menu-cta { margin-top: 4px; text-align: center; }
  .hero { padding: 64px 0 76px; }
  .hero-grid, .intro-grid, .benefits-grid, .contact-card { grid-template-columns: 1fr; }
  .hero-content { text-align: center; }
  .hero h1, .hero-text { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-media { justify-self: center; width: min(100%, 500px); }
  .quick-info { text-align: left; }
  .hero-badge { right: 12px; }
  .intro-grid, .benefits-grid, .contact-card { gap: 42px; }
  .intro-text { padding: 28px 0 0; border-left: 0; border-top: 2px solid var(--gold-soft); }
  .topic-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-vertical { grid-row: auto; }
  .schedule-card { grid-template-columns: 1fr auto; }
  .schedule-card .button { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 105px 1fr; }
  .footer-details { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand img { width: 55px; height: 55px; border-radius: 15px; }
  .brand strong { font-size: .93rem; }
  .brand small { font-size: .6rem; }
  .hero { padding: 52px 0 64px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-text { font-size: 1rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .quick-info { grid-template-columns: 1fr; }
  .quick-info div { display: grid; grid-template-columns: 100px 1fr; align-items: center; }
  .quick-info span { margin-top: 0; }
  .logo-card { padding: 10px; border-radius: 28px; }
  .logo-card img { border-radius: 20px; }
  .hero-badge { position: static; width: fit-content; margin: 14px auto 0; }
  .social-strip-inner { padding: 20px 0; align-items: flex-start; flex-direction: column; }
  .social-strip p { font-size: 1.1rem; }
  .section { padding: 76px 0; }
  .topic-grid, .tool-grid, .service-grid, .gallery-grid { grid-template-columns: 1fr; }
  .tool-card { min-height: auto; }
  .tool-card:last-child { grid-column: auto; }
  .schedule-card { grid-template-columns: 1fr; padding: 25px; }
  .schedule-card .button { grid-column: auto; }
  .price-block { padding: 22px 0 0; border-left: 0; border-top: 1px solid rgba(169,139,47,.25); }
  .qr-item figcaption { align-items: flex-start; flex-direction: column; }
  .contact-card { padding: 34px 23px; border-radius: 27px; }
  .contact-links a { align-items: flex-start; flex-direction: column; }
  .contact-links strong { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-logo img { margin-inline: auto; }
  .footer-details { grid-column: auto; }
  .floating-whatsapp { width: 58px; height: 58px; justify-content: center; padding: 0; border-radius: 50%; }
  .floating-whatsapp span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
