/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Estilos del Navbar */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

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

.nav-links ul {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #0B5D4C;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #0B5D4C;
    color: white;
}

.btn-primary:hover {
    background-color: #084238;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-links.active {
        display: block;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active ul {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .cta-button {
        display: none;
    }
    
    .nav-links.active .cta-button {
        display: block;
        margin-top: 20px;
    }
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background-color: #fff;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000;
    text-align: left;
}

.highlight {
    position: relative;
    display: inline-block;
    color: #CEF60D;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: #CEF60D;
    text-decoration-thickness: 8px;
    text-underline-offset: 4px;
    margin-bottom: 8px;
}

.hero-text p {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0px;
    border-radius: 8px;
    margin-bottom: 32px;
    max-width: 500px;
    text-align: left;
}

.hero-form {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.email-input {
    background-color: #FAFAFA;
    border: 1px solid #00000033;
    border-radius: 37px;
    padding: 14px 20px;
    font-size: 16px;
    width: 100%;
    max-width: 320px;
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: #AAAAAA;
    opacity: 1; /* Para Firefox */
}

.email-input:focus {
    border-color: #0B5D4C;
    box-shadow: 0 0 0 2px rgba(11, 93, 76, 0.1);
}

/* Estilos para el campo de email en otras secciones (como FAQ) */
input[type="email"].email-input {
    background-color: #FAFAFA;
    border: 1px solid #00000033;
    border-radius: 37px;
    padding: 14px 20px;
    font-size: 16px;
    width: 100%;
    outline: none;
    transition: all 0.3s ease;
}

input[type="email"].email-input::placeholder {
    color: #AAAAAA;
    opacity: 1;
}

input[type="email"].email-input:focus {
    border-color: #0B5D4C;
    box-shadow: 0 0 0 2px rgba(11, 93, 76, 0.1);
}

/* Ajuste para el botón junto al input de email */
.hero-form .btn, 
.faq-form .btn {
    border-radius: 37px;
    height: 64px;
    padding: 20px 24px;
}

/* Estilo específico para el botón Charlemos */
.btn-charlemos {
    background-color: #004938;
    color: #CEF60D;
    border-radius: 70px;
    padding: 20px 24px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-charlemos:hover {
    background-color: #003a2e;
    transform: translateY(-2px);
}

/* Ajuste para el botón junto al input de email */
.hero-form .btn-charlemos, 
.faq-form .btn-charlemos {
    min-width: 146px;
}

/* Responsive para el hero */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-form {
        margin: 0 auto;
    }
    
    h1 {
        font-size: 48px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .hero-form {
        flex-direction: column;
    }
}

/* Añade esto a tu archivo CSS existente */
.cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background-color: #000;
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Sección de Características (Cosas Claves) */
.features {
    padding: 80px 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.features-intro h2 {
    font-weight: 500;
    font-size: 64px;
    letter-spacing: -1px;
    text-transform: capitalize;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #000;
    text-align: left;
}

.features-intro h2::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background-color: #CEF60D;
    border-radius: 50%;
    top: -15px;
    right: -15px;
    z-index: -1;
}

.features-intro p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 400px;
}

.features-video {
    flex: 1;
    margin-right: 60px;
}

.video-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.video-container::before {
    content: "";
    display: block;
    padding-top: 56.25%; /* Relación de aspecto 16:9 */
}

#features-main-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-container.playing .play-button {
    display: none;
}

.video-caption {
    margin-top: 16px;
    text-align: center;
    font-size: 16px;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .features-container {
        flex-direction: column;
    }
    
    .features-video {
        margin-right: 0;
        margin-bottom: 40px;
        max-width: 100%;
    }
}

.features-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-image img {
    width: 100%;
    height: auto;
    display: block;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    border-radius: 12px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card:active {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #004938;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

.feature-content h3 {
    font-weight: 500;
    font-size: 32px;
    letter-spacing: 0px;
    text-transform: capitalize;
    margin-bottom: 16px;
    color: #000;
    line-height: 1.2;
}

.feature-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
}

.btn-video {
    background: none;
    border: none;
    color: #004938;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
}

.btn-video::after {
    content: "→";
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-video:hover::after {
    transform: translateX(5px);
}

/* Efecto de destaque al hacer hover en el botón de video */
.btn-video:hover {
    color: #002a20;
    font-weight: 700;
}

/* Modal de Video */
.video-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    width: 80%;
    max-width: 800px;
    border-radius: 12px;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: black;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-top: 20px;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-intro {
        text-align: center;
    }
    
    .features-intro p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .feature-card {
        flex-direction: column;
    }
    
    .feature-icon {
        margin-bottom: 15px;
    }
}

/* Sección de Estadísticas - Somos De Palabra */
.stats-section {
    padding: 100px 0;
    background-color: #fff;
}

.stats-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 40px;
    flex: 1;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: #0B0B0B;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-description {
    font-size: 18px;
    color: #555;
    margin: 0;
    max-width: 200px;
}

.stats-content {
    flex: 1;
    max-width: 500px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section-title {
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -1px;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
}

.stats-content .section-title {
    font-size: 64px;
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
    text-align: left;
}

.stats-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #014933;
    transition: all 0.3s ease;
}

.stats-link:hover {
    color: #0B5D4C;
    transform: translateX(5px);
}

/* Responsive para la sección de estadísticas */
@media (max-width: 992px) {
    .stats-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .stats-content {
        max-width: 100%;
        text-align: center;
    }
    
    .stats-link {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-item {
    align-items: center;
        text-align: center;
    }
    
    .stat-description {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 36px;
    }
}

/* Estilo específico para el botón CTA en la sección de estadísticas */
.stats-cta .btn-primary {
    background-color: transparent;
    color: #014933;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    border: none;
    box-shadow: none;
}

.stats-cta .btn-primary::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.stats-cta .btn-primary:hover {
    background-color: transparent;
    color: #0B5D4C;
    transform: none;
    box-shadow: none;
}

.stats-cta .btn-primary:hover::after {
    transform: translateX(4px);
}

/* Sección CTA - Hace Crecer Tu Negocio */
.cta-section {
    padding: 60px;
    background-color: #014933; /* Fondo verde sólido */
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    margin: 40px auto;
    max-width: 1200px;
}

/* Ajuste del contenedor dentro de la sección CTA */
.cta-section .container {
    padding: 0;
    width: 100%;
}

/* Círculos como pseudo-elementos */
.cta-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: linear-gradient(177.26deg, #296552 10.7%, #CEF60D 103.87%);
    border-radius: 50%;
    top: -250px;
    left: -100px;
    z-index: 1;
    opacity: 0.8;
}

.cta-section::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: linear-gradient(177.26deg, #296552 10.7%, #CEF60D 103.87%);
    border-radius: 50%;
    bottom: -350px;
    right: -200px;
    z-index: 1;
    opacity: 0.8;
}

.cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.cta-left {
    flex: 1;
}

.cta-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-left h2, .cta-text h2 {
    font-family: 'General Sans', sans-serif;
    font-weight: 500;
    font-size: 64px;
    line-height: 87px;
    letter-spacing: -1px;
    text-transform: capitalize;
    margin-bottom: 24px;
    color: white;
}

.cta-right p, .cta-text p {
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
    color: white;
}

.cta-button-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-small-text {
    font-weight: 100 !important;
    font-size: 14px !important;
    letter-spacing: 0px;
    color: #C8C8C8 !important;
    margin-top: 0;
    margin-bottom: 0;
}

.btn-light {
    background-color: white;
    color: #004938;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #E0FF22;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Responsive para la sección CTA */
@media (max-width: 768px) {
    .cta-content {
    flex-direction: column;
}

    
    
    .cta-right p, .cta-text p {
    font-size: 16px;
    }
}

@media (max-width: 576px) {
   
    
    .cta-content {
    text-align: center;
    }
    
    .cta-right {
        align-items: center;
    }
}

/* Sección de Testimonios */
.testimonials {
    padding: 80px 0;
}

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

.testimonials-title {
    font-weight: 500;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -1px;
    color: #000;
    margin: 0;
}

.another-title {
    font-weight: 500;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -1px;
    color: #000;
    margin: 0;
}

/* Estilos actualizados para los controles del carrusel */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.carousel-control {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-control.prev {
    background-color: #F8F9FF;
}

.carousel-control.prev svg path {
    stroke: rgba(0, 0, 0, 0.3);
}

.carousel-control.next {
    background-color: #004938;
}

.carousel-control.next svg path {
    stroke: #FFFFFF;
}

.carousel-control:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Ajuste para el tamaño de los íconos dentro de los controles */
.carousel-control svg {
    width: 24px;
    height: 24px;
}

.carousel-control.active {
    background-color: #0B5D4C;
    border-color: #0B5D4C;
    color: white;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.testimonial-slides {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    min-width: calc(33.333% - 16px);
    flex: 1;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card.featured {
    background-color: #004933;
    color: white;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 16px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author h3 {
    font-weight: 600;
    font-size: 18px;
    margin: 0 0 4px;
}

.testimonial-author p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.testimonial-card.featured .testimonial-author p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-content {
    flex: 1;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.testimonials-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonials-cta p {
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
    color: #666;
}

.testimonials-cta .btn {
    margin-top: 8px;
}

/* Responsive para testimonios */
@media (max-width: 992px) {
    .testimonial-slide {
        min-width: calc(50% - 12px);
    }
    
    .testimonials-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .testimonial-slide {
        min-width: 100%;
    }
    
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .testimonials-title {
        font-size: 36px;
    }
}

/* Sección de FAQ */
.faq {
    padding: 80px 0;
    background-color: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0B5D4C;
}

.faq-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.faq-content {
    display: flex;
    gap: 40px;
}

.faq-list {
    flex: 1;
}

.faq-item {
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 16px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-toggle {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
    color: #0B5D4C;
}

.faq-toggle .plus,
.faq-toggle .minus {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.faq-toggle .minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-item.active .faq-toggle .plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-toggle .minus {
    opacity: 1;
    transform: rotate(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 16px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Estilos para el bloque de contacto en FAQ */
.faq-contact {
    border-radius: 16px;
    padding: 30px;
    color: white;
    margin-left: 30px;
    flex: 0 0 35%;
}

.faq-contact-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.faq-contact h3 {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 40px;
    letter-spacing: -1px;
    color: #000000;
}

.faq-contact p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #00000099;
}

.faq-contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.faq-contact .email-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    color: white;
    width: 100%;
}

.faq-contact .email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.faq-contact .btn-primary {
    background-color: #CEF60D;
    color: #004938;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-contact .btn-primary:hover {
    background-color: #d9ff33;
}

.faq-more-link {
    display: flex;
    align-items: center;
    color: #014933;
    text-decoration: none;
    font-size: 14px;
    margin-top: auto;
    align-self: flex-start;
}

/* Estructura general de la sección FAQ */
.faq-content {
    display: flex;
    margin-top: 40px;
}

.faq-list {
    flex: 1;
}

@media (max-width: 992px) {
    .faq-content {
        flex-direction: column;
    }
    
    .faq-contact {
        margin-left: 0;
        margin-top: 30px;
        flex: none;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .faq-contact {
        padding: 20px;
    }
    
    .faq-contact h3 {
        font-size: 20px;
    }
    
    .faq-contact p {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background-color: #f9f9f9;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo img {
    width: 146px;
    height: 33px;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #014933;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.btn-outline {
    border: 2px solid #014933;
    color: #014933;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #014933;
    color: white;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #014933;
}

.footer-links-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-column a {
    color: #555;
    transition: color 0.3s ease;
}

.footer-links-column a:hover {
    color: #014933;
}

.footer-bottom {
    background-color: #000000;
    color: white;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Responsive para el footer */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-left {
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

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

.pricing-cta {
    text-align: center;
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.pricing-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.pricing-header p {
    font-size: 18px;
    color: #555;
}


.pricing-faq {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-faq h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pricing-faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #014933;
}

.pricing-faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Responsive para la sección de precios */
@media (max-width: 992px) {
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        max-width: 100%;
        width: 100%;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-header h2 {
        font-size: 36px;
    }
    
    .pricing-toggle {
        flex-direction: column;
    }
}

/* Sección de Casos de Éxito */
.case-study-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-study-card.featured {
    border: 2px solid #0B5D4C;
    transform: scale(1.05);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.case-study-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
}

.case-study-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.case-study-company h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #000;
}

.case-study-company p {
    font-size: 16px;
    color: #555;
}

.case-study-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: #0B5D4C;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: #555;
}

.case-study-content {
    flex-grow: 1;
    margin-bottom: 30px;
}

.case-study-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 24px;
}

.case-study-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.case-study-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.case-study-author h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.case-study-author p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.btn-case-study {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #0B5D4C;
    font-weight: 600;
    border: 2px solid #0B5D4C;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-case-study:hover {
    background-color: #0B5D4C;
    color: white;
}

/* Responsive para casos de estudio */
@media (max-width: 992px) {
    .case-study-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .metric {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        text-align: left;
    }
    
    .metric-value {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .case-study-card {
        padding: 30px;
    }
    
    .case-study-header {
        flex-direction: column;
        text-align: center;
    }
    
    .case-study-company {
        text-align: center;
    }
    
    .btn-case-study {
        width: 100%;
    }
}

/* Sección de Onboarding */
.onboarding-section {
    padding: 100px 0;
}

.onboarding-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.onboarding-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.onboarding-header p {
    font-size: 20px;
    color: #555;
}

.onboarding-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.onboarding-step {
    flex: 1;
    position: relative;
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.onboarding-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: #0B5D4C;
    color: #CEF60D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.step-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 72px;
}

.step-content img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
}

.onboarding-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.onboarding-cta {
    text-align: center;
    margin-top: 0px;
    padding: 20px;
    border-radius: 12px;
}

.onboarding-cta p {
    font-size: 16px;
    margin-bottom: 15px;
}

.onboarding-cta .btn {
    margin-top: 5px;
}

@media (max-width: 768px) {
    .onboarding-cta {
        margin-top: 30px;
        padding: 15px;
    }
    
    .onboarding-cta p {
        font-size: 14px;
    }
}

/* Estilos para CTAs estratégicos */

/* CTA después de estadísticas */
.stats-cta {
    text-align: center;
    margin-top: 40px;
}

/* CTA después de características */
.features-cta {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 12px;
}

.features-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

/* CTA después de testimonios */
.testimonials-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonials-cta p {
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
    color: #666;
}

.testimonials-cta .btn {
    margin-top: 8px;
}

/* Mejora del CTA de onboarding */
.onboarding-cta {
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

/* Botón flotante para móviles */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.floating-cta .btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 14px 24px;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .floating-cta {
        display: block;
    }
}

/* Widget de Chat */
.chat-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 500px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    transform: translateY(120%);
    transition: transform 0.3s ease;
}

.chat-widget.active {
    transform: translateY(0);
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 16px;
    background-color: #0B5D4C;
    color: white;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    background-color: #CEF60D;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.chat-info {
    flex: 1;
}

.chat-info h4 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.chat-status {
    font-size: 12px;
    margin: 0;
    color: #CEF60D;
}

.chat-minimize {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
}

.chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: calc(100% - 72px);
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.message.user {
    align-self: flex-end;
}

.message.bot {
    align-self: flex-start;
}

.message-content {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4;
}

.message.user .message-content {
    background-color: #0B5D4C;
    color: white;
    border-bottom-right-radius: 4px;
}

.message.bot .message-content {
    background-color: #f0f0f0;
    color: #333;
    border-bottom-left-radius: 4px;
}

.message-time {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    align-self: flex-end;
}

.message.user .message-time {
    align-self: flex-end;
}

.message.bot .message-time {
    align-self: flex-start;
}

.chat-quick-replies {
    padding: 12px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid #eee;
}

.quick-reply {
    background-color: #f0f0f0;
    border: none;
    border-radius: 16px;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-reply:hover {
    background-color: #e0e0e0;
}

.chat-input {
    display: flex;
    padding: 12px 16px;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    border: none;
    padding: 10px 12px;
    border-radius: 20px;
    background-color: #f5f5f5;
    font-size: 14px;
    outline: none;
}

.chat-input button {
    background: none;
    border: none;
    margin-left: 8px;
    color: #0B5D4C;
    cursor: pointer;
}

.chat-launcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0B5D4C;
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: all 0.3s ease;
}

.chat-launcher:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.chat-launcher-text {
    font-weight: 600;
    font-size: 16px;
}

/* Responsive para el chat */
@media (max-width: 576px) {
    .chat-widget {
        width: 100%;
        height: 70vh;
        bottom: 0;
        right: 0;
        border-radius: 16px 16px 0 0;
    }
    
    .chat-launcher {
        width: auto;
        border-radius: 50px;
        padding: 12px;
    }
    
    .chat-launcher-text {
        display: none;
    }
}

/* Sección Habla Con Gauchito */
.try-gauchito-section {
    padding: 0;
    margin: 80px 0;
}

.try-gauchito-container {
    background-color: #004938;
    border-radius: 16px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.try-gauchito-content {
    max-width: 60%;
    z-index: 2;
}

.try-gauchito-content h2 {
    color: white;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 56px;
    line-height: 63px;
    letter-spacing: 0px;
}


.try-gauchito-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
}

.btn-light-gauchito {
    background-color: #CEF60D;
    color: #0B5D4C;
    border: none;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 69px;
    font-weight: 500;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #014933;
}

.btn-light:hover {
    background-color: #d9ff1a;
    transform: translateY(-2px);
}

.try-gauchito-icon {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.icon-ellipse {
    width: 280px;
    height: 280px;
    background-color: #E0FF22;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.background-ellipse {
    display: none;
}

/* Ajuste de los iconos de rayo y flecha */
.rayo-icon {
    width: 65px;
}

.flecha-icon {
    width: 120px;
}

@media (max-width: 768px) {
    .try-gauchito-container {
        padding: 40px 30px;
        flex-direction: column;
        text-align: center;
    }
    
    .try-gauchito-content {
        max-width: 100%;
    }
    
    .try-gauchito-content h2 {
        font-size: 32px;
    }
    
    .try-gauchito-icon {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin-top: 30px;
    }
    
    .icon-ellipse {
        width: 150px;
        height: 150px;
    }
    
    .rayo-icon {
        width: 45px;
        height: 65px;
        left: 30px;
        top: 30px;
    }
    
    .flecha-icon {
        width: 90px;
        height: 54px;
        right: 20px;
        bottom: 30px;
    }
}

/* Calculadora de ROI Simplificada */
.roi-calculator-simple {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.roi-header {
    text-align: center;
    margin-bottom: 50px;
}

.roi-header h2 {
    margin-bottom: 16px;
    color: #004938;
}

.roi-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.roi-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.roi-calculator {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.roi-explanation {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9ff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.roi-explanation h4 {
    color: #004938;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.roi-explanation ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.roi-explanation li {
    margin-bottom: 16px;
    color: #333;
    line-height: 1.6;
}

.roi-explanation strong {
    color: #004938;
    font-weight: 600;
}

.roi-explanation p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.roi-cta {
    margin-top: 30px;
    text-align: center;
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .roi-content {
        flex-direction: column;
    }
    
    .roi-calculator, 
    .roi-explanation {
        width: 100%;
    }
}

/* Estilos para el contenedor de vista previa del video */
.video-preview-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-preview-container:hover .video-thumbnail {
    transform: scale(1.02);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2;
    transition: all 0.3s ease;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Modal de video */
.video-modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 80%;
    max-width: 900px;
}

.close-video-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1101;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Relación de aspecto 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive para el modal de video */
@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .close-video-modal {
        top: -30px;
        font-size: 30px;
    }
}

/* Optimizaciones para dispositivos móviles */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Estilos para imágenes sin lazy-loading */
img.no-lazy {
    opacity: 1 !important; /* Asegurar que siempre sea visible */
}

/* Ajustar los estilos existentes para lazy-loading */
.lazy-loaded:not(.no-lazy) {
    transition: opacity 0.3s ease;
    opacity: 0;
}

.lazy-loaded:not(.no-lazy)[src^="data:image"] {
    opacity: 0;
}

.lazy-loaded:not(.no-lazy)[src^="assets/"] {
    opacity: 1;
}

/* Optimizaciones para animaciones en móviles */
@media (max-width: 768px) {
    .testimonial-slide {
        transition-duration: 0.4s;
    }
    
    .testimonial-dot {
        width: 12px;
        height: 12px;
    }
    
    @keyframes testimonialFadeInMobile {
        from {
            opacity: 0;
            transform: translateY(15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .testimonial-section.animate .section-header,
    .testimonial-section.animate .testimonial-container {
        animation-name: testimonialFadeInMobile;
        animation-duration: 0.6s;
    }
}

/* Estilos para el selector de idiomas */
.language-selector {
    position: relative;
    display: inline-block;
}

.current-language {
    display: flex;
    align-items: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px 10px;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 150px;
}

.language-dropdown.show {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.language-option:hover {
    background-color: #f5f5f5;
}

.language-option.active {
    background-color: #f0f0f0;
    font-weight: bold;
}

.flag-icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Estilos para la sección de comparación */
.comparison-section {
    padding: 80px 0;
}

.comparison-table-container {
    overflow-x: auto;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    font-size: 16px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    padding: 20px 16px;
}

.comparison-table .feature-column {
    text-align: left;
    font-weight: 500;
}

.comparison-table .gauchito-column {
    background-color: rgba(11, 93, 76, 0.05);
}

.comparison-logo {
    height: 30px;
    max-width: 100px;
    object-fit: contain;
}

.comparison-table tbody tr:hover {
    background-color: rgba(11, 93, 76, 0.03);
}

.has-feature .checkmark {
    color: #0B5D4C;
    font-weight: bold;
    font-size: 20px;
}

.no-feature .cross {
    color: #e74c3c;
    font-weight: bold;
}

.limited-feature .limited {
    color: #f39c12;
    font-size: 14px;
}

/* Estilos para el CTA de comparación (igual al de testimonios) */
.comparison-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.comparison-cta p {
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
    color: #666;
}

.comparison-cta .btn {
    margin-top: 8px;
}

/* Estilos para títulos de sección */
.section-title {
    font-size: 42px;
    font-weight: 500;
    letter-spacing: -1px;
    text-transform: capitalize;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
}

/* Estilos específicos para el título en la sección de estadísticas */
.stats-content .section-title {
    font-weight: 500;
    letter-spacing: -1px;
    text-transform: capitalize;
    margin-bottom: 16px;
    text-align: left;
}

/* Estilos para las categorías de FAQ */
.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.faq-category-btn {
    padding: 10px 20px;
    background-color: #f5f5f5;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category-btn.active {
    background-color: #0B5D4C;
    color: white;
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

/* Estilos para el enlace a FAQ */
.faq-link {
    color: #0B5D4C;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.faq-link:hover {
    color: #084238;
}

/* Ajustes para la sección de onboarding */
.onboarding {
    padding: 80px 0;
}

/* Estilos para la sección de FAQ */
.faq {
    padding: 80px 0;
    background-color: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0B5D4C;
}

.faq-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.faq-content {
    display: flex;
    gap: 40px;
}

.faq-list {
    flex: 1;
}

.faq-item {
    border-bottom: 1px solid #E5E5E5;
    margin-bottom: 16px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.faq-toggle {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    position: relative;
    cursor: pointer;
    color: #0B5D4C;
}

.faq-toggle .plus,
.faq-toggle .minus {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.faq-toggle .minus {
    opacity: 0;
    transform: rotate(-90deg);
}

.faq-item.active .faq-toggle .plus {
    opacity: 0;
    transform: rotate(90deg);
}

.faq-item.active .faq-toggle .minus {
    opacity: 1;
    transform: rotate(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 16px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Estilos para el bloque de contacto en FAQ */
.faq-contact {
    border-radius: 16px;
    padding: 30px;
    color: white;
    margin-left: 30px;
    flex: 0 0 35%;
}

.faq-contact-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.faq-contact h3 {
    margin-bottom: 15px;
    font-weight: 500;
    font-size: 40px;
    letter-spacing: -1px;
    color: #000000;
}

.faq-contact p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #00000099;
}

.faq-contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.faq-contact .email-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    color: white;
    width: 100%;
}

.faq-contact .email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.faq-contact .btn-primary {
    background-color: #CEF60D;
    color: #004938;
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-contact .btn-primary:hover {
    background-color: #d9ff33;
}

.faq-more-link {
    display: flex;
    align-items: center;
    color: #014933;
    text-decoration: none;
    font-size: 14px;
    margin-top: auto;
    align-self: flex-start;
}

/* Estructura general de la sección FAQ */
.faq-content {
    display: flex;
    margin-top: 40px;
}

.faq-list {
    flex: 1;
}

@media (max-width: 992px) {
    .faq-content {
        flex-direction: column;
    }
    
    .faq-contact {
        margin-left: 0;
        margin-top: 30px;
        flex: none;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .faq-contact {
        padding: 20px;
    }
    
    .faq-contact h3 {
        font-size: 20px;
    }
    
    .faq-contact p {
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background-color: #f9f9f9;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo img {
    width: 146px;
    height: 33px;
    object-fit: contain;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #014933;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.btn-outline {
    border: 2px solid #014933;
    color: #014933;
    background-color: transparent;
}

.btn-outline:hover {
    background-color: #014933;
    color: white;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-links-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #014933;
}

.footer-links-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-column a {
    color: #555;
    transition: color 0.3s ease;
}

.footer-links-column a:hover {
    color: #014933;
}

.footer-bottom {
    background-color: #000000;
    color: white;
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* Responsive para el footer */
@media (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-left {
        align-items: center;
        text-align: center;
    }
    
    .footer-links {
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

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

.pricing-cta {
    text-align: center;
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.pricing-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.pricing-header p {
    font-size: 18px;
    color: #555;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.toggle-option {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    display: flex;
    align-items: center;
}

.toggle-option.active {
    color: #000;
    font-weight: 600;
}

.discount {
    background-color: #CEF60D;
    color: #014933;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    margin-left: 8px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #0B5D4C;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-plans {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 80px;
}

.pricing-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px;
    flex: 1;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #0B5D4C;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #CEF60D;
    color: #014933;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-description {
    color: #555;
    font-size: 16px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: #555;
}

.price.annual {
    display: none;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
}

.feature-disabled {
    color: #999;
}

.btn-outline-pricing {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border: 2px solid #0B5D4C;
    color: #0B5D4C;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-pricing:hover {
    background-color: #0B5D4C;
    color: white;
}

.btn-primary-pricing {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background-color: #0B5D4C;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary-pricing:hover {
    background-color: #084238;
    transform: translateY(-2px);
}

.pricing-faq {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-faq h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pricing-faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #014933;
}

.pricing-faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Responsive para la sección de precios */
@media (max-width: 992px) {
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        max-width: 100%;
        width: 100%;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-header h2 {
        font-size: 36px;
    }
    
    .pricing-toggle {
        flex-direction: column;
    }
}

/* Sección de Casos de Éxito */
.case-study-card {
    background-color: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-study-card.featured {
    border: 2px solid #0B5D4C;
    transform: scale(1.05);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.case-study-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
}

.case-study-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.case-study-company h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #000;
}

.case-study-company p {
    font-size: 16px;
    color: #555;
}

.case-study-metrics {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value {
    font-size: 32px;
    font-weight: 700;
    color: #0B5D4C;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: #555;
}

.case-study-content {
    flex-grow: 1;
    margin-bottom: 30px;
}

.case-study-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 24px;
}

.case-study-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.case-study-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.case-study-author h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.case-study-author p {
    font-size: 14px;
    color: #555;
    margin: 0;
}

.btn-case-study {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #0B5D4C;
    font-weight: 600;
    border: 2px solid #0B5D4C;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-case-study:hover {
    background-color: #0B5D4C;
    color: white;
}

/* Responsive para casos de estudio */
@media (max-width: 992px) {
    .case-study-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .metric {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        text-align: left;
    }
    
    .metric-value {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .case-study-card {
        padding: 30px;
    }
    
    .case-study-header {
        flex-direction: column;
        text-align: center;
    }
    
    .case-study-company {
        text-align: center;
    }
    
    .btn-case-study {
        width: 100%;
    }
}

/* Sección de Onboarding */
.onboarding-section {
    padding: 100px 0;
}

.onboarding-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.onboarding-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.onboarding-header p {
    font-size: 20px;
    color: #555;
}

.onboarding-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.onboarding-step {
    flex: 1;
    position: relative;
    background-color: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.onboarding-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: #0B5D4C;
    color: #CEF60D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.step-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    min-height: 72px;
}

.step-content img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
}

.onboarding-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.onboarding-cta {
    text-align: center;
    margin-top: 0px;
    padding: 20px;
    border-radius: 12px;
}

.onboarding-cta p {
    font-size: 16px;
    margin-bottom: 15px;
}

.onboarding-cta .btn {
    margin-top: 5px;
}

@media (max-width: 768px) {
    .onboarding-cta {
        margin-top: 30px;
        padding: 15px;
    }
    
    .onboarding-cta p {
        font-size: 14px;
    }
}

/* Estilos para CTAs estratégicos */

/* CTA después de estadísticas */
.stats-cta {
    text-align: center;
    margin-top: 40px;
}

/* CTA después de características */
.features-cta {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 12px;
}

.features-cta p {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 500;
}

/* CTA después de testimonios */
.testimonials-cta {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.testimonials-cta p {
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
    color: #666;
}

.testimonials-cta .btn {
    margin-top: 8px;
}

/* Mejora del CTA de onboarding */
.onboarding-cta {
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

/* Botón flotante para móviles */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
}

.floating-cta .btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 14px 24px;
    border-radius: 50px;
}

@media (max-width: 768px) {
    .floating-cta {
        display: block;
    }
}

/* Widget de Chat */
.chat-widget {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    height: 500px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 5px 40px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    transform: translateY(120%);
    transition: transform 0.3s ease;
}

.chat-widget.active {
    transform: translateY(0);
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 16px;
    background-color: #0B5D4C;
    color: white;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    background-color: #CEF60D;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-avatar img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.chat-info {
    flex: 1;
}

.chat-info h4 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.chat-status {
    font-size: 12px;
    margin: 0;
    color: #CEF60D;
}

.chat-minimize {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
}

.chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: calc(100% - 72px);
}

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
}

.message.user {
    align-self: flex-end;
}

.message.bot {
    align-self: flex-start;
}

.message-content {
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.4;
}

.message.user .message-content {
    background-color: #0B5D4C;
    color: white;
    border-bottom-right-radius: 4px;
}

.message.bot .message-content {
    background-color: #f0f0f0;
    color: #333;
    border-bottom-left-radius: 4px;
}

.message-time {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    align-self: flex-end;
}

.message.user .message-time {
    align-self: flex-end;
}

.message.bot .message-time {
    align-self: flex-start;
}

.chat-quick-replies {
    padding: 12px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid #eee;
}

.quick-reply {
    background-color: #f0f0f0;
    border: none;
    border-radius: 16px;
    padding: 8px 16px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quick-reply:hover {
    background-color: #e0e0e0;
}

.chat-input {
    display: flex;
    padding: 12px 16px;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    border: none;
    padding: 10px 12px;
    border-radius: 20px;
    background-color: #f5f5f5;
    font-size: 14px;
    outline: none;
}

.chat-input button {
    background: none;
    border: none;
    margin-left: 8px;
    color: #0B5D4C;
    cursor: pointer;
}

.chat-launcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0B5D4C;
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: all 0.3s ease;
}

.chat-launcher:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.chat-launcher-text {
    font-weight: 600;
    font-size: 16px;
}

/* Responsive para el chat */
@media (max-width: 576px) {
    .chat-widget {
        width: 100%;
        height: 70vh;
        bottom: 0;
        right: 0;
        border-radius: 16px 16px 0 0;
    }
    
    .chat-launcher {
        width: auto;
        border-radius: 50px;
        padding: 12px;
    }
    
    .chat-launcher-text {
        display: none;
    }
}

/* Estilos para la descripción de onboarding */
.onboarding-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin-bottom: 60px;
    margin-top: 16px;
    text-align: left;
    line-height: 1.6;
}

/* Estilos para el texto en los pasos de onboarding */
.step-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Subtítulo destacado para prueba gratuita */
.pricing-trial-highlight {
    font-size: 18px;
    color: #0B5D4C;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 26px;
    background-color: rgba(206, 246, 13, 0.2);
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-block;
}

/* Estilo actualizado para el botón CTA en el navbar */
.cta-button .btn-primary {
    border-radius: 70px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0px;
}

/* Estilo actualizado para el botón CTA en el hero */
.btn-hero {
    border-radius: 70px;
    padding: 20px 24px;
    background-color: #004938;
    color: #CEF60D;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #003a2e;
}

/* Estilo específico para el botón CTA en la sección CTA */
.btn-cta-light {
    border-radius: 64px;
    padding-top: 16px;
    padding-right: 48px;
    padding-bottom: 16px;
    padding-left: 48px;
    background-color: #FFFFFF;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0px;
    color: #014933;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #F5F5F5;
}

/* Estilos para la explicación de la calculadora */
.calculator-explanation {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9ff;
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-explanation h4 {
    color: #004938;
    font-size: 18px;
    margin-bottom: 16px;
}

.calculator-explanation ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.calculator-explanation li {
    margin-bottom: 10px;
    color: #333;
}

.calculator-explanation strong {
    color: #004938;
}

.calculator-explanation p {
    font-size: 14px;
    color: #666;
}

/* Estilos para la sección CTA de la calculadora */
.calculator-cta-section {
    background: linear-gradient(90deg, #004938 0%, #0B5D4C 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.calculator-cta-section::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -5%;
    width: 50%;
    height: 120%;
    background: radial-gradient(circle, rgba(206, 246, 13, 0.3) 0%, rgba(206, 246, 13, 0) 70%);
    z-index: 1;
    border-radius: 50%;
}

.calculator-cta-section::after {
    content: "";
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 40%;
    height: 120%;
    background: radial-gradient(circle, rgba(206, 246, 13, 0.2) 0%, rgba(206, 246, 13, 0) 70%);
    z-index: 1;
    border-radius: 50%;
}

.calculator-cta-section .cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.calculator-cta-section .cta-left {
    flex: 1;
    min-width: 300px;
    color: #fff;
}

.calculator-cta-section .cta-left h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.calculator-cta-section .cta-left p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
}

.calculator-cta-section .roi-explanation {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.calculator-cta-section .roi-explanation h4 {
    color: #CEF60D;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.calculator-cta-section .roi-explanation ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.calculator-cta-section .roi-explanation li {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.calculator-cta-section .roi-explanation strong {
    color: #CEF60D;
    font-weight: 600;
}

.calculator-cta-section .roi-small-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.calculator-cta-section .cta-right {
    flex: 1;
    min-width: 300px;
}

.calculator-cta-section .calculator-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.calculator-cta-section .calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.calculator-cta-section .input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calculator-cta-section .input-group label {
    font-weight: 500;
    color: #fff;
    font-size: 16px;
}

.calculator-cta-section .input-with-controls {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.calculator-cta-section .input-control {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calculator-cta-section .input-control:hover {
    background: rgba(255, 255, 255, 0.3);
}

.calculator-cta-section input[type="number"] {
    flex: 1;
    border: none;
    padding: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    background: transparent;
    color: #fff;
}

.calculator-cta-section .calculator-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calculator-cta-section .result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
}

.calculator-cta-section .result-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(206, 246, 13, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator-cta-section .result-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.calculator-cta-section .result-value {
    font-size: 28px;
    font-weight: 700;
    color: #CEF60D;
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .calculator-cta-section .cta-content {
        flex-direction: column;
    }
    
    .calculator-cta-section .cta-left,
    .calculator-cta-section .cta-right {
        width: 100%;
    }
    
    .calculator-cta-section .cta-left h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .calculator-cta-section {
        padding: 60px 0;
    }
    
    .calculator-cta-section .result-value {
        font-size: 24px;
    }
    
    .calculator-cta-section .calculator-container {
        padding: 20px;
    }
}

/* Estilos mejorados para la calculadora en cta-right */
.cta-section .cta-right {
    flex: 1;
    min-width: 300px;
}

.cta-section .roi-left {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.cta-section .roi-left:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.cta-section .calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-section .input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-section .input-group label {
    font-weight: 500;
    color: #fff;
    font-size: 15px;
    opacity: 0.9;
}

.cta-section .input-with-controls {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-section .input-with-controls:hover,
.cta-section .input-with-controls:focus-within {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(206, 246, 13, 0.4);
}

.cta-section .input-control {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section .input-control:hover {
    background: rgba(206, 246, 13, 0.2);
}

.cta-section .input-control.decrease::before {
    content: "-";
}

.cta-section .input-control.increase::before {
    content: "+";
}

.cta-section input[type="number"] {
    flex: 1;
    border: none;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    background: transparent;
    color: #fff;
}

/* Ocultar las flechas de incremento/decremento nativas */
.cta-section input[type="number"]::-webkit-inner-spin-button,
.cta-section input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Resultados en una sola fila */
.cta-section .calculator-results {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section .result-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 12px 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-section .result-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-section .result-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(206, 246, 13, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.cta-section .result-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-section .result-content h3 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.cta-section .result-value {
    font-size: 22px;
    font-weight: 700;
    color: #CEF60D;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .cta-section .calculator-results {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cta-section .result-item {
        min-width: 100px;
    }
}

@media (max-width: 576px) {
    .cta-section .roi-left {
        padding: 20px 15px;
    }
    
    .cta-section .calculator-results {
        padding: 12px 8px;
    }
    
    .cta-section .result-icon {
        width: 32px;
        height: 32px;
    }
    
    .cta-section .result-content h3 {
        font-size: 12px;
    }
    
    .cta-section .result-value {
        font-size: 18px;
    }
}

/* Estilos para los tooltips informativos */
.cta-section .info-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    vertical-align: middle;
    width: 16px;
    height: 16px;
}

.cta-section .info-icon-svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.cta-section .info-tooltip:hover .info-icon-svg,
.cta-section .info-tooltip:focus .info-icon-svg {
    color: #004938;
    background-color: rgba(206, 246, 13, 0.6);
}

.cta-section .tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: left;
    border-radius: 8px;
    padding: 12px;
    position: absolute;
    z-index: 100;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.cta-section .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
}

.cta-section .info-tooltip:hover .tooltip-text,
.cta-section .info-tooltip:focus .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Ajustes para mejorar la accesibilidad */
.cta-section .info-tooltip:focus {
    outline: none;
}

.cta-section .info-tooltip:focus .info-icon-svg {
    box-shadow: 0 0 0 2px rgba(206, 246, 13, 0.5);
}

/* Ajuste para el posicionamiento del texto en los resultados */
.cta-section .result-content h3 {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

/* Estilos para el disclaimer desplegable */
.calculator-disclaimer {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.disclaimer-toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all 0.3s ease;
}

.disclaimer-toggle:hover {
    color: #CEF60D;
}

.toggle-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
}

.disclaimer-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
    color: #CEF60D;
}

.disclaimer-content {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.disclaimer-content li {
    margin-bottom: 10px;
    padding-left: 0;
}

.disclaimer-content strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.disclaimer-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 576px) {
    .calculator-disclaimer {
        margin-top: 15px;
        padding-top: 12px;
    }
    
    .disclaimer-toggle {
        font-size: 13px;
    }
    
    .disclaimer-content {
        padding: 12px;
        font-size: 12px;
    }
}

/* Estilos para páginas legales */
.legal-content {
    padding: 120px 0 80px;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0B5D4C;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0B5D4C;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: #333;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.legal-section a {
    color: #0B5D4C;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #CEF60D;
}

/* Estilos responsive para páginas legales */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-content h1 {
        font-size: 32px;
    }
    
    .legal-section h2 {
        font-size: 24px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
}

/* Estilos para el ícono de información en las características */
.feature-info {
  display: inline-flex;
  margin-left: 5px;
  cursor: help;
  position: relative;
}

.feature-info svg {
  width: 16px;
  height: 16px;
}

.feature-info:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.4;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  width: 220px;
  text-align: center;
  white-space: normal;
}

.feature-info:hover::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  z-index: 10;
}

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

.pricing-card-footer {
    margin-top: 40px;
}

.pricing-cta {
    text-align: center;
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.pricing-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.pricing-header p {
    font-size: 18px;
    color: #555;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.toggle-option {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    display: flex;
    align-items: center;
}

.toggle-option.active {
    color: #000;
    font-weight: 600;
}

.discount {
    background-color: #CEF60D;
    color: #014933;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    margin-left: 8px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #0B5D4C;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-plans {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 80px;
}

.pricing-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px;
    flex: 1;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #0B5D4C;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #CEF60D;
    color: #014933;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-description {
    color: #555;
    font-size: 16px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: #555;
}

.price.annual {
    display: none;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
}

.feature-disabled {
    color: #999;
}

.btn-outline-pricing {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;    border: 2px solid #0B5D4C;
    color: #0B5D4C;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-pricing:hover {
    background-color: #0B5D4C;
    color: white;
}

.btn-primary-pricing {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background-color: #0B5D4C;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary-pricing:hover {
    background-color: #084238;
    transform: translateY(-2px);
}

.pricing-faq {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-faq h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pricing-faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #014933;
}

.pricing-faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Responsive para la sección de precios */
@media (max-width: 992px) {
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        max-width: 100%;
        width: 100%;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-header h2 {
        font-size: 36px;
    }
    
    .pricing-toggle {
        flex-direction: column;
    }
}


    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 26px;
    background-color: rgba(206, 246, 13, 0.2);
    padding: 8px 16px;
    border-radius: 4px;
    display: inline-block;
}

/* Estilo actualizado para el botón CTA en el navbar */
.cta-button .btn-primary {
    border-radius: 70px;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0px;
}

/* Estilo actualizado para el botón CTA en el hero */
.btn-hero {
    border-radius: 70px;
    padding: 20px 24px;
    background-color: #004938;
    color: #CEF60D;
    font-weight: 500;
    font-size: 18px;
    line-height: 20px;
    letter-spacing: 0px;
    text-align: center;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #003a2e;
}

/* Estilo específico para el botón CTA en la sección CTA */
.btn-cta-light {
    border-radius: 64px;
    padding-top: 16px;
    padding-right: 48px;
    padding-bottom: 16px;
    padding-left: 48px;
    background-color: #FFFFFF;
    font-weight: 500;
    font-size: 24px;
    letter-spacing: 0px;
    color: #014933;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    background-color: #F5F5F5;
}

/* Estilos para la explicación de la calculadora */
.calculator-explanation {
    margin-top: 40px;
    padding: 20px;
    background-color: #f8f9ff;
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.calculator-explanation h4 {
    color: #004938;
    font-size: 18px;
    margin-bottom: 16px;
}

.calculator-explanation ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.calculator-explanation li {
    margin-bottom: 10px;
    color: #333;
}

.calculator-explanation strong {
    color: #004938;
}

.calculator-explanation p {
    font-size: 14px;
    color: #666;
}

/* Estilos para la sección CTA de la calculadora */
.calculator-cta-section {
    background: linear-gradient(90deg, #004938 0%, #0B5D4C 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.calculator-cta-section::before {
    content: "";
    position: absolute;
    top: -10%;
    left: -5%;
    width: 50%;
    height: 120%;
    background: radial-gradient(circle, rgba(206, 246, 13, 0.3) 0%, rgba(206, 246, 13, 0) 70%);
    z-index: 1;
    border-radius: 50%;
}

.calculator-cta-section::after {
    content: "";
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 40%;
    height: 120%;
    background: radial-gradient(circle, rgba(206, 246, 13, 0.2) 0%, rgba(206, 246, 13, 0) 70%);
    z-index: 1;
    border-radius: 50%;
}

.calculator-cta-section .cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.calculator-cta-section .cta-left {
    flex: 1;
    min-width: 300px;
    color: #fff;
}

.calculator-cta-section .cta-left h2 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.calculator-cta-section .cta-left p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 30px;
}

.calculator-cta-section .roi-explanation {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.calculator-cta-section .roi-explanation h4 {
    color: #CEF60D;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.calculator-cta-section .roi-explanation ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.calculator-cta-section .roi-explanation li {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.calculator-cta-section .roi-explanation strong {
    color: #CEF60D;
    font-weight: 600;
}

.calculator-cta-section .roi-small-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.calculator-cta-section .cta-right {
    flex: 1;
    min-width: 300px;
}

.calculator-cta-section .calculator-container {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.calculator-cta-section .calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.calculator-cta-section .input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calculator-cta-section .input-group label {
    font-weight: 500;
    color: #fff;
    font-size: 16px;
}

.calculator-cta-section .input-with-controls {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.calculator-cta-section .input-control {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calculator-cta-section .input-control:hover {
    background: rgba(255, 255, 255, 0.3);
}

.calculator-cta-section input[type="number"] {
    flex: 1;
    border: none;
    padding: 12px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    background: transparent;
    color: #fff;
}

.calculator-cta-section .calculator-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calculator-cta-section .result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
}

.calculator-cta-section .result-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(206, 246, 13, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator-cta-section .result-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.calculator-cta-section .result-value {
    font-size: 28px;
    font-weight: 700;
    color: #CEF60D;
}

/* Estilos responsivos */
@media (max-width: 992px) {
    .calculator-cta-section .cta-content {
        flex-direction: column;
    }
    
    .calculator-cta-section .cta-left,
    .calculator-cta-section .cta-right {
        width: 100%;
    }
    
    .calculator-cta-section .cta-left h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .calculator-cta-section {
        padding: 60px 0;
    }
    
    .calculator-cta-section .result-value {
        font-size: 24px;
    }
    
    .calculator-cta-section .calculator-container {
        padding: 20px;
    }
}

/* Estilos mejorados para la calculadora en cta-right */
.cta-section .cta-right {
    flex: 1;
    min-width: 300px;
}

.cta-section .roi-left {
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.cta-section .roi-left:hover {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
}

.cta-section .calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-section .input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-section .input-group label {
    font-weight: 500;
    color: #fff;
    font-size: 15px;
    opacity: 0.9;
}

.cta-section .input-with-controls {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta-section .input-with-controls:hover,
.cta-section .input-with-controls:focus-within {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(206, 246, 13, 0.4);
}

.cta-section .input-control {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-section .input-control:hover {
    background: rgba(206, 246, 13, 0.2);
}

.cta-section .input-control.decrease::before {
    content: "-";
}

.cta-section .input-control.increase::before {
    content: "+";
}

.cta-section input[type="number"] {
    flex: 1;
    border: none;
    padding: 10px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    background: transparent;
    color: #fff;
}

/* Ocultar las flechas de incremento/decremento nativas */
.cta-section input[type="number"]::-webkit-inner-spin-button,
.cta-section input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Resultados en una sola fila */
.cta-section .calculator-results {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section .result-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 12px 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-section .result-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cta-section .result-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(206, 246, 13, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.cta-section .result-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-section .result-content h3 {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.cta-section .result-value {
    font-size: 22px;
    font-weight: 700;
    color: #CEF60D;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .cta-section .calculator-results {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cta-section .result-item {
        min-width: 100px;
    }
}

@media (max-width: 576px) {
    .cta-section .roi-left {
        padding: 20px 15px;
    }
    
    .cta-section .calculator-results {
        padding: 12px 8px;
    }
    
    .cta-section .result-icon {
        width: 32px;
        height: 32px;
    }
    
    .cta-section .result-content h3 {
        font-size: 12px;
    }
    
    .cta-section .result-value {
        font-size: 18px;
    }
}

/* Estilos para los tooltips informativos */
.cta-section .info-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    vertical-align: middle;
    width: 16px;
    height: 16px;
}

.cta-section .info-icon-svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.cta-section .info-tooltip:hover .info-icon-svg,
.cta-section .info-tooltip:focus .info-icon-svg {
    color: #004938;
    background-color: rgba(206, 246, 13, 0.6);
}

.cta-section .tooltip-text {
    visibility: hidden;
    width: 220px;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    text-align: left;
    border-radius: 8px;
    padding: 12px;
    position: absolute;
    z-index: 100;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 400;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    pointer-events: none;
}

.cta-section .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
}

.cta-section .info-tooltip:hover .tooltip-text,
.cta-section .info-tooltip:focus .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Ajustes para mejorar la accesibilidad */
.cta-section .info-tooltip:focus {
    outline: none;
}

.cta-section .info-tooltip:focus .info-icon-svg {
    box-shadow: 0 0 0 2px rgba(206, 246, 13, 0.5);
}

/* Ajuste para el posicionamiento del texto en los resultados */
.cta-section .result-content h3 {
    display: flex;
    align-items: center;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

/* Estilos para el disclaimer desplegable */
.calculator-disclaimer {
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.disclaimer-toggle {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all 0.3s ease;
}

.disclaimer-toggle:hover {
    color: #CEF60D;
}

.toggle-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.5);
}

.disclaimer-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
    color: #CEF60D;
}

.disclaimer-content {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 12px 0;
}

.disclaimer-content li {
    margin-bottom: 10px;
    padding-left: 0;
}

.disclaimer-content strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
}

.disclaimer-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 576px) {
    .calculator-disclaimer {
        margin-top: 15px;
        padding-top: 12px;
    }
    
    .disclaimer-toggle {
        font-size: 13px;
    }
    
    .disclaimer-content {
        padding: 12px;
        font-size: 12px;
    }
}

/* Estilos para páginas legales */
.legal-content {
    padding: 120px 0 80px;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0B5D4C;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #0B5D4C;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: #333;
}

.legal-section p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}

.legal-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.legal-section a {
    color: #0B5D4C;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #CEF60D;
}

/* Estilos responsive para páginas legales */
@media (max-width: 768px) {
    .legal-content {
        padding: 100px 0 60px;
    }
    
    .legal-content h1 {
        font-size: 32px;
    }
    
    .legal-section h2 {
        font-size: 24px;
    }
    
    .legal-section h3 {
        font-size: 18px;
    }
}

/* Estilos para el ícono de información en las características */
.feature-info {
  display: inline-flex;
  margin-left: 5px;
  cursor: help;
  position: relative;
}

.feature-info svg {
  width: 16px;
  height: 16px;
}

.feature-info:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1.4;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  width: 220px;
  text-align: center;
  white-space: normal;
}

.feature-info:hover::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  z-index: 10;
}

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

.pricing-card-footer {
    margin-top: 40px;
}

.pricing-cta {
    text-align: center;
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.pricing-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #000;
}

.pricing-header p {
    font-size: 18px;
    color: #555;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.toggle-option {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    display: flex;
    align-items: center;
}

.toggle-option.active {
    color: #000;
    font-weight: 600;
}

.discount {
    background-color: #CEF60D;
    color: #014933;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
    margin-left: 8px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: #0B5D4C;
}

input:checked + .slider:before {
    transform: translateX(30px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.pricing-plans {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 80px;
}

.pricing-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px;
    flex: 1;
    max-width: 350px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid #0B5D4C;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #CEF60D;
    color: #014933;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-card-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-description {
    color: #555;
    font-size: 16px;
}

.pricing-price {
    text-align: center;
    margin-bottom: 32px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

.price span {
    font-size: 16px;
    font-weight: 500;
    color: #555;
}

.price.annual {
    display: none;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
}

.feature-disabled {
    color: #999;
}

.btn-outline-pricing {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;    border: 2px solid #0B5D4C;
    color: #0B5D4C;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-pricing:hover {
    background-color: #0B5D4C;
    color: white;
}

.btn-primary-pricing {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background-color: #0B5D4C;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary-pricing:hover {
    background-color: #084238;
    transform: translateY(-2px);
}

.pricing-faq {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-faq h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 40px;
}

.pricing-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pricing-faq-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #014933;
}

.pricing-faq-item p {
    color: #555;
    line-height: 1.6;
}

/* Responsive para la sección de precios */
@media (max-width: 992px) {
    .pricing-plans {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        max-width: 100%;
        width: 100%;
    }
    
    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .pricing-faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pricing-header h2 {
        font-size: 36px;
    }
    
    .pricing-toggle {
        flex-direction: column;
    }
}

