/* ═══════════════════════════════════════════════════
   BERA HASS — Minimalist Edition 2026
   ═══════════════════════════════════════════════════ */

:root {
    --bg: #ffffff;
    --bg-alt: #fafaf7;
    --surface: #ffffff;
    --text: #1a1a1a;
    --muted: #6b6b6b;
    --light: #999;
    --line: #e8e8e8;
    --green: #1a3c28;
    --green-2: #2d5a3f;
    --green-light: #e8f0eb;
    --gold: #b8960c;
    --gold-2: #d4a81a;
    --gold-light: #f5ecd0;
    --dark: #111;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 2px 8px rgba(0,0,0,0.03);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 6px rgba(0,0,0,0.04);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
    --shadow-glow: 0 0 30px rgba(26,60,40,0.15);
    --shadow-gold-glow: 0 0 30px rgba(184,150,12,0.2);
    --container: 1140px;
    --font-display: 'Poppins', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }

.container {
    width: min(calc(100% - 2.5rem), var(--container));
    margin: 0 auto;
}

/* ─── PRELOADER ─── */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #0d2218 0%, var(--green) 50%, #1a4d2e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--transition-smooth), visibility 0.6s var(--transition-smooth), transform 0.6s var(--transition-smooth);
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.05);
}
.preloader-inner { text-align: center; }
.preloader-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
.preloader-logo-img {
    width: 90px;
    height: auto;
    border-radius: 18px;
    animation: floatSoft 3s ease-in-out infinite, preloaderGlow 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(184,150,12,0.3));
}
@keyframes floatSoft {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.03); }
}
@keyframes preloaderGlow {
    from { filter: drop-shadow(0 0 15px rgba(184,150,12,0.2)); }
    to { filter: drop-shadow(0 0 30px rgba(184,150,12,0.5)); }
}
.preloader-brand {
    display: none;
}
.preloader-bar {
    width: 140px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}
