/* Start custom CSS for html, class: .elementor-element-ccca3a7 *//*==========================================================================
    SECCIÓN HERO / TRANSFORME SU EMPRESA - CONTAWEBPRO (FULL WIDTH)
==========================================================================*/

.pasto-hero-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(#6EBE1F, #001D4A 0%, #0F2E59 100%); /* Fondo Azul Noche Ejecutivo */
    padding: 70px 5%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    box-sizing: border-box;
    color: #ffffff;
}

.pasto-hero-section .container-full {
    width: 100%;
    margin: 0 auto;
}














/* GRILLA DE 2 COLUMNAS (CONTENIDO + TARJETA DESTACADA) */

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

/* COLUMNA DE TEXTO */

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Badge de Ubicación */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #6EBE1F; /* Verde claro */
    margin-bottom: 20px;
}


/* MALLA DE FONDO (LLAMA/GRID) */
    .cwp-light-grid-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            linear-gradient(rgba(18, 83, 163, 0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(18, 83, 163, 0.02) 1px, transparent 1px);
        background-size: 50px 50px;
        pointer-events: none;
        z-index: 1;
    }





/* Punto Parpadeante (Efecto En Vivo) */
.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
}

.hero-content h1 {
    font-size: 38px;
    line-height: 1.2;
    font-weight: 800;
    margin: 0 0 18px 0;
    color: #ffffff;
}

.hero-content h1 strong {
    color: #6EBE1F; /* Verde Destacado */
}

.hero-description {
    font-size: 16.5px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0 0 30px 0;
    max-width: 650px;
}

.hero-description strong {
    color: #6EBE1F;
}

/* BOTÓN CTA */

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #006B4F  0%, #6EBE1F 100%); /* Verde Corporativo */
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.25s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(16, 185, 129, 0.45);
    background: linear-gradient(135deg, #6EBE1F 0%, #6EBE1F 100%);
}

.btn-icon {
    transition: transform 0.2s ease;
}

.btn-cta:hover .btn-icon {
    transform: translateX(4px);
}

.cta-note {
    font-size: 12.5px;
    color: #64748b;
    font-weight: 500;
}

/* TARJETA LATERAL DE BENEFICIOS */

.hero-card-side {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
}

.card-inner h3 {
    font-size: 18px;
    font-weight: 700;
    color: #6EBE1F;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefits-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.check-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #6EBE1F;
    font-weight: 800;
    font-size: 14px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.benefits-list strong {
    display: block;
    font-size: 14px;
    color: #f1f5f9;
    margin-bottom: 2px;
}

.benefits-list p {
    font-size: 12.5px;
    color: #94a3b8;
    margin: 0;
    line-height: 1.4;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .hero-content h1 {
        font-size: 32px;
    }
}

@media (max-width: 640px) {
    .pasto-hero-section {
        padding: 50px 5%;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .btn-cta {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }

    .cta-wrapper {
        width: 100%;
    }
}/* End custom CSS */