:root {
        --bee-primary: #2b6b31;
        --bee-primary-2: #368e3e;
        --bee-accent: #fdbf00;
        --bee-accent-2: #e6a900;
        --bee-ink: #0f172a;
        --bee-muted: #475467;
        --bee-surface: #f7fbfa;
    }

    /* =============================================
           SECCIÓN HERO
           ============================================= */
    .hero-page {
        position: relative;
        overflow: hidden;
        background: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.18), transparent 45%),
            linear-gradient(130deg, var(--bee-primary) 0%, var(--bee-primary-2) 52%, #245a2a 100%);
        color: #fff;
        padding: clamp(3rem, 5vw, 5rem) 0 clamp(11rem, 20vw, 16rem);
    }

    .hero-page::after {
        content: "";
        position: absolute;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        border: 48px solid rgba(255, 255, 255, 0.08);
        right: -110px;
        top: -130px;
        pointer-events: none;
    }

    .hero-content {
        position: relative;
        z-index: 3;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        background: rgba(255, 255, 255, 0.18);
        border: 1px solid rgba(255, 255, 255, 0.38);
        border-radius: 999px;
        padding: 0.4rem 0.95rem;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.2px;
    }

    .hero-page h1 {
        font-size: clamp(2rem, 5vw, 3.8rem);
        margin: 1rem 0 0.75rem;
        line-height: 1.1;
        font-weight: 800;
        max-width: 12ch;
    }

    .hero-page p {
        max-width: 55ch;
        font-size: clamp(1rem, 1.8vw, 1.2rem);
        opacity: 0.97;
        margin-bottom: 1.6rem;
    }

    .hero-logo-card {
        width: min(280px, 90%);
        background: rgba(255, 255, 255, 0.92);
        border-radius: 24px;
        padding: 1rem;
        margin: 0 auto;
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(6px);
    }

    .hero-logo-card img {
        width: 100%;
        height: auto;
        display: block;
    }

    .hero-cta {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        background: linear-gradient(120deg, var(--bee-accent), var(--bee-accent-2));
        color: #1a2e1a;
        text-decoration: none;
        font-weight: 700;
        border-radius: 999px;
        padding: 0.75rem 1.35rem;
        box-shadow: 0 12px 30px rgba(253, 191, 0, 0.35);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .hero-cta:hover {
        color: #1a2e1a;
        transform: translateY(-2px);
        box-shadow: 0 16px 34px rgba(253, 191, 0, 0.45);
    }

    .imgWave {
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 2;
        pointer-events: none;
    }

    /* =============================================
           STATS STRIP
           ============================================= */
    .stats-strip {
        position: relative;
        z-index: 4;
        padding: 2rem 0;
        background: #f7fbfa;
    }

    .stat-card {
        background: #fff;
        border-radius: 16px;
        padding: 1rem;
        text-align: center;
        box-shadow: 0 10px 24px rgba(25, 40, 61, 0.08);
        border: 1px solid #ecf1f5;
        height: 100%;
    }

    .stat-card .num {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--bee-primary);
        margin-bottom: 0.2rem;
    }

    /* =============================================
           SECCIONES
           ============================================= */
    .section {
        padding: clamp(3rem, 5vw, 5rem) 0;
        scroll-margin-top: 96px;
    }

    .section-soft {
        background: var(--bee-surface);
    }

    .section-title {
        text-align: center;
        margin-bottom: 2.2rem;
    }

    .section-title h2 {
        margin: 0 0 0.6rem;
        font-size: clamp(1.7rem, 3vw, 2.5rem);
        font-weight: 800;
        color: var(--bee-ink);
    }

    .section-title p {
        margin: 0;
        color: var(--bee-muted);
    }

    /* =============================================
           TARJETAS DE CARACTERÍSTICAS
           ============================================= */
    .feature-card {
        background: #fff;
        border: 1px solid #e8eef3;
        border-radius: 16px;
        padding: 1.35rem;
        height: 100%;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 14px 30px rgba(17, 33, 55, 0.08);
    }

    .feature-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        color: #fff;
        background: linear-gradient(120deg, var(--bee-primary), var(--bee-primary-2));
        margin-bottom: 0.9rem;
    }

    .feature-card h5 {
        margin: 0 0 0.4rem;
        font-weight: 700;
    }

    .feature-card p {
        margin: 0;
        color: var(--bee-muted);
        font-size: 0.95rem;
    }

    /* =============================================
           CAJA "SOBRE BEE"
           ============================================= */
    .about-box {
        background: #fff;
        border: 1px solid #e8eef3;
        border-radius: 18px;
        padding: clamp(1.2rem, 3vw, 2rem);
        box-shadow: 0 8px 22px rgba(17, 33, 55, 0.05);
    }

    .bullet-list {
        display: grid;
        gap: 0.7rem;
        margin-top: 1rem;
    }

    .bullet-item {
        display: flex;
        gap: 0.65rem;
        align-items: flex-start;
        color: #34495e;
    }

    .bullet-item i {
        color: var(--bee-primary);
        margin-top: 0.2rem;
    }

    /* =============================================
           FORMULARIO DE CONTACTO
           ============================================= */
    .contact-wrap {
        background: #fff;
        border: 1px solid #e8eef3;
        border-radius: 18px;
        padding: clamp(1.3rem, 3vw, 2.2rem);
        box-shadow: 0 12px 28px rgba(17, 33, 55, 0.07);
        max-width: 760px;
        margin: 0 auto;
    }

    .contact-wrap .form-label {
        font-weight: 700;
        color: #304455;
    }

    .contact-wrap .form-control {
        border: 1px solid #d7e1ea;
        padding: 0.72rem 0.9rem;
        border-radius: 10px;
    }

    .contact-wrap .form-control:focus {
        border-color: var(--bee-primary);
        box-shadow: 0 0 0 0.2rem rgba(43, 107, 49, 0.15);
    }

    .btn-send {
        border: 0;
        border-radius: 12px;
        background: linear-gradient(120deg, var(--bee-primary), var(--bee-primary-2));
        color: #fff;
        font-weight: 700;
        padding: 0.8rem 1rem;
        width: 100%;
        transition: filter 0.2s ease;
    }

    .btn-send:hover {
        color: #fff;
        filter: brightness(1.08);
    }

    /* =============================================
           FOOTER DE PÁGINA
           ============================================= */
    .footer-page {
        background: #f8fafc;
        color: #334155;
        text-align: center;
        padding: 1.6rem 0;
        border-top: 1px solid #e2e8f0;
    }

    /* =============================================
           RESPONSIVO
           ============================================= */
    @media (max-width: 991.98px) {
        .hero-page {
            text-align: center;
            padding-bottom: clamp(7rem, 16vw, 10rem);
        }

        .hero-page h1,
        .hero-page p {
            margin-left: auto;
            margin-right: auto;
        }

        .hero-logo-card {
            margin-top: 1.5rem;
        }

        .column-s {
            flex-direction: column-reverse !important;
        }

        .pd-custom-s {
            margin-bottom: 1.5rem !important;
        }
    }