.preloader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #d4a81a, var(--gold));
    background-size: 200% 100%;
    border-radius: 4px;
    animation: preloaderFill 0.8s ease forwards, shimmerBar 0.8s ease-in-out infinite;
    box-shadow: 0 0 12px rgba(184,150,12,0.5);
}
@keyframes preloaderFill {
    from { width: 0; }
    to { width: 100%; }
}
@keyframes shimmerBar {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* ─── BERAHASS BRAND COLORS (Colombia flag) ─── */
.brand-col {
    font-weight: inherit;
    font-style: normal;
}
.brand-col .b-y { color: #FCD116; }
.brand-col .b-b { color: #003893; }
.brand-col .b-r { color: #CE1126; }
/* Light backgrounds */
.brand-col-dark .b-y { color: #d4a81a; }
.brand-col-dark .b-b { color: #003893; }
.brand-col-dark .b-r { color: #CE1126; }

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.9rem 0;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s var(--transition-smooth);
}
.navbar.scrolled {
    padding: 0.6rem 0;
    background: rgba(255,255,255,0.92);
    border-bottom-color: rgba(0,0,0,0.06);
    box-shadow: 0 4px 30px rgba(0,0,0,0.04);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    z-index: 10;
}
.logo-img {
    width: 38px;
    height: auto;
    transition: transform 0.3s ease;
}
.logo:hover .logo-img {
    transform: scale(1.05);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--green); font-weight: 600; }
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    border-radius: 2px;
    transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.btn-nav {
    padding: 0.5rem 1.3rem !important;
    background: linear-gradient(135deg, var(--green), #2d5a3f) !important;
    color: #fff !important;
    border-radius: 100px !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.03em;
    transition: all 0.3s var(--transition-smooth) !important;
    box-shadow: 0 2px 10px rgba(26,60,40,0.15);
}
.btn-nav:hover {
    background: linear-gradient(135deg, #2d5a3f, #3a7a55) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,60,40,0.25) !important;
}
.btn-nav::after { display: none !important; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 10;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s ease;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-lg { padding: 0.75rem 2rem; }
.btn-gold {
    background: linear-gradient(135deg, var(--green) 0%, #2d5a3f 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.btn-gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s var(--transition-smooth);
}
.btn-gold:hover::before {
    left: 100%;
}
.btn-gold:hover {
    background: linear-gradient(135deg, #2d5a3f 0%, #3a7a55 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26,60,40,0.3), 0 0 40px rgba(26,60,40,0.1);
}
.btn-glass {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}
.btn-glass:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.btn-full { width: 100%; justify-content: center; }

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: -20px;
    background: url('hero-cultivo.jpg') center/cover;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.hero-bg-img {
    display: none;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(13,34,24,0.8) 0%, rgba(26,60,40,0.5) 40%, rgba(0,0,0,0.25) 100%),
        radial-gradient(ellipse at 20% 80%, rgba(184,150,12,0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(26,60,40,0.2) 0%, transparent 50%);
}
/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.particle {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: var(--s);
    height: var(--s);
    background: radial-gradient(circle, rgba(184,150,12,0.6), rgba(184,150,12,0));
    border-radius: 50%;
    animation: particleFloat var(--d) ease-in-out var(--delay) infinite;
}
@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(30px, -40px) scale(1.5); opacity: 0.7; }
    50% { transform: translate(-20px, -80px) scale(1); opacity: 0.4; }
    75% { transform: translate(40px, -30px) scale(1.3); opacity: 0.6; }
}
.hero-split {
    position: relative;
    z-index: 2;
    padding: 8rem 0 6rem;
}
.hero-left { max-width: 640px; }
.hero-text h1 {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 60px rgba(0,0,0,0.4);
    animation: heroTitleIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}
@keyframes heroTitleIn {
    from { opacity: 0; transform: translateY(40px); filter: blur(8px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
.hero-accent {
    position: relative;
    display: inline-block;
    background: linear-gradient(
        90deg,
        #b8960c 0%,
        #f5ecd0 15%,
        #ffffff 20%,
        #f5ecd0 25%,
        #d4a81a 40%,
        #b8960c 60%,
        #f5ecd0 75%,
        #ffffff 80%,
        #f5ecd0 85%,
        #b8960c 100%
    );
    background-size: 400% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldLiquid 5s ease-in-out infinite;
    filter: drop-shadow(0 0 25px rgba(184,150,12,0.4)) drop-shadow(0 0 60px rgba(184,150,12,0.15));
}
.hero-accent::after {
    content: 'El Oro Líquido';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.8) 48%,
        rgba(255,255,255,0.9) 50%,
        rgba(255,255,255,0.8) 52%,
        transparent 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldFlash 4s ease-in-out infinite;
    animation-delay: 1.5s;
    opacity: 0;
}
@keyframes goldLiquid {
    0% { background-position: 0% center; }
    50% { background-position: 400% center; }
    100% { background-position: 0% center; }
}
@keyframes goldFlash {
    0%, 100% { opacity: 0; background-position: -100% center; }
    30% { opacity: 0.7; }
    50% { opacity: 1; background-position: 200% center; }
    70% { opacity: 0.7; }
    80%, 100% { opacity: 0; background-position: 200% center; }
}
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 300;
    text-shadow: 0 1px 10px rgba(0,0,0,0.2);
    animation: heroTitleIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: heroTitleIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}
.hero-buttons .btn-gold {
    padding: 0.85rem 2.2rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(26,60,40,0.3);
    position: relative;
    overflow: hidden;
}
.hero-buttons .btn-gold::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.hero-buttons .btn-gold:hover::after {
    opacity: 1;
}
.hero-buttons .btn-gold:hover {
    box-shadow: 0 8px 35px rgba(26,60,40,0.4), 0 0 60px rgba(26,60,40,0.15);
}

/* ─── SHARED HERO BACKGROUND ON PANORAMA ─── */
.about-panorama {
    background: url('hero-cultivo.jpg') center/cover fixed;
}
.about-panorama .about-panorama-img {
    display: none;
}

/* ─── SECTIONS ─── */
.section {
    padding: 6rem 0;
    position: relative;
}
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
}
.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green);
    margin-bottom: 0.8rem;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--green-light);
    border-radius: 100px;
    background: rgba(232,240,235,0.5);
    backdrop-filter: blur(4px);
    transition: all 0.3s var(--transition-smooth);
}
.section-tag:hover {
    background: var(--green-light);
    transform: translateY(-1px);
}
.section-tag.light {
    color: rgba(255,255,255,0.8);
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
}
.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}
.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--green));
    border-radius: 2px;
    margin: 0.8rem auto 0;
}
.section-header.light h2 { color: #fff; }
.section-header p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.7;
}
.section-header.light p { color: rgba(255,255,255,0.7); }
.text-gold {
    background: linear-gradient(135deg, var(--gold), #d4a81a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient {
    background: linear-gradient(135deg, var(--gold), #d4a81a, #c9a227);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── ABOUT / PANORAMA ─── */
.about-v2 { padding: 0; }
.about-panorama {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.about-panorama-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-panorama-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(13,34,24,0.7) 0%, rgba(0,0,0,0.3) 100%),
        radial-gradient(ellipse at 80% 20%, rgba(184,150,12,0.08) 0%, transparent 50%);
}
.about-panorama-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0;
    max-width: 560px;
}
.panorama-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
}
.panorama-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}
.about-panorama-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}
.panorama-subtitle {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-weight: 300;
}
/* Counters */
.about-counters {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px) saturate(1.5);
    -webkit-backdrop-filter: blur(20px) saturate(1.5);
    border-top: 1px solid rgba(255,255,255,0.5);
}
.about-counter {
    flex: 1;
    max-width: 250px;
    text-align: center;
    padding: 1.5rem 1rem;
    animation: fadeUp 0.6s ease backwards;
    animation-delay: var(--cdelay, 0s);
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
.counter-icon {
    display: inline-flex;
    margin-bottom: 0.4rem;
    color: var(--green);
}
.counter-num {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}
.counter-label {
    display: block;
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.15rem;
}
.about-counter-divider {
    width: 1px;
    background: var(--line);
    align-self: stretch;
    margin: 1rem 0;
}

/* About Content */
.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0;
}
.about-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--green);
    margin-bottom: 1rem;
}
.about-headline {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--text);
}
.about-headline strong {
    font-weight: 700;
}
.about-body {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.about-hl {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all 0.3s var(--transition-smooth);
}
.about-hl:hover {
    background: #fff;
    border-color: var(--line);
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}
.about-hl-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
}
.about-hl-green { background: var(--green-light); color: var(--green); }
.about-hl-gold { background: var(--gold-light); color: var(--gold); }
.about-hl strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}
.about-hl span {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
}

