/* Variables y reset */
:root {
    --primary-color: #3498db;
    --secondary-color: #2980b9;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --white: #fff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}



/* Header y Topbar */
.header {
    width: 100%;
    position: relative;
}

.summit{

max-width: 180px;
    align-items: center;
    margin: 10px 10px -20px 10px;

}

.summit-footer{

max-width: 150px;
    align-items: center;
    margin: 50px 10px 20px 30px;
    
}

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-radius: 10px 10px;
}

.logo1 img {
    height: 60px;
    width: auto;
}

/* Menú de navegación */
.navbar {
    display: flex;
    align-items: center;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-left: 2rem;
}

.menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.menu a:hover {
    color: var(--primary-color);
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark-color);
}

/* Banner con parallax */
.banner {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px; /* Compensa el topbar fijo */
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/img/bg-agentforcepsd.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
    transform: translateX(0);
    will-change: transform;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.banner-text {
    flex: 1;
    padding-right: 2rem;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.banner-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.banner-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    
}

.color-h1{
    color: #f18914;

}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #f18914;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    color: #f18914;
}

.banner-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.floating-img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
    transform: translateY(0);
    will-change: transform;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-text {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .banner-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .menu.active {
        left: 0;
    }
    
    .menu li {
        margin: 1.5rem 0;
    }
    
    .hamburger {
        display: block;
    }
    
    .banner-text h1 {
        font-size: 2rem;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .topbar {
        padding: 1rem;
    }
    
    .banner-text h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
    }
}


/* Sección principal */
.image-text-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.image-content {
    flex: 1;
    min-width: 300px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    line-height: 1.2;
}



.rounded-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.rounded-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}





/* Responsive Design */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .image-text-section {
        padding: 60px 0;
    }
    
    .container {
        flex-direction: column;
    }
    
    .text-content, .image-content {
        width: 100%;
    }
    
    .image-content {
        order: -1; /* Mueve la imagen arriba en móviles */
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    
    
    
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    
    
    .image-text-section {
        padding: 40px 0;
    }
}





.feature-section {
    padding: 80px 0;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.image-wrapper, .content-wrapper {
    flex: 1;
    min-width: 300px;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-radius: 30px;
}

.feature-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-title {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--text-color);
    line-height: 1.3;
}

.feature-description {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 1.8rem;
    max-width: 500px;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.check-icon {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 1.1rem;
}





/* Responsive Design */
@media (max-width: 992px) {
    .feature-title {
        font-size: 1.9rem;
    }
    
    .container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .feature-section {
        padding: 60px 0;
    }
    
    .container {
        flex-direction: column;
    }
    
    .image-wrapper {
        order: -1;
        margin-bottom: 40px;
        max-width: 500px;
    }
    
    .feature-title {
        font-size: 1.7rem;
        text-align: center;
    }
    
    .feature-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    
}

@media (max-width: 480px) {
    .feature-section {
        padding: 50px 0;
    }
    
    .feature-title {
        font-size: 1.5rem;
    }
    
    .feature-description {
        font-size: 1rem;
    }
    
    .feature-item {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 10px 24px;
    }
}











/* Variables únicas */
:root {
    --px-primary-color: #4a6fa5;
    --px-white-color: #ffffff;
    --px-text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    --px-transition-effect: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Estilos únicos para el banner */
#px-banner-container.px-main-wrapper {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

#px-background.px-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    background-image: url('assets/img/bbg-banner-paralax-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
    transform: translateZ(0);
    will-change: transform;
}

#px-content.px-content-box {
    text-align: center;
    max-width: 600px;
    padding: 0 2rem;
    color: var(--px-white-color);
    animation: px-fade-animation 1.2s ease-out forwards;
    margin-bottom: 90px;
}

#px-main-heading.px-title-style {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    text-shadow: var(--px-text-shadow);
    line-height: 1.2;
    font-weight: 700;
}

#px-subtext.px-description-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2.5rem;
    text-shadow: var(--px-text-shadow);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

#px-cta-button.px-action-btn {
    background-color: #f18914;
    color: var(--px-white-color);
    border: none;
    padding: 0.8rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--px-transition-effect);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;

}

#px-cta-button.px-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background-color: #fff;
    color: #f18914;
}

