:root {
    /* Paleta oficial Farmais — extraída do site farmais.com.br */
    --farmais-blue: #005095;          /* Azul principal de marca */
    --farmais-blue-dark: #003a6e;     /* Azul profundo (hover) */
    --farmais-blue-darker: #0F273C;   /* Azul quase preto (top bar / footer) */
    --farmais-blue-light: #e6eef7;     /* Azul muito claro (fundos suaves) */
    --farmais-blue-tint: #f0f6fc;     /* Azul névoa */
    --farmais-red: #E03A33;           /* Vermelho de CTA / promoção */
    --farmais-red-dark: #C62828;      /* Vermelho escuro (hover) */
    --farmais-red-soft: #ed908c;      /* Vermelho claro (badges de desconto) */
    --farmais-red-light: #fdecea;     /* Vermelho fundo suave */
    --farmais-amber: #f5a623;         /* Âmbar (estrelas) */
    --farmais-mint: #00b383;          /* Verde-ciano "aberto agora" */

    /* Neutros */
    --navy: #0F273C;
    --slate: #3d4f60;
    --muted: #6c7d8e;
    --line: #e5e9ef;
    --bg: #ffffff;
    --bg-warm: #f8f9fb;
    --bg-cream: #f6f9fd;

    /* Sistema de design */
    --radius: 22px;
    --radius-sm: 14px;
    --radius-xs: 10px;
    --shadow-sm: 0 1px 2px rgba(15, 39, 60, 0.04);
    --shadow: 0 4px 16px rgba(15, 39, 60, 0.06);
    --shadow-md: 0 10px 30px rgba(15, 39, 60, 0.09);
    --shadow-lg: 0 24px 60px rgba(15, 39, 60, 0.14);
    --shadow-glow: 0 8px 28px rgba(224, 58, 51, 0.30);
    --shadow-blue-glow: 0 12px 36px rgba(0, 80, 149, 0.28);
    --grad-brand: linear-gradient(135deg, #005095 0%, #0F273C 100%);
    --grad-cta: linear-gradient(135deg, #E03A33 0%, #C62828 100%);
    --grad-hero: linear-gradient(160deg, #f6f9fd 0%, #e6eef7 60%, #ffffff 100%);
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--navy);
    line-height: 1.65;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top bar */
.top-bar {
    background: var(--farmais-blue-darker);
    color: rgba(255,255,255,0.92);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 11px 0;
    text-align: center;
    position: relative;
    z-index: 101;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0,80,149,0.35), transparent);
    animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.top-bar p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.top-bar strong {
    color: #ffffff;
    font-weight: 700;
}

.top-bar-icon {
    display: inline-flex;
    color: #ff8a82;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: #454596;
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.14);
    z-index: 100;
    transition: var(--transition);
}

.header.scrolled {
    background: #454596;
    box-shadow: 0 6px 24px rgba(30, 30, 90, 0.24);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.logo img {
    height: 44px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.03);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: var(--transition);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    position: relative;
    transition: var(--transition);
}

.nav a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: width 0.25s ease;
}

.nav a:not(.nav-cta):hover {
    color: #ffffff;
}

.nav a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    margin-left: 8px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: var(--grad-cta);
    background-size: 150% 150%;
    color: #ffffff !important;
    border-color: var(--farmais-red);
    background-position: 0% 50%;
}

.btn-primary:hover {
    background-color: var(--farmais-red-dark);
    border-color: var(--farmais-red-dark);
    transform: translateY(-2px);
    background-position: 100% 50%;
}

.btn-glow {
    box-shadow: var(--shadow-glow);
}

.btn-glow:hover {
    box-shadow: 0 14px 40px rgba(224, 58, 51, 0.40);
}

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border-color: var(--line);
}

.btn-ghost:hover {
    border-color: var(--farmais-blue);
    color: var(--farmais-blue);
    background: var(--farmais-blue-light);
}

.btn-outline {
    background: white;
    color: var(--farmais-blue);
    border-color: var(--line);
}

.btn-outline:hover {
    border-color: var(--farmais-blue);
    background: var(--farmais-blue-light);
}

.btn-white {
    background: white;
    color: var(--farmais-red);
    border-color: white;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.18);
}

/* Typography helpers */
.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--farmais-blue);
    margin-bottom: 12px;
    padding: 5px 14px;
    background: var(--farmais-blue-light);
    border-radius: 999px;
}

