@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

:root {
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --color-brand: #2db84b;
    --color-brand-dim: #1a8f37;
    --color-celeste: #5bc0eb;

    --hero-bg-light: #e8eae4;
    --hero-bg-dark: #dde0d8;
    --about-bg-light: #eaf5ea;
    --about-bg-dark: #d4ebd3;
    --seal-bg-light: var(--bg-white);
    --seal-bg-dark: #eef6f0;
    --contact-bg: #eef3f6;
    --product-render-light: #f0f6f2;
    --product-render-dark: #eef5ef;

    --bg-white: #ffffff;
    --bg-off: #f4f4f4;
    --bg-light: #f8f9fa;
    --bg-mist: #ebebe7;
    --bg-dark: #1a1a1a;
    --bg-deep: #111111;

    --text-main: #228b38;
    --text-body: #3d3d3d;
    --text-muted: #707070;
    --text-light: #999999;
    --color-white: #ffffff;

    --gray-100: #f4f4f4;
    --gray-200: #e8e8e5;
    --gray-300: #d1d1cc;
    --gray-400: #a8a8a3;
    --gray-500: #6b6b66;
    --gray-600: #3d3d3a;
    --gray-700: #1a1a18;

    --glass-bg: rgba(255,255,255,0.92);
    --glass-border: rgba(0, 47, 108, 0.06);
    --card-bg: #ffffff;
    --card-border: rgba(0, 47, 108, 0.08);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.08);

    --nav-bg: rgba(255,255,255,0.95);
    --nav-border: rgba(0, 47, 108, 0.05);
    --section-alt-bg: var(--bg-off);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-full: 100px;

    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}



/* ═══════════════════════════════════════════════════
   DARK MODE — Component-Level Overrides
   ═══════════════════════════════════════════════════ */

/* ── Product Photography: prevent glare ── */


/* ── Hero Section ── */









/* ── Ghost Button ── */



/* ── Seal Section ── */


/* ── Showcase Cards (Colección) ── */



/* ── Showcase Section ── */



/* ── Carousel Nav Buttons ── */


/* ── Product Category Label ── */


/* ── Contact Section ── */







/* ── About Image Border ── */


/* ── Glow Cards (Sellos) ── */




/* ── Blog Cards ── */



/* ── Bobinas Strip ── */



/* ── Flag Cards (Presencia Global) ── */





/* ── Footer (subtle adjustments) ── */


/* ── Mobile Nav Menu ── */
@media (max-width: 768px) {
    
}

/* ── Article/Blog Page backgrounds ── */


/* ── Env Banner overlay softened ── */


* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background var(--transition), color var(--transition);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-main);
    transition: color var(--transition);
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding { padding: 6rem 0; }

/* ========== LOADER ========== */
.loader-wrapper {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: #111111;
    display: flex; justify-content: center; align-items: center;
    z-index: 99999;
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), visibility 0.8s;
}
.loader-wrapper.fade-out { opacity: 0; visibility: hidden; }
.loader-content { text-align: center; display: flex; flex-direction: column; align-items: center; }
.loader-logo { height: 80px; width: auto; margin-bottom: 30px; animation: loaderPulse 2.5s ease-in-out infinite; filter: none; }
.loader-progress { width: 150px; height: 2px; background: rgba(255,255,255,0.1); position: relative; overflow: hidden; border-radius: 2px; }
.loader-progress::after {
    content: ''; position: absolute; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.5));
    animation: loaderProgress 2s cubic-bezier(0.16,1,0.3,1) infinite;
}
@keyframes loaderPulse { 0%,100%{opacity:0.4;transform:scale(0.95)} 50%{opacity:1;transform:scale(1)} }
@keyframes loaderProgress { 0%{left:-100%} 100%{left:100%} }

/* ========== NAV ========== */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
    background: transparent;
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    padding: 0.75rem 0;
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--nav-border);
    box-shadow: var(--shadow-soft);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { z-index: 1001; display: flex; align-items: center; }
.logo-img { height: 40px; width: auto; transition: all 0.3s ease; filter: none; }
.navbar.scrolled .logo-img { filter: none; }

.nav-links { display: flex; gap: 1.2rem; align-items: center; margin: 0 auto; }
.nav-links a {
    color: var(--text-main);
    font-weight: 600; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 1px;
    position: relative; padding: 0.5rem 0;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--color-brand); }
.nav-links a:hover,
.nav-links a.active { color: var(--color-brand); }
.nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
    background: var(--gray-400);
    transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-theme-toggle a::after { display: none; }