/* Animación única */
@keyframes px-fade-animation {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media queries con selectores únicos */
@media (max-width: 768px) {

#px-banner-container.px-main-wrapper {
    
    height: 10px;
    min-height: 600px;
    
}




    #px-content.px-content-box {
    
    margin-bottom: 90px;
}


    #px-banner-container.px-main-wrapper {
        min-height: 500px;
    }
    
    #px-background.px-bg-layer {
        background-attachment: scroll;
    }
    
    #px-content.px-content-box {
        padding: 0 1.5rem;
    }
    
    #px-subtext.px-description-text {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    #px-banner-container.px-main-wrapper {
        min-height: 450px;
    }
    
    #px-cta-button.px-action-btn {
        padding: 0.7rem 2rem;
        font-size: 0.9rem;
    }
}
















/* Sección de beneficios */
       /* Sección de beneficios */
        .benefits-section {
            padding: 80px 0;
        }

        .benefits-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .benefits-title {
            text-align: center;
            font-size: 2.2rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .benefits-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Sistema de grid mejorado */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 25px;
            justify-content: center;
        }

        .benefit-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            text-align: center;
        }

        /* Desktop: 3 arriba, 2 abajo centradas */
        .benefit-card:nth-child(1) { grid-column: 1 / span 2; }
        .benefit-card:nth-child(2) { grid-column: 3 / span 2; }
        .benefit-card:nth-child(3) { grid-column: 5 / span 2; }
        .benefit-card:nth-child(4) { grid-column: 2 / span 2; }
        .benefit-card:nth-child(5) { grid-column: 4 / span 2; }

        /* Efectos hover */
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }

        .card-icon {
            font-size: 2.5rem;
            color: #4a6fa5;
            margin-bottom: 1.2rem;
        }

        .card-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #222;
        }

        .card-text {
            color: #666;
            font-size: 1rem;
            line-height: 1.5;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .benefits-grid {
                grid-template-columns: repeat(4, 1fr);
            }
            .benefit-card:nth-child(1) { grid-column: 1 / span 2; }
            .benefit-card:nth-child(2) { grid-column: 3 / span 2; }
            .benefit-card:nth-child(3) { grid-column: 1 / span 2; }
            .benefit-card:nth-child(4) { grid-column: 3 / span 2; }
            .benefit-card:nth-child(5) { grid-column: 2 / span 2; }
        }

        @media (max-width: 768px) {
            .benefits-section {
                padding: 60px 0;
            }
            .benefits-title {
                font-size: 2rem;
            }
            .benefit-card {
                padding: 25px;
            }
        }

        @media (max-width: 600px) {
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            .benefit-card:nth-child(n) {
                grid-column: 1;
            }
        }

        @media (max-width: 480px) {
            .benefits-section {
                padding: 50px 0;
            }
            .benefits-title {
                font-size: 1.8rem;
            }
            .card-icon {
                font-size: 2rem;
            }
        }





/* boton beneficios*/
/* Estilos para el contenedor único */
#btn-ctn-2874.btn-wrapper-2874 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 25vh;
    padding: 20px;
    background-color: transparent;
}

/* Estilos para el botón principal único */
#main-btn-2874.primary-btn-2874 {
    --btn-bg-color: #f18914;
    --btn-hover-color: #fff;
    --btn-text-color: #ffffff;
    background-color: var(--btn-bg-color);
    
    background-color: var(--btn-bg-color);
    color: var(--btn-text-color);
    border: none;
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Efecto hover único */
#main-btn-2874.primary-btn-2874:hover {
    background-color: var(--btn-hover-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: #f18914;
}

/* Efecto active único */
#main-btn-2874.primary-btn-2874:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Efecto de onda único */
#main-btn-2874.primary-btn-2874::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

#main-btn-2874.primary-btn-2874:focus:not(:active)::after {
    animation: btn-wave-2874 0.6s ease-out;
}

@keyframes btn-wave-2874 {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(20, 20);
        opacity: 0;
    }
}

/* Media queries con selectores únicos */
@media (max-width: 768px) {
    #main-btn-2874.primary-btn-2874 {
        padding: 14px 32px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    #main-btn-2874.primary-btn-2874 {
        padding: 12px 28px;
        font-size: 0.9rem;
        width: 90%;
        max-width: 300px;
    }
}