h1, h2, h3 {
    font-family: 'Sora', 'Inter', sans-serif;
    line-height: 1.15;
    font-weight: 700;
}

.section-head {
    max-width: 620px;
    margin: 0 auto 56px;
    text-align: center;
}

.section-head h2 {
    font-size: 2.2rem;
    color: var(--navy);
    margin-bottom: 14px;
}

.section-head p {
    color: var(--muted);
    font-size: 1.05rem;
}

/* Hero */
.hero {
    position: relative;
    padding: 72px 0 0;
    overflow: hidden;
    background: var(--grad-hero);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.6;
}

.hero-blob-1 {
    width: 560px;
    height: 560px;
    background: #a9cdec;
    top: -140px;
    right: -100px;
}

.hero-blob-2 {
    width: 420px;
    height: 420px;
    background: #f6c9c5;
    bottom: 40px;
    left: -140px;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.96fr;
    gap: 64px;
    align-items: center;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    background: white;
    border: 1px solid var(--line);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.status-row {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.status-row:not(:last-child)::after {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--line);
    border-radius: 50%;
    margin-left: 4px;
}

.status-dot {
    width: 9px;
    height: 9px;
    background: var(--farmais-mint);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(0, 179, 131, 0.5);
    animation: pulseDot 2s infinite;
    flex-shrink: 0;
}

.status-row.closed .status-dot {
    background: #E03A33;
    box-shadow: 0 0 0 0 rgba(224, 58, 51, 0.5);
    animation: pulseRed 1.8s infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 179, 131, 0.5); }
    50% { opacity: 0.7; transform: scale(0.9); box-shadow: 0 0 0 8px rgba(0, 179, 131, 0); }
}

@keyframes pulseRed {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(224,58,51,0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(224,58,51,0); }
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content--mascot .hero-mascot-wrap {
    position: absolute;
    top: -60px;
    right: -40px;
    width: 320px;
    z-index: -1;
    pointer-events: none;
}

.hero-mascot {
    width: 100%;
    height: auto;
    transform: rotate(-6deg);
    filter: drop-shadow(0 24px 40px rgba(15, 39, 60, 0.16));
}

@media (max-width: 1100px) {
    .hero-content--mascot .hero-mascot-wrap {
        width: 240px;
        top: -40px;
        right: -20px;
    }
}

@media (max-width: 768px) {
    .hero-content--mascot .hero-mascot-wrap {
        position: static;
        width: 180px;
        margin: -20px auto 10px;
        order: -2;
    }

    .hero-mascot {
        transform: rotate(0);
    }

    .status-pill {
        order: -1;
    }
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--navy);
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

.text-accent {
    color: var(--farmais-blue);
    position: relative;
    display: inline-block;
}

.text-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 12px;
    background: var(--farmais-red-soft);
    opacity: 0.45;
    z-index: -1;
    border-radius: 6px;
    transform: skewX(-8deg);
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--slate);
    max-width: 520px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-stars {
    color: var(--farmais-amber);
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.trust-score {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--navy);
}

.trust-caption {
    font-size: 0.88rem;
    color: var(--muted);
}

/* Hero media */
.hero-media {
    position: relative;
}

.hero-order-card {
    max-width: 530px;
    margin-left: auto;
    padding: 30px 38px 26px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.78);
    border-radius: 30px;
    background: rgba(255,255,255,0.78);
    box-shadow: 0 24px 55px rgba(15, 39, 60, 0.12);
    backdrop-filter: blur(18px);
}

.hero-order-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border: 2px solid rgba(0,80,149,0.45);
    border-radius: 50%;
    color: var(--farmais-red);
    background: rgba(230,238,247,0.72);
}

.hero-order-card h2 {
    margin-bottom: 15px;
    color: var(--navy);
    font-size: 1.55rem;
    line-height: 1.18;
}

.hero-order-card h2 span {
    color: var(--farmais-blue);
}

.hero-order-card p {
    margin-bottom: 20px;
    color: var(--slate);
    font-size: 0.98rem;
}

.hero-order-form {
    display: grid;
    gap: 8px;
}

.hero-order-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border: 2px solid #dce1e8;
    border-radius: 999px;
    background: white;
}