#theme-toggle { font-size: 1.2rem; padding: 0.25rem; }
.hamburger { display: none; font-size: 1.5rem; color: #fff; cursor: pointer; z-index: 1001; }
.navbar.scrolled .hamburger { color: var(--text-main); }

/* Blog Page Navbar Overrides (Always Light/Scrolled Style) */
.blog-page .navbar {
    background: var(--nav-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--nav-border);
    box-shadow: var(--shadow-soft);
}
.blog-page .navbar .logo-img {
    filter: none;
}

.blog-page .navbar .nav-links a {
    color: var(--text-muted);
}
.blog-page .navbar .nav-links a:hover,
.blog-page .navbar .nav-links a.active {
    color: var(--text-main);
}
.blog-page .navbar .nav-links a::after {
    background: var(--text-main);
}
.blog-page .navbar .hamburger {
    color: var(--text-main);
}

/* ========== HERO ========== */
.hero {
    position: relative; height: 100vh; min-height: 700px;
    display: flex; align-items: center; overflow: hidden;
    background:
        linear-gradient(90deg,
            rgba(91,192,235,0.35) 0%,
            rgba(91,192,235,0.26) 15%,
            rgba(91,192,235,0.15) 30%,
            rgba(91,192,235,0.05) 42%,
            rgba(45,184,75,0.05) 48%,
            rgba(45,184,75,0.15) 58%,
            rgba(45,184,75,0.26) 75%,
            rgba(45,184,75,0.35) 90%,
            rgba(45,184,75,0.30) 100%
        ),
        linear-gradient(180deg, var(--hero-bg-light) 0%, var(--hero-bg-dark) 100%);
}
.neon-layer { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.neon-wrap {
    position: absolute; inset: 0;
    animation: neonPulse 4s ease-in-out infinite alternate;
    pointer-events: none; overflow: hidden;
}
.neon-ring {
    position: absolute; border-radius: 50%;
    border: 2px solid; pointer-events: none;
    transition: transform 0.15s ease-out;
}
.neon-ring1 {
    width: 700px; height: 700px; top: -15%; right: -10%;
    border-color: rgba(91,192,235,0.35);
    box-shadow: 0 0 120px rgba(91,192,235,0.15), inset 0 0 120px rgba(91,192,235,0.06);
}
.neon-ring2 {
    width: 500px; height: 500px; bottom: -20%; left: -5%;
    border-color: rgba(45,184,75,0.30);
    box-shadow: 0 0 100px rgba(45,184,75,0.12), inset 0 0 100px rgba(45,184,75,0.05);
    animation-delay: 2s;
}
.neon-ring3 {
    width: 350px; height: 350px; top: 15%; left: 10%;
    border-color: rgba(91,192,235,0.22);
    box-shadow: 0 0 80px rgba(91,192,235,0.10);
    animation-delay: 1s;
}
.neon-ring4 {
    width: 250px; height: 250px; bottom: 20%; right: 15%;
    border-color: rgba(45,184,75,0.25);
    box-shadow: 0 0 80px rgba(45,184,75,0.10);
    animation-delay: 3s;
}
@keyframes neonPulse {
    0% { opacity: 0.4; transform: scale(0.9); }
    100% { opacity: 1; transform: scale(1.1); }
}
.hero-3d-canvas {
    position: absolute; top: 0; right: 0; width: 55%; height: 100%;
    z-index: 5; cursor: grab;
    touch-action: pan-y;
}
.hero-3d-canvas:active { cursor: grabbing; }
.hero-content {
    position: relative; z-index: 10; width: 100%;
    display: flex; align-items: center; height: 100%;
}
.hero-text { max-width: 520px; padding-top: 10vh; }
.hero-spacer { flex: 1; }
.hero-kicker {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-heading); font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--color-brand); margin-bottom: 2rem;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 800; line-height: 0.92; letter-spacing: -0.04em;
    color: var(--text-main); margin-bottom: 1.5rem;
}
.hero-title-accent {
    font-weight: 400; font-style: italic;
    color: var(--color-brand); letter-spacing: 0;
}
.hero-subtitle {
    font-family: var(--font-body); font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.7; color: var(--text-body);
    font-weight: 400; margin-bottom: 3rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary-solid {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 1rem 2.2rem;
    background: var(--color-brand); color: #ffffff;
    font-family: var(--font-heading); font-size: 0.85rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    border: none; border-radius: var(--radius-full);
    cursor: pointer; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary-solid:hover {
    transform: translateY(-2px);
    background: var(--color-brand-dim);
    box-shadow: 0 8px 30px rgba(0, 94, 184, 0.25);
}
.btn-ghost {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2.2rem;
    color: var(--text-main);
    font-family: var(--font-heading); font-size: 0.85rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    border: 2px solid var(--text-main);
    border-radius: var(--radius-full);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-ghost:hover {
    background: var(--text-main);
    color: #ffffff;
    transform: translateY(-2px);
}
.scroll-indicator {
    position: absolute; bottom: 4rem; left: 50%; transform: translateX(-50%);
    z-index: 10;
}
.scroll-line {
    display: block; width: 1px; height: 60px;
    background: rgba(0,0,0,0.15); position: relative; overflow: hidden;
}
.scroll-line::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 50%;
    background: var(--color-brand);
    animation: scrollLineDrop 2s infinite cubic-bezier(0.645,0.045,0.355,1);
}
@keyframes scrollLineDrop { 0%{transform:translateY(-100%)} 100%{transform:translateY(200%)} }

/* ========== SECTION HEADERS ========== */
.section-kicker {
    font-family: var(--font-heading);
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
    color: var(--text-muted); margin-bottom: 1rem; display: block;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
    color: var(--text-main); margin-bottom: 1.5rem;
}
.text-accent {
    font-weight: 400; font-style: italic;
    color: var(--text-light); letter-spacing: 0;
}
.section-subtitle {
    font-family: var(--font-body); font-size: 1.1rem; line-height: 1.7;
    color: var(--text-muted); max-width: 600px;
}
.section-header { max-width: 800px; margin-bottom: 4rem; }

/* ========== ABOUT ========== */
.about { background: linear-gradient(135deg, var(--about-bg-light) 0%, var(--about-bg-dark) 100%); padding: 8vw 0; }
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4vw; align-items: center; }
.about-paragraph {
    font-family: var(--font-body); font-size: 1.2rem; line-height: 1.8;
    color: var(--text-body); margin-bottom: 3rem;
}
.about-features { display: flex; flex-direction: column; gap: 1.5rem; }
.about-feature {
    display: flex; align-items: center; gap: 1rem;
    padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-200);
    font-family: var(--font-heading); font-weight: 500; color: var(--text-main);
}
.feature-num {
    font-family: var(--font-heading); font-size: 1.2rem; font-weight: 800;
    color: var(--color-brand);
}
.about-image { position: relative; padding: 2rem; }
.about-image img { width: 100%; height: auto; object-fit: cover; position: relative; z-index: 2; border-radius: 100px 20px 100px 20px; }
.about-image-border {
    position: absolute; top: 0; right: 0; bottom: 3rem; left: 3rem;
    border: 1px solid var(--gray-200); border-radius: 100px 20px 100px 20px; z-index: 1;
}
.about-video {
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-image:hover .about-video {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 35px 70px rgba(0,0,0,0.25);
}

/* ========== SEAL ========== */
.seal-section {
    padding: 8vw 0; position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 0% 5%, rgba(91,192,235,0.35) 0%, rgba(255,255,255,0.3) 40%, transparent 55%),
        radial-gradient(ellipse 65% 50% at 100% 92%, rgba(91,192,235,0.30) 0%, rgba(255,255,255,0.3) 40%, transparent 55%),
        linear-gradient(135deg, var(--about-bg-light) 0%, var(--about-bg-dark) 100%) !important;
}
.seal-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
    margin-top: 3rem;
}
.glow-card {
    position: relative;
    background: var(--bg-white);
    border: none;
    border-radius: 40px 140px 40px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    overflow: hidden; 
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.glow-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.glow-card-top {
    height: 220px;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.glow-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.glow-card-icon-container {
    position: absolute;
    bottom: -35px;
    right: 35px;
    background: var(--bg-white);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.glow-card-icon-container i {
    font-size: 3rem;
    color: var(--color-brand);
}
.glow-card.color-celeste .glow-card-icon-container i { color: var(--color-celeste); }
.glow-card.color-brand-dim .glow-card-icon-container i { color: var(--color-brand-dim); }

.glow-card-bottom {
    padding: 3.5rem 2.5rem 3rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}
.glow-card.color-brand .glow-card-bottom { background: var(--color-brand); }
.glow-card.color-celeste .glow-card-bottom { background: var(--color-celeste); }
.glow-card.color-brand-dim .glow-card-bottom { background: var(--color-brand-dim); }

.watermark-icon {
    position: absolute;
    bottom: -15%;
    right: -10%;
    font-size: 15rem;
    color: rgba(255,255,255,0.12);
    pointer-events: none;
    z-index: -1;
}

.glow-card h3 {
    font-family: var(--font-heading); font-size: 1.5rem;
    color: #ffffff; margin-bottom: 1rem;
    position: relative; z-index: 2;
}
.glow-card p {
    font-family: var(--font-body); font-size: 1.05rem;
    color: rgba(255,255,255,0.9); line-height: 1.6;
    position: relative; z-index: 2;
}

/* ========== BLOG ARTICLES PAGE ========== */
body.blog-page {
    background: linear-gradient(135deg, var(--about-bg-light) 0%, var(--about-bg-dark) 100%);
    background-attachment: fixed;
}
.article-header {
    padding: 8rem 0 3rem; position: relative; background-size: cover; background-position: center;
}
.env-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(0deg, rgba(11,56,21,0.9) 0%, rgba(45,184,75,0.6) 100%);
    z-index: 1;
}

/* ========== ENV BANNER ========== */
.env-banner {
    padding: 8vw 0; position: relative; background-size: cover; background-position: center;
}
.env-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; text-align: center; }
.env-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 800; color: #fff; margin-bottom: 1.5rem;
}
.env-desc {
    font-family: var(--font-body); font-size: 1.15rem;
    color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; line-height: 1.8;
}
.btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2.2rem;
    border: 2px solid #ffffff;
    border-radius: var(--radius-full);
    color: #ffffff; font-family: var(--font-heading); font-size: 0.85rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-outline:hover {
    background: var(--bg-white);
    color: var(--color-brand-dim);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ========== SHOWCASE CAROUSEL (Colección) ========== */