/* Mosaic */
.about-mosaic {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.8rem;
}
.mosaic-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}
.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.mosaic-item:hover img { transform: scale(1.06); }
.mosaic-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,60,40,0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}
.mosaic-item:hover::after { opacity: 1; }
.mosaic-tall { grid-row: span 2; }
.mosaic-wide { }
.mosaic-label {
    position: absolute;
    bottom: 0.6rem;
    left: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.7rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(6px);
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text);
}
.mosaic-label svg { width: 12px; height: 12px; }

/* ─── PRODUCTS ─── */
.products {
    background: linear-gradient(160deg, #0d2218 0%, var(--green) 40%, #1a4d2e 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.products::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184,150,12,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.products::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45,90,63,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}
.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    transition: all 0.3s var(--transition-smooth);
}
.trust-badge-item:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}
.trust-badge-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    stroke: var(--gold);
}
.trust-badge-green svg { stroke: #6fcf97; }

/* Product Cards */
.prod-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}
.prod-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    transition: left 0.7s var(--transition-smooth);
    z-index: 2;
    pointer-events: none;
}
.prod-card:hover::before {
    left: 150%;
}
.prod-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 60px rgba(0,0,0,0.25), 0 8px 20px rgba(0,0,0,0.1);
}
.prod-card.featured {
    border: 2px solid var(--gold);
    box-shadow: 0 0 30px rgba(184,150,12,0.15);
    animation: featuredGlow 3s ease-in-out infinite alternate;
}
@keyframes featuredGlow {
    from { box-shadow: 0 0 20px rgba(184,150,12,0.1), 0 4px 15px rgba(0,0,0,0.1); }
    to { box-shadow: 0 0 40px rgba(184,150,12,0.25), 0 8px 30px rgba(0,0,0,0.15); }
}
.prod-card.featured:hover {
    box-shadow: 0 24px 60px rgba(0,0,0,0.25), 0 0 50px rgba(184,150,12,0.3);
    animation: none;
}
.prod-header {
    position: relative;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.refinado-bg { background: #ffffff; }
.extravirgen-bg { background: #ffffff; }
.industrial-bg { background: #ffffff; }
.prod-img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}
.prod-img-garrafa { max-height: 200px; }
.prod-card:hover .prod-img { transform: scale(1.05); }
.prod-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.7rem;
    background: rgba(255,255,255,0.9);
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text);
}
.prod-badge.gold { background: linear-gradient(135deg, var(--gold), #d4a81a); color: #fff; box-shadow: 0 2px 10px rgba(184,150,12,0.3); }
.prod-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.2rem 0.6rem;
    background: var(--green);
    color: #fff;
    border-radius: 100px;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.prod-tag.gold { background: var(--gold); }
.prod-info {
    padding: 1.5rem;
}
.prod-info h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}
.prod-sub {
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 0.6rem;
}
.prod-info > p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.prod-nutrients {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 1rem;
}
.prod-nutrients span {
    padding: 0.2rem 0.6rem;
    background: var(--bg-alt);
    border-radius: 100px;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--muted);
}
.prod-price-row {
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}
.prod-price {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}
.price-currency {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green);
}
.price-amount {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--green);
}
.price-unit {
    font-size: 0.72rem;
    color: var(--muted);
    margin-left: 0.2rem;
}
.prod-price-gold .price-currency,
.prod-price-gold .price-amount {
    color: var(--gold);
}
.prod-actions { display: flex; gap: 0.6rem; }
.btn-prod {
    flex: 1;
    text-align: center;
    padding: 0.7rem 1.2rem;
    background: linear-gradient(135deg, var(--green), #2d5a3f);
    color: #fff;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.btn-prod::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s var(--transition-smooth);
}
.btn-prod:hover::before {
    left: 100%;
}
.btn-prod:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26,60,40,0.3);
}
.btn-prod-gold {
    background: linear-gradient(135deg, var(--gold), #d4a81a);
}
.btn-prod-gold:hover {
    background: linear-gradient(135deg, #a68309, var(--gold));
    box-shadow: 0 6px 20px rgba(184,150,12,0.3);
}

/* ─── BENEFITS ─── */
.benefits { background: var(--bg-alt); padding: 0; }
.benefits-hero-bg {
    position: relative;
    min-height: 35vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.benefits-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.benefits-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(13,34,24,0.7) 0%, rgba(0,0,0,0.3) 100%),
        radial-gradient(ellipse at 70% 30%, rgba(184,150,12,0.08) 0%, transparent 50%);
}
.benefits-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 0;
    max-width: 540px;
    margin: 0 auto;
}
.benefits-hero-content h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 0.6rem;
}
.benefits-hero-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}
.ben-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    padding: 4rem 0;
}
.ben-card-v2 {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    transition: all 0.4s var(--transition-smooth);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.ben-card-v2::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--gold));
    opacity: 0;
    transition: opacity 0.4s var(--transition-smooth);
}
.ben-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: var(--line);
    background: linear-gradient(135deg, #fff 0%, #fafaf7 100%);
}
.ben-card-v2:hover::after {
    opacity: 1;
}
.ben-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s var(--transition-smooth);
}
.ben-card-v2:hover .ben-icon-wrap {
    transform: scale(1.1) rotate(-3deg);
}
.ben-coral { background: #fef0ed; color: #e25c3a; }
.ben-amber { background: #fef7e0; color: #d4930d; }
.ben-red { background: #fdeeed; color: #dc3545; }
.ben-green { background: var(--green-light); color: var(--green); }
.ben-teal { background: #e6f7f1; color: #1a9a6a; }
.ben-purple { background: #f3eef8; color: #7c3aed; }
.ben-card-v2 h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.ben-card-v2 p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}
.ben-stat {
    font-size: 0.72rem;
    color: var(--green);
    font-weight: 600;
    padding-top: 0.6rem;
    border-top: 1px solid var(--line);
}
.ben-stat strong { font-weight: 700; }

/* ─── PROCESS ─── */
.process {
    background: var(--bg);
    padding: 5rem 0;
}
.process-visual {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 3rem;
    max-height: 280px;
}
.process-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.p-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}
.p-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--line);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}
.p-step {
    transition: all 0.3s var(--transition-smooth);
}
.p-step:hover {
    transform: translateY(-4px);
}
.p-icon-svg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green);
    margin-bottom: 1rem;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}
