/* ===================================================================
   SelvaGuard · Spray Protector Natural
   Premium botanical / tropical-Mexico design system
   =================================================================== */
:root {
    /* Brand palette */
    --jungle: #0D2B1A;   /* deep jungle green */
    --verde:  #1A5C35;   /* rich green */
    --verde-light: #2E8B57;
    --amber:  #D4862A;   /* cempasúchil amber */
    --amber-dark: #B86E1C;
    --tierra: #8B4513;   /* terracotta earth */
    --cream:  #F7F2E8;   /* warm cream */
    --dark:   #1A1A1A;
    --mid:    #4A4A4A;
    --white:  #ffffff;
    --border: #e6ded0;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(13,43,26,0.08);
    --shadow-md: 0 12px 30px -8px rgba(13,43,26,0.18);
    --shadow-lg: 0 24px 50px -12px rgba(13,43,26,0.30);
    --glow-amber: 0 8px 24px rgba(212,134,42,0.4);

    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 18px;
    --radius-pill: 999px;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --ease-card: 0.25s ease;
}

/* Reset & base */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    background-color: var(--cream);
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.18;
    color: var(--jungle);
    font-weight: 700;
}
em, .italic { font-style: italic; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-left.active, .reveal-right.active { transform: translateX(0); }

/* ===================== NAVIGATION ===================== */
header {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    padding: 1.1rem 0;
    background: transparent;
    transition: background var(--transition-normal), box-shadow var(--transition-normal), padding var(--transition-normal);
}
header.scrolled {
    background: var(--white);
    box-shadow: 0 2px 18px rgba(13,43,26,0.10);
    padding: 0.7rem 0;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.3px;
    transition: color var(--transition-normal);
}
.logo svg { color: var(--amber); flex-shrink: 0; }
header.scrolled .logo { color: var(--jungle); }

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.98rem;
    text-decoration: none;
    transition: color var(--transition-fast);
}
.nav-links a.nav-link:hover { color: var(--amber); }
header.scrolled .nav-links a.nav-link { color: var(--mid); }
header.scrolled .nav-links a.nav-link:hover { color: var(--amber); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.95rem 1.9rem;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    border: none;
}
.btn-amber {
    background: var(--amber);
    color: var(--white);
}
.btn-amber:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-amber);
    background: var(--amber-dark);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}
.btn-lg { padding: 1.15rem 2.6rem; font-size: 1.08rem; }
.btn-nav { padding: 0.7rem 1.4rem; font-size: 0.95rem; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1100;
}
.hamburger span {
    width: 26px; height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}
header.scrolled .hamburger span { background: var(--jungle); }
.mobile-menu.open ~ * .hamburger span { background: var(--jungle); }

.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 78%; max-width: 320px;
    height: 100vh;
    background: var(--jungle);
    z-index: 1090;
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.15rem;
    font-family: 'Playfair Display', serif;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 1rem;
}
.mobile-menu a.btn-amber { color: var(--white); border: none; text-align: center; }
.mobile-close {
    position: absolute;
    top: 1.4rem; right: 1.6rem;
    background: none; border: none;
    color: var(--cream); font-size: 2rem;
    cursor: pointer; line-height: 1;
}

/* ===================== HERO ===================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}
.hero-gif-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--jungle);
}
.hero-gif-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.45;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 30, 15, 0.68);
    z-index: -1;
}
.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}
@media(min-width: 992px) {
    .hero-container { grid-template-columns: 1.1fr 0.9fr; }
}
.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--amber);
    margin-bottom: 1.4rem;
}
.hero-content h1 {
    font-size: clamp(32px, 8vw, 60px);
    color: var(--white);
    margin-bottom: 1.6rem;
    line-height: 1.1;
}
.hero-content h1 em {
    color: var(--amber);
    font-style: italic;
}
.hero-content p.lead {
    font-size: 1.18rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.2rem;
    max-width: 540px;
    font-family: 'Inter', sans-serif;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.trust-bar {
    margin-top: 2.4rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1.2rem;
    align-items: center;
}

/* Hero product */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}
.hero-bottle {
    max-width: 78%;
    height: auto;
    filter: drop-shadow(0 25px 35px rgba(26,92,53,0.55));
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}
.floating-badge {
    position: absolute;
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13,43,26,0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212,134,42,0.5);
    color: var(--cream);
    padding: 0.7rem 1.3rem;
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
}