.showcase-section {
    padding: 7rem 0;
    background: 
        radial-gradient(circle at 15% 50%, rgba(45, 184, 75, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(91, 192, 235, 0.15) 0%, transparent 50%),
        linear-gradient(135deg, var(--seal-bg-light) 0%, var(--seal-bg-dark) 100%);
    position: relative;
    overflow: hidden;
}
.showcase-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.3)" stroke-width="0.5" fill="none"/></svg>') repeat;
    background-size: 300px 300px;
    opacity: 0.5;
    pointer-events: none;
}

.products-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 3.75rem;
}

.products-heading .section-title {
    margin-bottom: 0;
}

.products-heading p {
    margin: 0 0 0.55rem;
    color: var(--text-muted);
    font-size: 1.03rem;
    line-height: 1.75;
}

.products-carousel-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.products-carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 1.5rem 0.5rem;
}

.products-carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: max-content;
}

.products-carousel-track .showcase-item {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.carousel-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.carousel-nav-btn:hover {
    background: var(--color-brand);
    color: var(--color-white);
    border-color: var(--color-brand);
    transform: scale(1.05);
    box-shadow: var(--shadow-brand);
}

.carousel-nav-btn:active {
    transform: scale(0.95);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--color-brand);
}

.showcase-item {
    position: relative;
    display: grid;
    grid-template-columns: 210px minmax(0, 600px);
    justify-content: center;
    align-items: center;
    gap: 1rem 3rem;
    min-height: auto;
    background: var(--bg-white);
    border-radius: 32px;
    padding: 2.5rem 2.5rem 2rem;
    text-align: left;
    border: none;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, background 0.5s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 26px 58px rgba(12, 64, 34, 0.12);
    border-color: rgba(45, 184, 75, 0.2);
}

