/* AgroTech Digital - Premium Landing Page
 * Design System: Apple-inspired, clean & minimal
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --verde-principal: #007A20;
    --verde-claro: #34C759;
    --verde-accent: #30D158;
    --naranja: #FF9F0A;
    --negro: #000000;
    --gris-950: #0a0a0a;
    --gris-900: #111111;
    --gris-800: #1d1d1f;
    --gris-600: #424245;
    --gris-400: #86868b;
    --gris-200: #d2d2d7;
    --texto-claro: #f5f5f7;
    --card-blur: 24px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition-smooth: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
    background: var(--negro);
    color: var(--texto-claro);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 80px);
}

/* ══════ NAVBAR ══════ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    max-width: 1280px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

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

.nav-menu a {
    color: var(--gris-200);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s;
    letter-spacing: -0.01em;
}

.nav-menu a:hover {
    color: #fff;
}

.btn-primary-nav {
    padding: 9px 20px;
    background: var(--verde-claro);
    border-radius: 980px;
    color: #000 !important;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.btn-primary-nav:hover {
    background: var(--verde-accent);
    transform: scale(1.02);
}

.btn-historicos-nav {
    padding: 9px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 980px;
    color: #fff !important;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.btn-historicos-nav:hover {
    border-color: var(--verde-claro);
    background: rgba(52, 199, 89, 0.12);
    color: var(--verde-claro) !important;
    transform: scale(1.02);
}

/* ══════ HERO ══════ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background: var(--negro);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(to top, var(--negro) 0%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

/* ══════ CONNECTOR LINES ══════ */
.hero-connectors {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.connector-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.35);
    stroke-width: 1.2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 2s ease-out forwards;
}

.connector-line.line-left {
    stroke: url(#lineGradLeft);
    stroke-width: 1.2;
    animation-delay: 0.8s;
}

.connector-line.line-right {
    stroke: url(#lineGradRight);
    stroke-width: 1.2;
    animation-delay: 1s;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.connector-dot {
    fill: rgba(255, 255, 255, 0.7);
    opacity: 0;
    animation: dotAppear 0.5s ease-out forwards;
    animation-delay: 0.6s;
}

.connector-dot-inner {
    fill: #fff;
    opacity: 0;
    animation: dotAppear 0.5s ease-out forwards;
    animation-delay: 0.7s;
}

@keyframes dotAppear {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ══════ DATA CARDS ══════ */
@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.data-card {
    position: absolute;
    z-index: 10;
    min-width: 175px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(40px) saturate(160%);
    -webkit-backdrop-filter: blur(40px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition:
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        background 0.4s ease;
    animation: cardFloat 6s ease-in-out infinite, cardAppear 1s ease-out backwards;
}

.data-card:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.14);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.28);
}

.card-top-left {
    top: 18%;
    left: 8%;
    animation-delay: 0s, 0.2s;
}

.card-top-right {
    top: 14%;
    right: 8%;
    animation-delay: 1.5s, 0.4s;
}

.card-bottom-left {
    bottom: 28%;
    left: 6%;
    animation-delay: 0.8s, 0.6s;
}

.card-bottom-right {
    bottom: 32%;
    right: 6%;
    animation-delay: 2s, 0.8s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.card-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.data-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.data-value {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.15);
}

.data-unit {
    font-size: 18px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 1px;
}

.card-trend {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
}

.card-trend.up {
    color: var(--verde-claro);
    text-shadow: 0 1px 4px rgba(52, 199, 89, 0.2);
}

.card-trend svg {
    flex-shrink: 0;
}

/* ══════ CTA BUTTON ══════ */
.cta-hero {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--verde-claro);
    border-radius: 980px;
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow:
        0 4px 16px rgba(52, 199, 89, 0.4),
        0 16px 48px rgba(52, 199, 89, 0.2);
    transition: var(--transition-smooth);
    animation: cardAppear 1s ease-out 1.2s backwards;
}

.cta-hero:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow:
        0 8px 24px rgba(52, 199, 89, 0.5),
        0 24px 64px rgba(52, 199, 89, 0.3);
    background: var(--verde-accent);
}

.cta-text {
    font-weight: 600;
}

.cta-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.3s;
}

.cta-hero:hover .cta-arrow {
    transform: translateX(4px);
}

/* ══════ DESCRIPTION ══════ */
.description {
    padding: 120px 0 100px;
    text-align: center;
}

.description-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--verde-claro);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.description h2 {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: var(--texto-claro);
}