/* ===================== SECTIONS GENERAL ===================== */
section { padding: 6rem 0; position: relative; }
.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--amber);
    margin-bottom: 1rem;
    display: block;
}
.section-title {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    margin-bottom: 1rem;
    color: var(--jungle);
}
.section-title em { color: var(--amber); font-style: italic; }
.text-center { text-align: center; }
.section-subtitle {
    font-size: 1.15rem;
    color: var(--mid);
    max-width: 620px;
    margin: 0 auto 3.5rem;
}

/* ===================== PROBLEM (dark jungle) ===================== */
.problem-section {
    background: var(--jungle);
    background-image:
        radial-gradient(at 10% 0%, rgba(26,92,53,0.4) 0, transparent 45%),
        radial-gradient(at 90% 100%, rgba(139,69,19,0.25) 0, transparent 45%);
    color: var(--white);
    overflow: hidden;
}
.problem-section .section-title { color: var(--white); }
.problem-section .section-title em { color: var(--amber); }
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.problem-card {
    position: relative;
    padding: 2.6rem 2.2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.35);
    transition: transform var(--ease-card), box-shadow var(--ease-card), border-color var(--ease-card);
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.problem-card .card-photo {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%; height: 100%;
    opacity: 0.32;
    z-index: 0;
    transition: opacity var(--ease-card);
}
.problem-card > * { position: relative; z-index: 1; }
.problem-card:hover {
    transform: translateY(-6px);
    border-color: var(--amber);
    box-shadow: var(--shadow-lg);
}
.problem-card:hover .card-photo { opacity: 0.45; }
.problem-icon { font-size: 2rem; margin-bottom: 1rem; }
.problem-card h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 0.8rem; }
.problem-card p { color: rgba(255,255,255,0.78); font-size: 0.98rem; }

/* ===================== BARRERA (cream split) ===================== */
.how-it-works { background: var(--cream); }
.split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}
@media(min-width: 992px) {
    .split-layout { grid-template-columns: 1fr 1fr; }
}
.how-it-works h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1.4rem; }
.how-text p.intro { font-size: 1.08rem; color: var(--mid); margin-bottom: 2rem; }
.feature-list { list-style: none; }
.feature-list li {
    display: flex; gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}
.feature-list .check {
    flex-shrink: 0;
    width: 30px; height: 30px;
    background: var(--verde);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.feature-list strong { display: block; color: var(--jungle); font-size: 1.05rem; margin-bottom: 0.15rem; }
.feature-list span { color: var(--mid); font-size: 0.96rem; }
.barrier-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 480px;
    background: var(--jungle);
}
.barrier-image img.bg {
    width: 100%; height: 100%; object-fit: cover; opacity: 0.85;
}
.barrier-image .product-float {
    position: absolute;
    bottom: -10px; right: 20px;
    width: 150px;
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.45));
    animation: float 5s ease-in-out infinite;
}

/* ===================== ENTORNOS (dark gallery) ===================== */
.gallery-section {
    background: var(--verde);
    background-image: linear-gradient(160deg, var(--verde) 0%, var(--jungle) 100%);
}
.gallery-section .section-title { color: var(--white); }
.gallery-section .section-title em { color: var(--amber); }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 420px;
}
.gallery-item img.bg {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img.bg { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,43,26,0.92) 0%, rgba(13,43,26,0.25) 55%, transparent 100%);
    transition: background var(--ease-card);
}
.gallery-item:hover .gallery-overlay {
    background: linear-gradient(to top, rgba(13,43,26,0.95) 0%, rgba(26,92,53,0.4) 60%, rgba(26,92,53,0.15) 100%);
}
.gallery-caption {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 2rem 1.8rem;
    color: var(--white);
    z-index: 2;
}
.gallery-caption .place-icon { font-size: 1.6rem; }
.gallery-caption h3 { color: var(--white); font-size: 1.5rem; margin: 0.4rem 0; }
.gallery-caption p {
    opacity: 0;
    max-height: 0;
    transform: translateY(15px);
    transition: all var(--ease-card);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}