.showcase-item-featured {
    border-color: rgba(25, 154, 71, 0.24);
    box-shadow: 0 18px 48px rgba(25, 154, 71, 0.1);
}

.spotlight {
    position: absolute;
    top: -90px;
    left: -70px;
    width: 330px;
    height: 330px;
    background: radial-gradient(circle, rgba(57, 211, 83, 0.14) 0%, transparent 68%);
    pointer-events: none;
}

.product-category {
    display: block;
    color: #000000;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    grid-column: 1 / -1;
}

.product-render {
    position: relative;
    z-index: 1;
    width: 210px;
    height: 210px;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    margin: 0 auto;
    padding: 1.25rem;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--product-render-light) 0%, var(--product-render-dark) 100%);
    box-shadow: inset 0 2px 10px rgba(12, 64, 34, 0.04);
    filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.08));
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-render-wide {
    width: 210px;
    height: 210px;
}

.showcase-item:hover .product-render {
    transform: scale(1.035) rotate(1deg);
}

.showcase-info h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #000000;
    color: var(--text-main);
}

.showcase-info p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.product-points {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.product-points li {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-points li::before {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-brand);
}

@media (max-width: 1180px) and (min-width: 993px) {
    .showcase-item {
        grid-template-columns: 170px minmax(0, 1fr);
        gap: 1.8rem;
        text-align: left;
        min-height: 0;
        padding: 1.25rem 1.35rem;
    }
    .product-render {
        height: 190px;
        margin: 0;
    }
    .product-points {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .products-carousel-track .showcase-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.25rem 1.25rem 1.75rem;
    }
    .product-category {
        text-align: center;
        grid-column: 1 / -1;
    }
    .product-points {
        justify-content: center;
    }
    .showcase-section {
        padding: 5rem 0;
    }
    .products-heading p {
        font-size: 0.96rem;
    }
}

/* ========== CONTACT ========== */
.contact { 
    background: var(--contact-bg); 
    border-radius: 50% 50% 0 0 / 6vw 6vw 0 0;
    margin-top: -3vw;
    padding: 10vw 0 6vw;
    position: relative;
    z-index: 10;
}
.contact .section-title { color: #005fae; } /* Softys Blue title */

.contact-grid { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 3rem; 
    max-width: 800px;
    margin: 0 auto;
}

.contact-info { 
    display: flex; 
    flex-direction: row; 
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 3rem; 
    padding-top: 1rem; 
}
.contact-block { }
.contact-label {
    font-family: var(--font-heading); font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-muted); margin-bottom: 0.5rem; display: block;
}
.contact-block p {
    font-family: var(--font-body); font-size: 1.1rem;
    color: var(--text-main); font-weight: 500;
}

.contact-form { 
    width: 100%;
    display: flex; flex-direction: column; gap: 1.25rem; 
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { position: relative; }
.form-group input,
.form-group textarea {
    width: 100%; 
    background: var(--bg-white); 
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 1.5rem 1.25rem 0.5rem; 
    color: var(--text-main);
    font-family: var(--font-body); font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.form-group textarea {
    resize: vertical;
    min-height: 140px;
}
.form-group input:focus,
.form-group textarea:focus { 
    outline: none; 
    border-color: #005fae; 
    box-shadow: 0 4px 15px rgba(0,95,174,0.1);
}
.form-group label {
    position: absolute; top: 1.1rem; left: 1.25rem;
    color: var(--text-light); font-family: var(--font-body);
    font-size: 1rem; pointer-events: none;
    transition: all 0.3s ease;
}
.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: 0.4rem; font-size: 0.75rem;
    color: var(--text-muted); text-transform: none; letter-spacing: normal;
}
.contact-form button[type="submit"] {
    background: #005fae;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.contact-form button[type="submit"]:hover {
    background: #004c8c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,95,174,0.3);
}
.btn-primary-solid.full-width { width: auto; justify-content: center; }

/* ========== BLOG ========== */
.blog-section { background: linear-gradient(135deg, var(--about-bg-light) 0%, var(--about-bg-dark) 100%); padding: 8vw 0; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card {
    background: var(--color-brand); border: none;
    border-radius: 100px 20px 100px 20px; overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    display: flex; flex-direction: column;
}
.blog-card.color-celeste { background: var(--color-celeste); }
.blog-card.color-brand-dim { background: var(--color-brand-dim); }

.blog-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-hover);
}
.blog-card-img { width: 100%; height: 220px; overflow: hidden; background: var(--bg-off); flex-shrink: 0; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 2rem; display: flex; flex-direction: column; flex-grow: 1; }
.blog-card-meta {
    display: flex; gap: 1rem; margin-bottom: 0.75rem;
    font-family: var(--font-body); font-size: 0.75rem;
    color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1px;
}
.blog-card-title {
    font-family: var(--font-heading); font-size: 1.3rem;
    font-weight: 700; line-height: 1.3; margin-bottom: 1rem;
}
.blog-card-title a { color: #ffffff; text-decoration: none; }
.blog-card-title a:hover { color: rgba(255,255,255,0.8); }
.blog-card-excerpt {
    font-family: var(--font-body); font-size: 0.95rem;
    color: rgba(255,255,255,0.9); line-height: 1.6; margin-bottom: 1.5rem; flex-grow: 1;
}
.blog-link {
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    background: var(--bg-white);
    border-radius: 100px;
    font-family: var(--font-heading); font-size: 0.8rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    color: var(--color-brand); transition: all 0.3s ease;
    text-decoration: none;
}
.blog-card.color-celeste .blog-link { color: var(--color-celeste); }
.blog-card.color-brand-dim .blog-link { color: var(--color-brand-dim); }

.blog-link:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }


/* ========== FOOTER ========== */
﻿.footer-premium {
    background: linear-gradient(180deg, #fafafa 0%, #f0f0eb 100%);
    position: relative;
    width: 100%;
    min-width: 100%;
    overflow: visible;
    border-top: 1px solid rgba(45, 184, 75, 0.15);
}

.footer-wave-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-brand), transparent);
    opacity: 0.6;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Brand Column */