.p-icon-svg::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed var(--green-light);
    opacity: 0;
    transition: all 0.4s var(--transition-smooth);
}
.p-step:hover .p-icon-svg {
    background: var(--green);
    color: #fff;
    box-shadow: 0 8px 25px rgba(26,60,40,0.2);
}
.p-step:hover .p-icon-svg::after {
    opacity: 1;
    inset: -8px;
}
.p-icon-svg svg { width: 28px; height: 28px; }
.p-step h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.p-step p {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.6;
}
.p-connector { display: none; }

/* ─── CONTACT ─── */
.contact {
    background: var(--bg-alt);
    padding: 5rem 0;
}
.contact .section-header {
    margin-bottom: 3rem;
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}
.contact-left h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.c-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #fff;
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--transition-smooth);
    border: 1px solid transparent;
}
.c-card:hover {
    transform: translateX(6px);
    border-color: var(--green-light);
    box-shadow: var(--shadow-md);
}
.c-icon { font-size: 1.3rem; flex-shrink: 0; }
.c-card strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}
.c-card span {
    font-size: 0.78rem;
    color: var(--muted);
}
.c-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.3rem; }
.form-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.7rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--line);
    outline: none;
    font-size: 0.88rem;
    color: var(--text);
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--green);
    border-bottom-width: 2px;
    box-shadow: 0 2px 0 0 rgba(26,60,40,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--light);
}
.form-group textarea {
    resize: vertical;
    min-height: 80px;
}
.full-width { grid-column: 1 / -1; }
.contact-form .btn {
    margin-top: 0.5rem;
    padding: 0.8rem 2rem;
}