.gallery-item:hover .gallery-caption p {
    opacity: 1;
    max-height: 120px;
    transform: translateY(0);
}

/* ===================== STATS BAND ===================== */
.stats-band {
    background: var(--verde);
    background-image: linear-gradient(120deg, var(--verde) 0%, var(--jungle) 100%);
    padding: 2.6rem 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--amber);
    line-height: 1;
}
.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin-top: 0.4rem;
    letter-spacing: 0.3px;
}
.stat-item + .stat-item { position: relative; }
.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: -0.75rem; top: 15%;
    height: 70%; width: 1px;
    background: rgba(255,255,255,0.18);
}
@media(max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
    .stat-item + .stat-item::before { display: none; }
}

/* ===================== INGREDIENTES BOTÁNICOS ===================== */
.ingredients { background: var(--cream); }
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.8rem;
}
.ingredient-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.4rem 1.8rem;
    text-align: center;
    border-top: 3px solid var(--amber);
    transition: transform var(--ease-card), box-shadow var(--ease-card);
}
.ingredient-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}
.ingredient-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: rgba(26,92,53,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
}
.ingredient-card h3 { color: var(--jungle); font-size: 1.25rem; margin-bottom: 0.6rem; }
.ingredient-card p { color: var(--mid); font-size: 0.92rem; }
.ingredient-card .latin {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: 0.8rem;
    color: var(--tierra);
    margin-top: 0.5rem;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
    position: relative;
    background: linear-gradient(160deg, var(--jungle) 0%, #050f08 100%);
    text-align: center;
    overflow: hidden;
    color: var(--white);
}
.cta-section .leaf-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M60 10 C40 40 40 80 60 110 C80 80 80 40 60 10 Z' fill='none' stroke='%231A5C35' stroke-width='1.5' opacity='0.4'/%3E%3C/svg%3E");
    opacity: 0.25;
    pointer-events: none;
}
.cta-particles {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0.3;
    overflow: hidden;
}
.firefly {
    position: absolute;
    bottom: -10px;
    width: 4px; height: 4px;
    background: var(--amber);
    border-radius: 50%;
    box-shadow: 0 0 8px 2px rgba(212,134,42,0.8);
    animation: rise linear infinite;
}
@keyframes rise {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-90vh) translateX(40px); opacity: 0; }
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: 1.2rem; }
.cta-section p.cta-sub {
    color: rgba(255,255,255,0.78);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}
.btn-cta {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    background: var(--amber);
    color: var(--white);
    padding: 1.3rem 3rem;
    border-radius: var(--radius-sm);
    font-size: 1.05rem;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-amber);
    background: var(--amber-dark);
}
.cta-fineprint {
    margin-top: 1.8rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ===================== FAQ ===================== */
.faq-section { background: var(--cream); }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.4rem 1.6rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.12rem;
    font-weight: 600;
    color: var(--jungle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--amber);
    transition: transform var(--transition-fast);
    line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
    padding: 0 1.6rem 1.5rem;
    color: var(--mid);
    font-size: 0.98rem;
}

/* ===================== FOOTER ===================== */
footer {
    background: var(--jungle);
    color: rgba(255,255,255,0.7);
    padding: 4.5rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-logo {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    text-decoration: none;
}
.footer-logo svg { color: var(--amber); }
footer p { font-size: 0.92rem; }
footer h4 {
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.3rem;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.94rem;
    transition: var(--transition-fast);
}
.footer-links a:hover { color: var(--amber); transform: translateX(4px); }
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.85rem;
}
.footer-bottom .disclaimer {
    background: rgba(0,0,0,0.2);
    border-left: 3px solid var(--amber);
    padding: 1rem 1.2rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.65);
}

