:root {
    --bg: #f4f6f5;
    --surface: #ffffff;
    --surface-soft: #eef3f1;
    --text: #203038;
    --muted: #5e727b;
    --line: #d4dfdb;
    --primary: #1b6f63;
    --primary-dark: #145349;
    --accent: #b38339;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --shadow-soft: 0 14px 40px rgba(19, 55, 67, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 14% 14%, #ffffff 0%, var(--bg) 44%),
        linear-gradient(160deg, #f1f5f3 0%, #f7f6f2 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.bg-orb {
    position: fixed;
    z-index: -1;
    width: 300px;
    height: 300px;
    border-radius: 999px;
    filter: blur(18px);
    opacity: 0.4;
    pointer-events: none;
}

.bg-orb-1 {
    top: -90px;
    left: -80px;
    background: #cfebe2;
}

.bg-orb-2 {
    right: -100px;
    top: 34vh;
    background: #f0e0c9;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 15;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    backdrop-filter: blur(10px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.9);
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
}

.brand-photo {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.brand strong {
    font-size: 0.92rem;
    display: block;
    letter-spacing: 0.02em;
}

.brand small {
    color: var(--muted);
    font-size: 0.76rem;
}

.brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: linear-gradient(140deg, var(--accent), #e0bf86);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #3d2d15;
}

.btn {
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-whatsapp {
    color: #f6fffd;
    background: linear-gradient(135deg, var(--primary), #249780);
    box-shadow: 0 10px 24px rgba(27, 111, 99, 0.3);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 12px 28px rgba(20, 83, 73, 0.36);
}

.btn-secondary {
    color: var(--text);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.88);
}

.btn-large {
    padding: 14px 22px;
}

.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    padding: 46px 0 24px;
}

.hero-content h1,
.section-heading h2,
.final-cta h2 {
    font-family: "Fraunces", Georgia, serif;
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin: 0;
}

.hero-content h1 {
    font-size: clamp(1.95rem, 4vw, 3.2rem);
    margin-top: 14px;
}

.eyebrow {
    display: inline-block;
    margin: 0;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-dark);
    font-weight: 700;
}

.lead {
    font-size: 1.04rem;
    color: #38515a;
    margin: 20px 0 0;
    max-width: 58ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.note {
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-photo {
    background: linear-gradient(160deg, #d8eae4 0%, #c2dcd4 100%);
    border-radius: var(--radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-soft);
}

.hero-photo img {
    border-radius: calc(var(--radius-lg) - 8px);
    width: 100%;
    min-height: 280px;
    object-fit: cover;
}

.section {
    padding: 66px 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(236, 244, 241, 0.95) 0%, rgba(246, 247, 244, 0.95) 100%);
    border-top: 1px solid rgba(205, 219, 214, 0.6);
    border-bottom: 1px solid rgba(205, 219, 214, 0.6);
}

.section-heading {
    max-width: 770px;
}

.section-heading h2 {
    margin-top: 12px;
    font-size: clamp(1.6rem, 3vw, 2.45rem);
}

.card-grid {
    margin-top: 28px;
    display: grid;
    gap: 14px;
}

.two-cols {
    grid-template-columns: 1fr;
}

.card,
.comparison-card,
.step-card,
.audience-card {
    background: var(--surface);
    border: 1px solid rgba(205, 219, 214, 0.86);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow-soft);
}

.card h3,
.comparison-card h3,
.step-card h3,
.audience-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.card p,
.comparison-card li,
.step-card p,
.audience-card p {
    margin: 0;
    color: #425962;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 28px;
}

.gallery-figure {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    background: var(--surface);
}

.gallery-item {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-figure:hover .gallery-item {
    transform: scale(1.03);
}

figcaption {
    padding: 12px 16px;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
    border-top: 1px solid var(--line);
}

@media (max-width: 760px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .gallery-item {
        height: 380px;
    }
}

.comparison {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
}

.comparison-card ul {
    margin: 0;
    padding-left: 19px;
    display: grid;
    gap: 8px;
}

.comparison-card-muted {
    background: #f8fbfa;
}

.comparison-card-highlight {
    background: linear-gradient(180deg, #f2fbf8 0%, #f7fdfb 100%);
    border-color: rgba(31, 130, 113, 0.4);
}

.steps,
.audience-grid {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.step-number {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.96rem;
    margin-bottom: 12px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #228973);
}

.final-cta {
    padding: 72px 0 88px;
}

.final-cta-inner {
    background: linear-gradient(130deg, #123a41 0%, #1d5f60 58%, #337f74 100%);
    color: #eff9f8;
    border-radius: 30px;
    padding: clamp(28px, 4vw, 48px);
    box-shadow: 0 22px 44px rgba(16, 57, 63, 0.35);
}

.final-cta .eyebrow {
    color: #d0f4ea;
}

.final-cta h2 {
    margin-top: 12px;
    font-size: clamp(1.5rem, 3vw, 2.3rem);
    max-width: 24ch;
}

.final-cta .btn-whatsapp {
    margin-top: 24px;
    background: linear-gradient(130deg, #2bb38f, #38c2a2);
    color: #0d342f;
    box-shadow: 0 12px 28px rgba(13, 52, 47, 0.32);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}

.contact-card {
    background: var(--surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-icon {
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 4px;
}

.contact-card h3 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text);
    margin: 0;
}

.contact-link {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.contact-link:hover {
    border-bottom-color: var(--accent);
}

@media (max-width: 760px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    padding: 0 0 30px;
    color: #556b73;
    font-size: 0.92rem;
}

.site-footer p {
    margin: 0;
}

.site-footer p+p {
    margin-top: 4px;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 25;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    transition: transform 0.25s ease, filter 0.25s ease;
    filter: drop-shadow(0 6px 16px rgba(12, 58, 43, 0.30));
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.07);
    filter: drop-shadow(0 10px 22px rgba(12, 58, 43, 0.45));
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: rise 0.7s cubic-bezier(0.21, 1, 0.34, 1) forwards;
}

.hero .reveal:nth-child(1) {
    animation-delay: 0.08s;
}

.hero .reveal:nth-child(2) {
    animation-delay: 0.16s;
}

.section .reveal,
.final-cta .reveal {
    animation-delay: 0.1s;
}

@keyframes rise {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 760px) {
    .hero {
        grid-template-columns: 1.15fr 0.85fr;
        gap: 34px;
        padding-top: 62px;
    }

    .two-cols {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 430px) {
    .site-header {
        flex-direction: column;
        align-items: stretch;
    }

    .brand {
        justify-content: center;
    }

    .site-header .btn {
        width: 100%;
    }

    .floating-whatsapp {
        right: 12px;
        left: 12px;
        bottom: 12px;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}