.description p {
    font-size: 19px;
    color: var(--gris-400);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* ══════ FEATURES ══════ */
.features {
    padding: 80px 0 120px;
}

.section-title {
    text-align: center;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

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

.feature-card {
    background: var(--gris-950);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.4s;
}

.feature-card:hover img {
    opacity: 1;
}

.feature-card h3 {
    font-size: 22px;
    margin: 24px 28px 12px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.feature-card p {
    color: var(--gris-400);
    margin: 0 28px 28px;
    font-size: 15px;
    line-height: 1.6;
}

/* ══════ PRICING ══════ */
.pricing {
    padding: 100px 0 120px;
}

.section-subtitle {
    text-align: center;
    font-size: 19px;
    color: var(--gris-400);
    margin-bottom: 64px;
    margin-top: -4px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--gris-950);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: 48px 36px;
    position: relative;
    transition: var(--transition-smooth);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
    background: linear-gradient(165deg, rgba(52, 199, 89, 0.08) 0%, var(--gris-950) 60%);
    border: 1px solid rgba(52, 199, 89, 0.25);
}

.pricing-card.featured:hover {
    border-color: rgba(52, 199, 89, 0.4);
    box-shadow: 0 24px 80px rgba(52, 199, 89, 0.1);
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--verde-claro);
    color: #000;
    padding: 6px 14px;
    border-radius: 980px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.price {
    display: flex;
    align-items: baseline;
    margin: 28px 0 36px;
}

.currency {
    font-size: 22px;
    font-weight: 600;
    color: var(--verde-claro);
    margin-right: 2px;
}

.amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.period {
    font-size: 15px;
    color: var(--gris-400);
    margin-left: 4px;
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gris-200);
}

.check {
    color: var(--verde-claro);
    font-weight: 600;
    font-size: 15px;
}

.cross {
    color: rgba(255, 255, 255, 0.2);
    font-size: 15px;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-plan:hover {
    background: var(--verde-claro);
    color: #000;
    border-color: var(--verde-claro);
    transform: scale(1.01);
}

.pricing-card.featured .btn-plan {
    background: var(--verde-claro);
    color: #000;
    border-color: var(--verde-claro);
}

.pricing-card.featured .btn-plan:hover {
    background: var(--verde-accent);
    box-shadow: 0 8px 24px rgba(52, 199, 89, 0.3);
}

/* ══════ FOOTER ══════ */
.footer {
    background: var(--negro);
    padding: 80px 0 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 12px;
    color: var(--gris-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-col a,
.footer-col p {
    display: block;
    color: var(--gris-200);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: var(--gris-600);
    font-size: 13px;
}

/* ══════ RESPONSIVE ══════ */

/* Large desktops - cards a bit tighter */
@media (max-width: 1400px) {
    .card-top-left { left: 5%; }
    .card-top-right { right: 5%; }
    .card-bottom-left { left: 4%; }
    .card-bottom-right { right: 4%; }
}

@media (max-width: 1200px) {
    .card-top-left { left: 3%; }
    .card-top-right { right: 3%; }
    .card-bottom-left { left: 2%; }
    .card-bottom-right { right: 2%; }
    .data-card { min-width: 160px; padding: 16px 18px; }
    .data-value { font-size: 28px; }
    .data-label { font-size: 10px; }
    .data-unit { font-size: 16px; }
}

@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card:last-child { grid-column: span 2; max-width: 50%; justify-self: center; }
    .data-card { min-width: 145px; padding: 14px 16px; }
    .data-value { font-size: 26px; }
    .card-trend { font-size: 11px; }
    .hero { min-height: 600px; }
}

/* Tablet - cards go under image as grid */
@media (max-width: 900px) {
    .hero {
        height: auto;
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 10px;
        padding: 0 16px 24px;
        background: var(--negro);
    }
    .hero-image {
        position: relative;
        grid-column: 1 / -1;
        grid-row: 1;
        width: calc(100% + 32px);
        margin: 0 -16px;
        height: 60vh;
        min-height: 400px;
        object-position: center 30%;
        border-radius: 0;
    }
    .hero::before {
        display: none;
    }
    .hero-connectors { display: none; }

    /* Cards as 2x2 grid under image */
    .data-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        animation: none !important;
        min-width: auto;
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 16px 18px;
        margin: 0;
    }

    .card-top-left { grid-column: 1; grid-row: 2; }
    .card-top-right { grid-column: 2; grid-row: 2; }
    .card-bottom-left { grid-column: 1; grid-row: 3; }
    .card-bottom-right { grid-column: 2; grid-row: 3; }

    .data-value { font-size: 28px; }
    .data-label { font-size: 10px; }

    .cta-hero {
        grid-column: 1 / -1;
        grid-row: 4;
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 8px auto 0;
        animation: none !important;
        justify-self: center;
    }
    .cta-hero:hover { transform: scale(1.05); }

    .description { padding: 80px 0 60px; }
    .features { padding: 60px 0 80px; }
    .pricing { padding: 60px 0 80px; }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-content { padding: 12px 0; }
    .nav-menu { gap: 12px; }
    .nav-menu a:not(.btn-primary-nav) { display: none; }
    .logo span { font-size: 16px; }
    .logo img { width: 30px; height: 30px; }

    .hero-image {
        height: 50vh;
        min-height: 320px;
        object-position: center 35%;
    }

    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
    .pricing-card:last-child { grid-column: span 1; max-width: 100%; }
    .pricing-card { padding: 36px 28px; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .description h2 { font-size: clamp(26px, 7vw, 40px); }
    .description p { font-size: 16px; }
    .section-title { font-size: clamp(28px, 7vw, 44px); }
    .section-subtitle { font-size: 16px; margin-bottom: 40px; }

    .feature-card h3 { font-size: 19px; margin: 20px 22px 10px; }
    .feature-card p { margin: 0 22px 22px; font-size: 14px; }
    .feature-card img { height: 160px; }
}

/* Small mobile */
@media (max-width: 480px) {
    .container { padding: 0 16px; }

    .hero {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0 12px 20px;
    }
    .hero-image {
        margin: 0 -12px;
        width: calc(100% + 24px);
        min-height: 280px;
        height: 45vh;
        object-position: center 35%;
    }

    .data-card { padding: 14px 16px; }
    .data-value { font-size: 24px; }
    .data-label { font-size: 9px; }
    .card-trend { font-size: 10px; }
    .card-header { margin-bottom: 8px; }
    .card-dot { width: 6px; height: 6px; }

    .cta-hero { padding: 14px 28px; font-size: 15px; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer { padding: 48px 0 32px; }
    .amount { font-size: 42px; }
    .description { padding: 60px 0 48px; }
    .description-eyebrow { font-size: 12px; }
}

/* Very small mobile */
@media (max-width: 360px) {
    .hero { gap: 6px; padding: 0 8px 16px; }
    .hero-image {
        margin: 0 -8px;
        width: calc(100% + 16px);
        min-height: 240px;
        height: 40vh;
    }
    .data-card { padding: 12px 14px; }
    .data-value { font-size: 22px; }
    .data-unit { font-size: 14px; }
    .logo span { font-size: 14px; }
}

/* ══════════════════════════════════════════════════════
   LANDING CONVERSIÓN — Hero overlay, productos y blog
   ══════════════════════════════════════════════════════ */

/* --- Texto degradado marca --- */
.gradient-text {
    background: linear-gradient(92deg, #34C759 0%, #FF9F0A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* --- Botones CTA --- */
.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 980px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-hero-primary {
    background: var(--verde-claro);
    color: #000;
    box-shadow: 0 4px 16px rgba(52, 199, 89, 0.4), 0 16px 48px rgba(52, 199, 89, 0.22);
}

.btn-hero-primary:hover {
    background: var(--verde-accent);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 24px rgba(52, 199, 89, 0.5), 0 24px 64px rgba(52, 199, 89, 0.3);
}

.btn-hero-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-3px) scale(1.03);
}

/* --- Productos / Servicios --- */
.products-section {
    padding: 40px 0 110px;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 64px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    position: relative;
    background: var(--gris-950);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
}

.product-card.featured {
    background: linear-gradient(165deg, rgba(52, 199, 89, 0.1) 0%, var(--gris-950) 55%);
    border: 1px solid rgba(52, 199, 89, 0.3);
}

.product-icon {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 16px;
}

.product-badge {
    position: absolute;
    top: 28px;
    right: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--gris-200);
    padding: 5px 13px;
    border-radius: 980px;
    font-size: 12px;
    font-weight: 600;
}

.product-card.featured .product-badge {
    background: var(--verde-claro);
    color: #000;
    border-color: var(--verde-claro);
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.product-desc {
    color: var(--gris-400);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 22px;
}

.product-features {
    list-style: none;
    margin-bottom: 28px;
    flex-grow: 1;
}

.product-features li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--gris-200);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-product {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 15px 24px;
    border-radius: 980px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-product-primary {
    background: var(--verde-claro);
    color: #000;
}

.btn-product-primary:hover {
    background: var(--verde-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(52, 199, 89, 0.3);
}

.btn-product-ghost {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-product-ghost:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.32);
    transform: translateY(-2px);
}

/* --- Blog --- */
.blog-section {
    padding: 90px 0 120px;
    background: var(--gris-950);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section-header-blog {
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 52px;
}

.blog-card {
    background: var(--negro);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(52, 199, 89, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.blog-card-image {
    height: 190px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
}

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

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-card-content {
    padding: 22px 24px 26px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: var(--verde-claro);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--texto-claro);
    margin-bottom: 10px;
}

.blog-summary {
    font-size: 14px;
    color: var(--gris-400);
    line-height: 1.55;
    flex-grow: 1;
    margin-bottom: 16px;
}

.blog-link {
    color: var(--verde-claro);
    font-weight: 600;
    font-size: 14px;
}

.blog-card:hover .blog-link {
    color: var(--verde-accent);
}

.blog-more {
    text-align: center;
    margin-top: 44px;
}

.blog-more .btn-product {
    width: auto;
    padding: 15px 36px;
}

/* --- CTA final --- */
.final-cta {
    padding: 110px 0;
    text-align: center;
    background:
        radial-gradient(80% 120% at 50% 0%, rgba(52, 199, 89, 0.14) 0%, transparent 60%),
        var(--negro);
}

.final-cta h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.final-cta p {
    color: var(--gris-400);
    font-size: 18px;
    margin-bottom: 36px;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Responsive productos --- */
@media (max-width: 900px) {
    .product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .btn-hero { justify-content: center; }
    .product-card { padding: 30px 24px; }
    .final-cta-buttons { flex-direction: column; }
}