/* ===================== SUBPAGES (legal / blog / artículos) ===================== */
body.subpage { background: var(--cream); }
body.subpage header {
    background: var(--white);
    box-shadow: 0 2px 18px rgba(13,43,26,0.10);
    padding: 0.8rem 0;
}
body.subpage header .logo { color: var(--jungle); }
body.subpage header .nav-links a.nav-link { color: var(--mid); }
body.subpage header .nav-links a.nav-link:hover { color: var(--amber); }
body.subpage header .hamburger span { background: var(--jungle); }

.page-head {
    background: linear-gradient(160deg, var(--jungle) 0%, var(--verde) 130%);
    color: var(--white);
    padding: 8rem 0 3.5rem;
    text-align: center;
}
.page-head h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 0.6rem; }
.page-head h1 em { color: var(--amber); font-style: italic; }
.page-head p { color: rgba(255,255,255,0.75); max-width: 620px; margin: 0 auto; font-size: 1.05rem; }

.page-wrap { max-width: 980px; margin: 0 auto; padding: 3.5rem 1.5rem 5rem; }
.content-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}
.content-card h2 {
    font-size: 1.5rem; color: var(--verde);
    margin: 2rem 0 0.8rem;
}
.content-card h2:first-child { margin-top: 0; }
.content-card p { color: var(--mid); margin-bottom: 1.2rem; }
.content-card a:not(.btn) { color: var(--verde); font-weight: 600; }

.back-home {
    display: inline-flex; align-items: center; gap: 0.4rem;
    margin-top: 2.5rem;
    color: var(--verde); font-weight: 600; text-decoration: none;
}
.back-home:hover { color: var(--amber); }

/* Article typography */
.article-body { line-height: 1.85; }
.article-body .meta {
    color: var(--mid); font-size: 0.95rem; font-style: italic;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem; margin-bottom: 2rem;
}
.article-body h2 { color: var(--verde); font-size: 1.7rem; margin: 2.6rem 0 1rem; }
.article-body h3 { color: var(--jungle); font-size: 1.25rem; margin: 1.8rem 0 0.8rem; }
.article-body p { color: var(--dark); margin-bottom: 1.4rem; font-size: 1.05rem; }
.article-body ul { margin: 0 0 1.4rem 1.4rem; color: var(--dark); }
.article-body li { margin-bottom: 0.7rem; }
.article-body blockquote {
    font-family: 'Lora', serif; font-style: italic;
    border-left: 4px solid var(--amber);
    background: var(--cream);
    padding: 1.4rem 1.6rem; border-radius: var(--radius-sm);
    margin: 0 0 1.6rem; color: var(--mid);
}
.article-body strong { color: var(--jungle); }

/* CTA box inside content */
.cta-box {
    background: linear-gradient(160deg, var(--jungle), #050f08);
    color: var(--white);
    padding: 2.6rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin-top: 3rem;
}
.cta-box h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.6rem; }
.cta-box p { color: rgba(255,255,255,0.78); margin-bottom: 1.6rem; }

/* Blog cards */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    transition: transform var(--ease-card), box-shadow var(--ease-card);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card .card-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .tag {
    align-self: flex-start;
    background: rgba(212,134,42,0.12);
    color: var(--amber-dark);
    padding: 0.3rem 0.9rem; border-radius: var(--radius-pill);
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.5px; margin-bottom: 1rem;
}
.blog-card h2 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.blog-card p { color: var(--mid); font-size: 0.95rem; flex: 1; margin-bottom: 1.3rem; }
.blog-card .read-more {
    color: var(--verde); font-weight: 600; text-decoration: none;
    display: inline-flex; gap: 0.4rem;
}
.blog-card .read-more:hover { color: var(--amber); }

/* ===================== RESPONSIVE ===================== */
@media(max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    section { padding: 4rem 0; }
    .hero { padding: 7rem 0 3rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 1; }
    .hero-image-wrapper { order: 2; }
    .hero-cta { justify-content: center; }
    .trust-bar { justify-content: center; }
    .hero-bottle { max-width: 60%; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .split-layout { gap: 2.5rem; }
    .barrier-image { height: 360px; }
}