.footer-brand .footer-logo {
    height: 72px;
    margin-bottom: 1rem;
    filter: none;
    -webkit-filter: none;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 280px;
}

.footer-badges .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--color-brand);
    font-weight: 500;
}

.footer-badges .badge i {
    font-size: 0.9rem;
}

/* Common Heading Style */
.footer-heading {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--color-brand);
    border-radius: 2px;
}

/* Navigation Column */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.3rem 1rem;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.25s ease;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--color-brand);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.25s ease;
}

.footer-links a:hover {
    color: var(--color-brand);
    transform: translateX(6px);
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Column */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 1rem;
}

.footer-contact-list a,
.footer-location {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-list a i {
    color: var(--color-brand);
    font-size: 1.1rem;
}

.footer-contact-list a:hover {
    color: var(--color-brand);
}

.footer-location {
    font-style: normal;
}

/* Social Column */
.footer-social-links {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.social-icon:hover {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(45, 184, 75, 0.25);
}

/* Newsletter */
.newsletter-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    background: white;
    transition: all 0.25s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(45, 184, 75, 0.1);
}

.newsletter-btn {
    padding: 0.75rem;
    background: var(--color-brand);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.newsletter-btn:hover {
    background: #259e3f;
    transform: scale(1.05);
}

/* Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.dev-credit {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

.dev-credit a {
    color: var(--color-brand);
    text-decoration: none;
    font-weight: 500;
}

.dev-credit a:hover {
    text-decoration: underline;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 600px) {
    .footer-container {
        padding: 2rem 1.25rem 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }
    .footer-brand .footer-logo {
        margin: 0 auto 1rem;
    }
    .footer-desc {
        max-width: 100%;
        text-align: center;
        margin: 0 auto 1.5rem;
    }
    .footer-badges {
        justify-content: center;
        display: flex;
    }
    .footer-heading {
        font-size: 1rem;
        text-align: center;
        display: block;
    }
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
    .footer-links a {
        justify-content: center;
        display: flex;
    }
    .footer-contact-list {
        text-align: center;
    }
    .footer-contact-list li {
        display: flex;
        justify-content: center;
    }
    .footer-contact-list a {
        justify-content: center;
    }
    .footer-location {
        justify-content: center;
        display: flex;
    }
    .footer-social-links {
        justify-content: center;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-btn {
        width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

.management-links-hidden {
    margin-top: 0.5rem; display: flex; justify-content: center; flex-wrap: wrap;
    gap: 1.5rem; opacity: 0.15; transition: opacity 0.4s ease;
}
.management-links-hidden:hover { opacity: 0.6; }
.management-links-hidden a {
    font-size: 0.7rem; color: rgba(255,255,255,0.5);
    font-family: var(--font-body); text-transform: uppercase; letter-spacing: 1px;
}
.back-to-top {
    position: absolute; right: 2rem; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px;
    border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); transition: all 0.3s ease;
}
.back-to-top:hover { background: var(--color-brand); border-color: var(--color-brand); color: #fff; }
.map-section { display: block; width: 100%; line-height: 0; }

/* ========== SCROLL REVEAL ========== */
.fade-up {
    opacity: 0; transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.22,1,0.36,1),
                transform 1.2s cubic-bezier(0.22,1,0.36,1);
}
.fade-up.revealed { opacity: 1; transform: translateY(0); }
.fade-right {
    opacity: 0; transform: translateX(-40px);
    transition: opacity 1.2s cubic-bezier(0.22,1,0.36,1),
                transform 1.2s cubic-bezier(0.22,1,0.36,1);
}
.fade-right.revealed { opacity: 1; transform: translateX(0); }
.fade-left {
    opacity: 0; transform: translateX(40px);
    transition: opacity 1.2s cubic-bezier(0.22,1,0.36,1),
                transform 1.2s cubic-bezier(0.22,1,0.36,1);
}
.fade-left.revealed { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

.section-bg-green-light {
    background: linear-gradient(to bottom, #cce5d5 0%, #eaf5ea 100%);
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-3d-canvas { width: 45%; }
}

@media (max-width: 992px) {
    .seal-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    /* ── Fix horizontal overflow globally ── */
    body {
        overflow-x: hidden;
    }

    /* ── Navigation: Hamburger Menu ── */
    .hamburger { display: block; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.16,1,0.3,1);
        z-index: 9999;
        gap: 1.5rem;
    }
    .nav-links.active {
        right: 0;
    }
    .nav-links a {
        font-size: 1.2rem;
        letter-spacing: 2px;
        color: var(--text-muted);
    }

    /* ── Hide nav CTA button on mobile (already have Hero CTA) ── */
    .nav-actions .btn-primary-solid {
        display: none;
    }

    /* ── Navbar background ── */
    .navbar {
        padding: 1rem 0;
        background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, transparent 100%);
    }
    .navbar.scrolled { background: var(--nav-bg); }
    .logo-img { height: 30px; }

    /* ── Hero Section ── */
    .hero { min-height: 100vh; height: auto; }
    .hero-text { padding-top: 20vh; }
    .hero-3d-canvas { width: 100%; height: 50%; top: auto; bottom: 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary-solid,
    .hero-actions .btn-ghost { width: 100%; justify-content: center; }
    .scroll-indicator { display: none; }

    /* ── Section spacing ── */
    .section-padding { padding: 4rem 0; }
    .section-title { font-size: clamp(2rem, 7vw, 2.8rem); }
    .section-kicker { font-size: 0.7rem; }

    /* ── About Section ── */
    .about { padding: 12vw 0; }
    .about-paragraph { font-size: 1.05rem; }
    .about-image { padding: 0; }
    .about-image-border { display: none; }

    /* ── Seal Section ── */
    .seal-section { padding: 12vw 0; }
    .seal-grid { grid-template-columns: 1fr; }
    .seal-card { padding: 2.5rem 2rem; }
    .glow-card { border-radius: 24px 12px 24px 12px; }

    /* ── Showcase / Colección ── */
    .products-heading { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
    .showcase-section { padding: 5rem 0; }
    .showcase-info { padding: 1.5rem 0 0; }
    .prev-btn, .next-btn { 
        display: flex; 
        position: absolute; 
        top: 40%; 
        transform: translateY(-50%); 
        width: 36px; 
        height: 36px; 
        z-index: 20; 
        background: var(--bg-white);
        opacity: 0.85;
        font-size: 1rem;
    }
    .prev-btn { left: -5px; }
    .next-btn { right: -5px; }
    .carousel-nav-btn:hover { transform: translateY(-50%) scale(1.05); }
    .carousel-nav-btn:active { transform: translateY(-50%) scale(0.95); }
    .products-carousel-track .showcase-item {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .product-render {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }
    .product-render-wide {
        width: 180px;
        height: 180px;
    }
    .showcase-info h3 {
        font-size: 1.6rem;
    }
    .showcase-info p {
        font-size: 0.95rem;
    }
    .product-points {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    .product-points li {
        font-size: 0.9rem;
        justify-content: center;
    }
    .product-category {
        text-align: center;
        grid-column: 1 / -1;
    }
    .products-heading p {
        font-size: 0.96rem;
    }

    /* ── Presencia Global: Flags ── */
    .countries-flag-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        margin: 2rem auto 3rem;
    }
    .flag-card {
        padding: 1.5rem 1.25rem;
        flex-direction: row;
        gap: 1.25rem;
    }
    .flag-img {
        height: 48px;
        width: 72px;
        object-fit: cover;
    }
    .flag-name {
        font-size: 1rem;
    }

    /* ── Bobinas Strip ── */
    .bobinas-strip {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        margin: 2rem auto 0;
    }
    .bobinas-cta {
        justify-content: center;
        width: 100%;
    }

    /* ── Blog Section ── */
    .blog-section { padding: 12vw 0; }
    .blog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .blog-card { border-radius: 24px 12px 24px 12px; }
    .blog-card-img { height: 180px; }

    /* ── Contact Section ── */
    .contact { padding: 14vw 0 8vw; }
    .contact-grid { max-width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* ── Footer ── */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .back-to-top { right: 1rem; width: 38px; height: 38px; }

    /* ── Env Banner ── */
    .env-banner { padding: 12vw 0; }
    .env-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
    .env-desc { font-size: 1rem; }
}

/* ========== ARTICLE BODY TYPOGRAPHY ========== */
.article-body h2 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.article-body p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 1.85rem;
}
.article-body a {
    color: var(--color-brand);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}
.article-body a:hover {
    border-bottom-color: var(--color-brand);
}
.article-body ul, .article-body ol {
    margin: 1.25rem 0 2rem 1.5rem;
    list-style: disc;
}
.article-body ol { list-style: decimal; }
.article-body li {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 0.6rem;
    padding-left: 0.5rem;
}
.article-body li strong {
    color: var(--text-main);
}
.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-family: var(--font-body);
    font-size: 0.95rem;
}
.article-body table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-main);
    border-bottom: 2px solid var(--gray-200);
    background: var(--bg-off);
}
.article-body table td {
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text-body);
}
.article-body blockquote {
    border-left: 3px solid var(--color-brand);
    padding: 1.25rem 1.5rem;
    margin: 2rem 0;
    background: var(--bg-off);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-muted);
}
.article-body > p:first-of-type {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-main);
}