/* estilo requisitos */
/* CSS con selectores únicos */
        .benefits-section-8593 {
            padding: 80px 20px;
            background-image: url('assets/img/bg-agentforcepsd.png');
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .benefits-container-8593 {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .benefits-header-8593 {
            margin-bottom: 60px;
        }
        
        .benefits-title-8593 {
            color: #fff;
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .requirements-subtitle-8593 {
            color: #fff;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .cards-container-8593 {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 30px;
        }
        
        .benefit-card-8593 {
            background: white;
            width: 350px;
            padding: 70px 30px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .hexagon-wrapper-8593 {
            position: absolute;
            top: -35px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 57.74px;
        }
        
        .hexagon-shape-8593 {
    width: 70%;
    height: 130%;
    background: #9275fc;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        margin: auto;
        }
        
        .hexagon-icon-8593 {
            color: white;
            font-size: 2rem;
        }
        
        .card-title-8593 {
            color: #2c3e50;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .card-text-8593 {
            color: #7f8c8d;
            line-height: 1.6;
        }
        
        @media (max-width: 768px) {
            .benefits-title-8593 {
                font-size: 2rem;
            }
            
            .requirements-subtitle-8593 {
                font-size: 1.1rem;
                padding: 0 20px;
            }
            
            .benefit-card-8593 {
                width: 100%;
                max-width: 400px;
                padding: 70px 25px 25px;
            }
        }














        /* from */







        .form-section {
            padding: 40px 0 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        /* Estructura de títulos */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
            max-width: 800px;
            padding: 0 20px;
        }
        
        .main-title {
            color: #2c3e50;
            font-size: 2.2rem;
            margin-bottom: 15px;
        }
        
        .section-description {
            color: #7f8c8d;
            font-size: 1.1rem;
        }
        
        /* Estructura 20-60-20 */
        .form-container {
            display: grid;
            grid-template-columns: 20% 60% 20%;
            width: 100%;
            max-width: 1920px;
            margin-bottom: 40px;
        }
        
        .form-column {
            padding: 0 15px;
        }
        
        /* Estilo del formulario */
        .custom-form {
            background-color: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .form-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 1.8rem;
        }
        
        /* Estructura de dos columnas para los campos */
        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 25px;
            justify-content: center;
        }
        
        .form-group {
                width: 43%;
    margin-bottom: 20px;
    margin-right: 20px !important;
        }
        
        .form-group:nth-child(odd) {
            margin-right: 4%;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }
        
        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 2px rgba(52,152,219,0.2);
        }
        
        /* Estilo del botón del formulario */
        .form-submit-btn {
            background-color: #f18914;
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 1rem;
            border-radius: 6px;
            cursor: pointer;
            display: block;
            margin: 30px auto 0;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        
        .form-submit-btn:hover {
            background-color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            color: #f18914;
        }
        
        /* Sección inferior con texto y botón */
        .bottom-section {
            text-align: center;
            max-width: 800px;
            padding: 0 20px;
            margin-top: 20px;
        }
        
        .bottom-text {
            color: #7f8c8d;
            font-size: 1.1rem;
            margin-bottom: 25px;
        }
        
        .action-btn {
            background-color: #2ecc71;
            color: white;
            border: none;
            padding: 14px 30px;
            font-size: 1rem;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            display: inline-block;
        }
        
        .action-btn:hover {
            background-color: #27ae60;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        /* Responsive Design */
        @media (max-width: 1200px) {
            .form-container {
                grid-template-columns: 10% 80% 10%;
            }
        }
        
        @media (max-width: 992px) {
            .form-container {
                grid-template-columns: 5% 90% 5%;
            }
            
            .main-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 768px) {
            .form-container {
                grid-template-columns: 0 100% 0;
            }
            
            .custom-form {
                padding: 30px;
            }
            
            .form-group {
                width: 100%;
                margin-right: 0 !important;
            }
            
            .main-title {
                font-size: 2rem;
            }
            
            .form-title {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 576px) {
            .section-header {
                margin-bottom: 30px;
            }
            
            .main-title {
                font-size: 1.8rem;
            }
            
            .section-description, .bottom-text {
                font-size: 1rem;
            }
            
            .custom-form {
                padding: 25px 20px;
            }
            
            .form-title {
                font-size: 1.4rem;
                margin-bottom: 20px;
            }
            
            .form-submit-btn, .action-btn {
                width: 100%;
                padding: 12px;
            }
        }














        /* Banner container */
        .hero-banner {
            position: relative;
            width: 100%;
            height: 55vh;
            min-height: 400px;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            overflow: hidden;
        }
        
        /* Imagen de fondo */
        .hero-banner__bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }
        
        /* Overlay para mejor legibilidad */
        .hero-banner__overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 2;
        }
        
        /* Contenido del banner */
        .hero-banner__content {
            position: relative;
            z-index: 3;
            color: white;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .hero-banner__title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero-banner__subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-banner__btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: #3498db;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .hero-banner__btn:hover {
            background-color: transparent;
            border-color: white;
            transform: translateY(-3px);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-banner {
                height: 70vh;
            }
            
            .hero-banner__title {
                font-size: 2.8rem;
            }
            
            .hero-banner__subtitle {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 768px) {
            .hero-banner {
                height: 60vh;
                min-height: 350px;
            }
            
            .hero-banner__title {
                font-size: 2.2rem;
                margin-bottom: 15px;
            }
            
            .hero-banner__subtitle {
                font-size: 1.1rem;
                margin-bottom: 25px;
            }
            
            .hero-banner__btn {
                padding: 10px 25px;
                font-size: 1rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-banner {
                height: 50vh;
            }
            
            .hero-banner__title {
                font-size: 1.8rem;
            }
            
            .hero-banner__subtitle {
                font-size: 1rem;
            }
            
            .hero-banner__btn {
                width: 80%;
                max-width: 250px;
            }
        }


















.testimonials-section {
      max-width: 1200px;
      margin: auto;
      padding: 60px 20px;
      background-color: #fff;
    }

    .testimonials-title {
      text-align: center;
      font-size: 2em;
      margin-bottom: 40px;
      color: #333;
    }

    .testimonials-container {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .testimonial-card {
      background-color: #ffffff;
      border-radius: 12px;
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
      padding: 30px 20px;
      max-width: 320px;
      width: 100%;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
    }

    .stars {
      color: #ffc107;
      font-size: 1.2em;
    }

    .verified {
      font-size: 1.2em;
      color: #4CAF50;
    }

    .testimonial-title {
      font-weight: 600;
      font-size: 1.1em;
      margin: 10px 0 5px;
      color: #222;
    }

    .testimonial-text {
      font-size: 0.95em;
      color: #555;
      line-height: 1.6;
    }

    /* --- RESPONSIVE --- */
    @media (max-width: 768px) {
      .testimonial-card {
        max-width: 100%;
      }
    }















    /* logos */
   

    .logo-carousel {
      overflow: hidden;
      position: relative;
      width: 100%;
      background: #fff;
      padding: 20px 0;
    }

    .logo-track {
      display: flex;
      width: calc(250px * 28); /* ajusta según cantidad de logos */
      animation: scroll 30s linear infinite;
    }

    .logo {
      height: auto;
      width: 250px;
      flex: 0 0 auto;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 30px;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
    }

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

    .logo:hover {
      filter: grayscale(0%);
    }

    /* Animación del carrusel */
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Responsive */
    @media (max-width: 768px) {
      .logo {
        width: 300px;
      }
      .logo-track {
        width: calc(160px * 28);
      }
    }






    /* Estilos del footer */
.salesforce-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 50px 0 20px;
    width: 100%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column {
    padding: 0 15px;
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light-text);
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #c29eff;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.footer-list li i {
    margin-right: 10px;
    color: #440ca2;
    width: 16px;
    text-align: center;
}

.footer-list a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-list a:hover {
    color: var(--footer-link-hover);
}

/* Columna del logo y redes sociales */
.logo-container {
    margin-bottom: 20px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: #FFF;
    background-color: rgb(68 12 162);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Footer inferior */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-list li {
        justify-content: center;
    }
    
    .logo-container {
        display: flex;
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-list a, .footer-list li {
        font-size: 0.9rem;
    }
    
    .social-icons a {
        width: 32px;
        }

    }














     /* CSS (también puedes llevarlo a un archivo externo) */
        .floating-buttons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }

        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366; /* Color de WhatsApp por defecto */
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-size: 24px;
        }

        .floating-btn.calendar {
            background: #f18914;; /* Azul de Google Calendar */
        }

        .floating-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }

        /* Responsive para pantallas pequeñas */
        @media (max-width: 768px) {
            .floating-btn {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }



.tex-nube{

color: #808080 !important;
    font-size: 15px !important;
    margin-top: 5px !important;


}