.hero-order-input input {
    width: 100%;
    min-width: 0;
    padding: 15px 0;
    border: 0;
    outline: 0;
    color: var(--navy);
    font: inherit;
}

.hero-order-input span {
    color: var(--farmais-blue);
    font-size: 1.3rem;
}

.hero-order-input:focus-within {
    border-color: var(--farmais-blue);
    box-shadow: 0 0 0 4px rgba(0,80,149,0.1);
}

.hero-form-error {
    min-height: 16px;
    color: var(--farmais-red);
    font-size: 0.78rem;
    text-align: left;
}

.hero-whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 22px;
    border: 0;
    border-radius: 999px;
    color: white;
    background: linear-gradient(135deg, #20c86b, #18b85d);
    box-shadow: 0 9px 22px rgba(32,200,107,0.25);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

.hero-whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 28px rgba(32,200,107,0.35);
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 24px;
    text-align: left;
}

.hero-benefits span {
    display: grid;
    grid-template-columns: 24px 1fr;
    column-gap: 9px;
    align-items: center;
}

.hero-benefits svg {
    grid-row: span 2;
    color: var(--farmais-blue);
}

.hero-benefits b {
    display: none;
}

.hero-benefits strong,
.hero-benefits small {
    display: block;
}

.hero-benefits strong {
    color: var(--navy);
    font-size: 0.78rem;
}

.hero-benefits small {
    color: var(--muted);
    font-size: 0.72rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-photo-main {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
    outline: 2px solid var(--farmais-blue-light);
}

.hero-photo-main img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-photo-main:hover img {
    transform: scale(1.04);
}

.photo-tag {
    position: absolute;
    bottom: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--navy);
    box-shadow: var(--shadow);
}

.photo-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--farmais-red);
    border-radius: 50%;
    animation: pulseRed 1.8s infinite;
}

@keyframes pulseRed {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(224,58,51,0.5); }
    50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(224,58,51,0); }
}

.hero-photo-float {
    position: absolute;
    bottom: -28px;
    right: -18px;
    z-index: 2;
}

.mini-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    animation: floatCard 4s ease-in-out infinite;
}

.mini-card-icon {
    width: 38px;
    height: 38px;
    background: var(--farmais-blue-light);
    color: var(--farmais-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-card strong {
    display: block;
    font-size: 0.86rem;
    color: var(--navy);
}

.mini-card span {
    font-size: 0.78rem;
    color: var(--muted);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Hero brands */
.hero-brands {
    position: relative;
    z-index: 1;
    background: white;
    border-top: 1px solid var(--line);
    margin-top: 80px;
    padding: 34px 0;
}

.hero-brands p {
    text-align: center;
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 18px;
}

.brands-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 44px;
    flex-wrap: wrap;
}

.brands-row span {
    font-family: 'Sora', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slate);
    opacity: 0.6;
}

/* Sections */
section {
    padding: 90px 0;
}

/* How it works */
.how-it-works {
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.step {
    text-align: center;
    padding: 38px 28px;
    border-radius: var(--radius);
    background: var(--bg-warm);
    border: 1px solid var(--line);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--farmais-blue-light);
}

.step-number {
    width: 52px;
    height: 52px;
    background: var(--grad-brand);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-blue-glow);
}

.step h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.step p {
    font-size: 0.94rem;
    color: var(--muted);
}

/* Services */
.services {
    background: var(--bg-warm);
}

.services-head {
    max-width: 620px;
    margin: 0 auto 56px;
    text-align: center;
}

.services-head h2 {
    font-size: 2.2rem;
    margin-bottom: 14px;
}

.services-head p {
    color: var(--muted);
    font-size: 1.05rem;
}

.services-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.service-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.service-card-main {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.service-card-media {
    height: 260px;
    overflow: hidden;
}

.service-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-main:hover .service-card-media img {
    transform: scale(1.04);
}

.service-card-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--farmais-blue-light);
    color: var(--farmais-blue);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--grad-brand);
    color: white;
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.service-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 18px;
    flex: 1;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--farmais-blue);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.link-arrow::after {
    content: '→';
    transition: transform 0.2s ease;
}

.link-arrow:hover {
    color: var(--farmais-red);
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* Value prop */
.value-prop {
    background: white;
}

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

.value-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.value-photo img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.value-content h2 {
    font-size: 2.1rem;
    margin-bottom: 18px;
    color: var(--navy);
}

.value-content > p {
    color: var(--slate);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.value-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.value-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--navy);
}