.article-body hr {
    border: none;
    height: 1px;
    background: var(--gray-200);
    margin: 3rem 0;
}


/* ========== ARTICLE HERO (PORTADA COVER) ========== */
.article-hero {
    position: relative;
    padding: 15rem 0 7rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}
.article-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}
.article-hero .container {
    position: relative;
    z-index: 2;
}
.article-hero h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.article-hero .back-link {
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}
.article-hero .back-link:hover {
    color: #ffffff !important;
}
.article-hero .container > span {
    color: var(--color-brand) !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.article-hero .container > div {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* --- EXPORT SECTION: Flags Grid (Estilo Editorial Premium) --- */
.countries-flag-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.75rem;
    margin: 4rem auto 5rem;
    max-width: 1200px;
    align-items: stretch;
    justify-content: center;
}

.flag-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    position: relative;
    transition: transform 0.3s ease;
}

.flag-card:hover {
    transform: translateY(-5px);
}

.flag-img {
    height: 64px;
    width: 96px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
    filter: saturate(1.08) contrast(1.04);
}

.flag-card:hover .flag-img {
    transform: scale(1.14) rotate(1deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.flag-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #000000;
    letter-spacing: 0.03em;
    font-family: var(--font-primary), sans-serif;
}

.flag-origin-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(91, 192, 235, 0.12);
    border: 1px solid rgba(91, 192, 235, 0.25);
    color: #0b729f;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 30px;
    letter-spacing: 0.8px;
}