/* ─── FOOTER ─── */
.footer {
    background: linear-gradient(160deg, #0d2218 0%, var(--green) 60%, #1a4d2e 100%);
    color: rgba(255,255,255,0.8);
    border-top: 2px solid;
    border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184,150,12,0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
    font-size: 0.82rem;
    line-height: 1.7;
    margin-top: 0.8rem;
    color: rgba(255,255,255,0.6);
}
.footer-logo {
    display: inline-flex;
    margin-bottom: 0.5rem;
}
.footer-logo .logo-img {
    width: 40px;
    filter: brightness(1.1);
}
.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1rem;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.7);
    transition: all 0.3s ease;
}
.footer-social a:hover {
    background: rgba(255,255,255,0.15);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.footer-nav h4 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}
.footer-nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    transition: color 0.3s ease;
}
.footer-nav a:hover { color: #fff; }
.footer-nav li {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
}
.footer-certifications {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 0;
    flex-wrap: wrap;
}
.footer-cert {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
}
.footer-cert svg {
    width: 14px;
    height: 14px;
    stroke: rgba(255,255,255,0.3);
}
.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
}

/* ─── WHATSAPP FLOAT ─── */
.preloader:not(.hidden) ~ .whatsapp-float {
    opacity: 0;
    pointer-events: none;
}
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.35);
    transition: all 0.3s var(--transition-smooth);
    animation: whatsappPulse 3s ease-in-out infinite;
}
@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 4px 20px rgba(37,211,102,0.35), 0 0 0 12px rgba(37,211,102,0.1); }
}
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
    animation: none;
}
.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: #fff;
    padding: 0.35rem 0.8rem;
    border-radius: 6px;
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ─── RESPONSIVE ─── */
/* ─── TABLET ─── */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .ben-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .about-story { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .about-panorama-content h2 { font-size: 2rem; }
    /* Fix background-attachment:fixed on touch/tablet devices */
    .about-panorama {
        background-attachment: scroll;
        background-size: cover;
        background-position: center;
    }
    /* Reduce hero zoom animation on mobile for performance */
    .hero-bg {
        animation-duration: 25s;
    }
}