.value-check {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background: var(--grad-brand);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 80, 149, 0.25);
}

.value-check::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 9px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Stats band */
.stats-band {
    background: var(--grad-brand);
    background-color: var(--farmais-blue-darker);
    padding: 72px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-band::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(224,58,51,0.18), transparent 70%);
    top: -160px;
    right: -100px;
    border-radius: 50%;
}

.stats-band::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
    bottom: -120px;
    left: -80px;
    border-radius: 50%;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat {
    position: relative;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 56px;
    background: rgba(255,255,255,0.12);
}

.stat-number {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    color: white;
    background: linear-gradient(135deg, #ffffff 0%, #a9cdec 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.75);
}

/* Testimonials */
.testimonials {
    background: var(--bg-warm);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.testimonial:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.testimonial-stars {
    color: #f5a623;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial > p {
    color: var(--slate);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial img,
.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar {
    background: var(--grad-brand);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
}

.testimonial strong {
    display: block;
    font-size: 0.9rem;
    color: var(--navy);
}

.testimonial span {
    font-size: 0.8rem;
    color: var(--muted);
}

/* Stores */
.stores {
    background: white;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.store-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.store-card:hover {
    box-shadow: var(--shadow-lg);
}

.store-map iframe {
    width: 100%;
    display: block;
    filter: grayscale(15%);
}

.store-body {
    padding: 28px;
}

.store-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.store-header h3 {
    font-size: 1.15rem;
    color: var(--navy);
}

.store-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 10px;
    border-radius: 999px;
}

.store-badge.open {
    background: rgba(0, 179, 131, 0.14);
    color: var(--farmais-mint);
}

.store-badge.closed {
    background: #f1f1f1;
    color: var(--muted);
}

.store-address {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 18px;
}

.store-hours {
    font-size: 0.9rem;
    color: var(--slate);
    margin-bottom: 14px;
    line-height: 1.7;
}

.store-hours span {
    font-weight: 600;
    color: var(--navy);
    display: inline-block;
    min-width: 110px;
}

.store-phone {
    display: block;
    color: var(--farmais-blue);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.store-phone:hover {
    color: var(--farmais-red);
}

.store-actions {
    display: flex;
    gap: 12px;
}

/* FAQ */
.faq {
    background: var(--bg-warm);
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.faq-head {
    position: sticky;
    top: 110px;
}

.faq-head h2 {
    font-size: 2.1rem;
    margin-bottom: 14px;
    color: var(--navy);
}

.faq-head p {
    color: var(--muted);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-list details {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-list details[open] {
    box-shadow: var(--shadow);
}

.faq-list summary {
    padding: 22px 24px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: '+';
    font-size: 1.3rem;
    color: var(--farmais-blue);
    transition: transform 0.2s ease;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
    color: var(--farmais-red);
}

.faq-list details p {
    padding: 0 24px 22px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Final CTA */
.final-cta {
    background: white;
    padding: 50px 0 100px;
}

.cta-box {
    background: var(--grad-brand);
    background-color: var(--farmais-blue);
    border-radius: var(--radius);
    padding: 64px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(224,58,51,0.35), transparent 65%);
    top: -160px;
    right: -120px;
    border-radius: 50%;
}

.cta-box::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    bottom: -120px;
    left: -60px;
    border-radius: 50%;
}

.cta-box h2 {
    font-size: 2.4rem;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.cta-box > p {
    font-size: 1.08rem;
    opacity: 0.92;
    max-width: 500px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.cta-box .btn {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background: #454596;
    color: white;
    padding-top: 68px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #454596, var(--farmais-red), #454596);
    background-size: 200% 100%;
    animation: footerLine 8s linear infinite;
}

@keyframes footerLine {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1;
}

.footer-brand img {
    height: 46px;
    width: auto;
    margin-bottom: 18px;
}

.footer-brand p {
    color: rgba(255,255,255,0.68);
    font-size: 0.92rem;
    max-width: 300px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(15, 39, 60, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--farmais-red);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-size: 0.95rem;
    margin-bottom: 18px;
    color: white;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: #ff8a82;
    transform: translateX(3px);
}

.footer-bottom {
    padding: 28px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.73rem;
    margin-bottom: 8px;
}

.footer-bottom .disclaimer {
    max-width: 860px;
    margin: 0 auto 8px;
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    z-index: 99;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

body.modal-open {
    overflow: hidden;
}

.medicine-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: 200;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.medicine-modal.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.medicine-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 39, 60, 0.68);
    backdrop-filter: blur(5px);
}

.medicine-modal-card {
    width: min(100%, 500px);
    position: relative;
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(15, 39, 60, 0.28);
    transform: translateY(18px) scale(0.97);
    transition: transform 0.3s ease;
}

.medicine-modal.is-open .medicine-modal-card {
    transform: translateY(0) scale(1);
}

.medicine-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    color: var(--navy);
    background: var(--farmais-blue-light);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-fast);
}

.medicine-modal-close:hover {
    color: white;
    background: var(--farmais-red);
    transform: rotate(90deg);
}

.medicine-modal-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 18px;
    color: white;
    background: var(--grad-brand);
    box-shadow: var(--shadow-blue-glow);
}

.medicine-modal-card .eyebrow {
    margin-bottom: 10px;
}

.medicine-modal-card h2 {
    max-width: 400px;
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 1.7rem;
}

.medicine-modal-card p {
    margin-bottom: 24px;
    color: var(--muted);
}

.medicine-modal-card form {
    display: grid;
    gap: 10px;
}

.medicine-modal-card label {
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 700;
}

.medicine-modal-card input {
    width: 100%;
    padding: 15px 16px;
    border: 2px solid var(--line);
    border-radius: var(--radius-xs);
    color: var(--navy);
    background: #fff;
    font: inherit;
    outline: none;
    transition: var(--transition-fast);
}

.medicine-modal-card input:focus {
    border-color: var(--farmais-blue);
    box-shadow: 0 0 0 4px rgba(0, 80, 149, 0.12);
}

.medicine-modal-card form .btn {
    width: 100%;
    margin-top: 6px;
}

.medicine-form-error {
    min-height: 18px;
    color: var(--farmais-red);
    font-size: 0.82rem;
}

.medicine-modal-card small {
    display: block;
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.75rem;
    text-align: center;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid,
    .value-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-order-card {
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-photo-main img,
    .value-photo img {
        height: 380px;
    }

    .hero-photo-float {
        right: 12px;
        bottom: -22px;
    }

    .steps,
    .testimonials-grid,
    .stats-grid,
    .stores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .service-card-main {
        grid-row: auto;
    }

    .faq-head {
        position: static;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        background: #454596;
        flex-direction: column;
        align-items: stretch;
        padding: 24px;
        gap: 0;
        border-bottom: 1px solid rgba(255,255,255,0.14);
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

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

    .nav a {
        padding: 14px 0;
        border-bottom: 1px solid rgba(255,255,255,0.14);
        font-size: 1rem;
    }

    .nav-cta {
        margin: 18px 0 0;
        text-align: center;
    }

    .hero {
        padding-top: 48px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-media {
        order: -1;
    }

    .hero-order-card {
        padding: 26px 20px 22px;
    }

    .hero-order-card h2 {
        font-size: 1.55rem;
    }

    .hero-benefits {
        gap: 8px;
    }

    .hero-benefits strong {
        font-size: 0.7rem;
    }

    .hero-benefits small {
        font-size: 0.65rem;
    }

    .hero-photo-main img,
    .value-photo img {
        height: 300px;
    }

    .hero-brands {
        margin-top: 48px;
    }

    .brands-row {
        gap: 24px;
    }

    .section-head h2,
    .services-head h2,
    .value-content h2,
    .faq-head h2,
    .cta-box h2 {
        font-size: 1.7rem;
    }

    section {
        padding: 64px 0;
    }

    .steps,
    .testimonials-grid,
    .stats-grid,
    .stores-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .store-actions {
        flex-direction: column;
    }

    .cta-box {
        padding: 36px 24px;
    }

    .footer-grid {
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .mini-card {
        padding: 12px 14px;
    }

    .mini-card strong {
        font-size: 0.8rem;
    }

    .medicine-modal {
        padding: 16px;
    }

    .medicine-modal-card {
        padding: 30px 22px 24px;
    }

    .medicine-modal-card h2 {
        font-size: 1.45rem;
    }
}