/* Premium Bobinas Strip Style */
.bobinas-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    align-items: start;
    gap: 2.2rem;
    padding: 3rem 0;
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 4rem auto 0;
    max-width: 1200px;
    position: relative;
}

.bobinas-strip-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.bobinas-icon {
    font-size: 1.8rem;
    color: var(--color-brand);
    background: rgba(45, 184, 75, 0.08);
    padding: 10px;
    border-radius: 16px;
    flex-shrink: 0;
}

.bobinas-strip-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.3rem;
}

.bobinas-strip-item span {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.bobinas-cta {
    display: inline-flex;
    align-items: center;
    align-self: center;
    gap: 0.6rem;
    padding: 1.1rem 2rem;
    background: var(--color-brand);
    color: var(--color-white) !important;
    font-weight: 700;
    font-size: 0.94rem;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(45, 184, 75, 0.25);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bobinas-cta:hover {
    background: #25a23f;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(45, 184, 75, 0.35);
}

@media (max-width: 1200px) {
    .bobinas-strip {
        grid-template-columns: 1fr;
        gap: 1.8rem;
        padding: 2.5rem;
    }
    .bobinas-cta {
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 992px) {
    .countries-flag-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 580px) {
    .countries-flag-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .flag-card {
        padding: 1rem 0;
    }
    .flag-img {
        height: 38px;
        width: 57px;
        object-fit: cover;
    }
    .flag-name {
        font-size: 0.85rem;
    }
}


/* ========== WHATSAPP BUTTON ========== */
.btn-hablemos-float { position: fixed; width: 60px; height: 60px; bottom: 30px; right: 30px; background-color: #25d366; color: #FFF; border-radius: 50px; text-align: center; font-size: 30px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4); z-index: 99999; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.btn-hablemos-float:hover { transform: scale(1.1); color: #FFF; box-shadow: 0 6px 14px rgba(37, 211, 102, 0.6); }
@media (max-width: 768px) { .btn-hablemos-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 26px; } }
@media (max-width: 768px) { .whatsapp-float { width: 50px; height: 50px; bottom: 20px; right: 20px; font-size: 26px; } }