/* ─── MOBILE NAV ─── */
@media (max-width: 820px) {
    .nav-toggle { display: inline-flex; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100dvh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: right 0.35s var(--transition-smooth);
        z-index: 5;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-links.active { right: 0; }
    .nav-links a {
        font-size: 1rem;
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--line);
        -webkit-tap-highlight-color: transparent;
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    .nav-links a::after { display: none; }
    .btn-nav {
        text-align: center !important;
        margin-top: 0.5rem;
        padding: 0.8rem 1.3rem !important;
        justify-content: center !important;
        min-height: 48px !important;
    }
    /* Hamburger animation */
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 4px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -4px);
    }
    .hero { min-height: 85dvh; }
    .hero-bg { inset: -10px; }
    .hero-split { padding: 6rem 0 4rem; }
    .hero-text h1 { font-size: 2.5rem; }
    .section-header h2 { font-size: 1.8rem; }
    .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
    .products-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
    .about-panorama { min-height: 40vh; }
    .trust-badges { gap: 0.8rem; }
    .trust-badge-item { font-size: 0.65rem; padding: 0.35rem 0.8rem; }
}

/* ─── MOBILE SMALL ─── */
@media (max-width: 600px) {
    .section { padding: 3rem 0; }
    .hero { min-height: 80dvh; }
    .hero-bg { inset: -5px; animation-duration: 30s; }
    .hero-particles .particle { display: none; }
    .hero-particles .particle:nth-child(-n+4) { display: block; }
    .hero-split { padding: 5rem 0 3rem; }
    .hero-text h1 { font-size: 2rem; line-height: 1.15; }
    .hero-text h1 { animation-delay: 0.1s; }
    .section-header h2::after { width: 40px; height: 2px; }
    .hero-subtitle { font-size: 0.88rem; margin-bottom: 1.8rem; max-width: 100%; }
    .hero-buttons { width: 100%; }
    .hero-buttons .btn-gold {
        padding: 0.85rem 1.8rem;
        font-size: 0.88rem;
        width: 100%;
        justify-content: center;
        min-height: 50px;
    }
    .section-header { margin-bottom: 2.5rem; }
    .section-header h2 { font-size: 1.5rem; }
    .section-header p { font-size: 0.88rem; }
    .ben-grid { grid-template-columns: 1fr; gap: 1rem; }
    .ben-card-v2 { padding: 1.5rem 1.2rem; }
    .process-steps { grid-template-columns: 1fr; gap: 1rem; }
    .p-step { padding: 1.5rem 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 1.5rem; text-align: center; }
    .footer-brand { text-align: center; }
    .footer-social { justify-content: center; }
    .footer-certifications { flex-direction: column; align-items: center; gap: 0.5rem; }
    .footer-bottom p { font-size: 0.68rem; padding: 0 1rem; }
    .about-counters { flex-direction: row; flex-wrap: wrap; }
    .about-counter { flex: 1 1 30%; min-width: 0; padding: 1rem 0.5rem; }
    .about-counter-divider { display: none; }
    .counter-num { font-size: 1.2rem; }
    .counter-label { font-size: 0.62rem; letter-spacing: 0.04em; }
    .counter-icon svg { width: 20px; height: 20px; }
    .about-panorama { min-height: 50vh; }
    .about-panorama-content h2 { font-size: 1.5rem; }
    .panorama-subtitle { font-size: 0.88rem; }
    .about-panorama-content { padding: 3rem 0 4rem; }
    .about-story { gap: 2rem; padding: 3rem 0; }
    .about-headline { font-size: 1.3rem; }
    .about-body { font-size: 0.88rem; }
    .about-mosaic { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
    .mosaic-label { font-size: 0.6rem; padding: 0.25rem 0.5rem; }
    .mosaic-label svg { width: 10px; height: 10px; }
    .products { padding: 3.5rem 0; }
    .products-grid { max-width: 100%; }
    .prod-card { border-radius: 12px; }
    .prod-header { height: 200px; }
    .prod-img { max-height: 150px; }
    .prod-img-garrafa { max-height: 170px; }
    .prod-info { padding: 1.2rem; }
    .prod-info h3 { font-size: 1.05rem; }
    .prod-info > p { font-size: 0.8rem; line-height: 1.6; }
    .prod-sub { font-size: 0.75rem; }
    .price-amount { font-size: 1.4rem; }
    .price-currency { font-size: 0.85rem; }
    .price-unit { font-size: 0.68rem; }
    .btn-prod {
        padding: 0.75rem 1rem;
        font-size: 0.82rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .prod-nutrients span { font-size: 0.65rem; padding: 0.18rem 0.5rem; }
    .prod-badge { font-size: 0.65rem; padding: 0.2rem 0.6rem; }
    .prod-tag { font-size: 0.6rem; }
    .benefits-hero-bg { min-height: 28vh; }
    .benefits-hero-content { padding: 3rem 0; }
    .benefits-hero-content h2 { font-size: 1.6rem; }
    .benefits-hero-content p { font-size: 0.85rem; }
    .ben-icon-wrap { width: 42px; height: 42px; border-radius: 10px; }
    .ben-card-v2 h3 { font-size: 1rem; }
    .ben-card-v2 p { font-size: 0.8rem; }
    .ben-stat { font-size: 0.7rem; }
    .process-visual { max-height: 180px; border-radius: 12px; }
    .p-num { font-size: 1.5rem; }
    .p-icon-svg { width: 50px; height: 50px; }
    .p-icon-svg svg { width: 24px; height: 24px; }
    .p-step h3 { font-size: 0.95rem; }
    .p-step p { font-size: 0.8rem; }
    .contact { padding: 3rem 0; }
    .contact-left h3 { font-size: 1.1rem; }
    .c-card { padding: 0.9rem; }
    .c-card strong { font-size: 0.8rem; }
    .c-card span { font-size: 0.75rem; }
    .form-group label { font-size: 0.72rem; }
    .form-group input,
    .form-group select,
    .form-group textarea { font-size: 16px; padding: 0.8rem 0; }
    /* Touch-friendly tap targets */
    .btn, a.btn, button { min-height: 48px; }
    .c-card { min-height: 48px; }
    .contact-form .btn { padding: 0.9rem 2rem; min-height: 50px; }
    .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
    .whatsapp-tooltip { display: none; }
    .trust-badges { flex-direction: column; align-items: center; }
    .trust-badge-item { font-size: 0.62rem; padding: 0.3rem 0.7rem; text-align: center; justify-content: center; }
    .container { width: min(calc(100% - 1.5rem), var(--container)); }
    .navbar { padding-top: max(0.6rem, env(safe-area-inset-top)); }
    .footer-bottom { padding-bottom: max(1.5rem, env(safe-area-inset-bottom)); }
}

/* ─── EXTRA SMALL PHONES ─── */
@media (max-width: 380px) {
    .hero-text h1 { font-size: 1.7rem; }
    .hero-subtitle { font-size: 0.82rem; }
    .section-header h2 { font-size: 1.35rem; }
    .about-panorama-content h2 { font-size: 1.3rem; }
    .about-headline { font-size: 1.15rem; }
    .about-counter { flex: 1 1 100%; }
    .about-counters { flex-direction: column; }
    .price-amount { font-size: 1.25rem; }
    .prod-info h3 { font-size: 1rem; }
    .ben-card-v2 { padding: 1.2rem 1rem; }
    .footer-social a { width: 40px; height: 40px; }
    .nav-links { width: 260px; padding: 4.5rem 1.2rem 2rem; }
    .container { width: min(calc(100% - 1rem), var(--container)); }
}

/* ─── LANDSCAPE MOBILE ─── */
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: 100dvh; }
    .hero-split { padding: 4rem 0 2rem; }
    .hero-text h1 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 0.82rem; margin-bottom: 1rem; }
    .about-panorama { min-height: 60vh; }
    .preloader-logo-img { width: 60px; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}

/* ─── NAVBAR SOLID (product pages) ─── */
.navbar-solid {
    background: #fff;
    border-bottom-color: var(--line);
}
