html {
            scroll-behavior: smooth;
        }
        .form-btn {
            position: relative;
            z-index: 1000;
        }
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
        .form-alert {
            padding: 10px 15px;
            border-radius: 4px;
            margin-top: 15px;
            display: block;
        }
        
        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }
        
        .alert-error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }
        
        .spinner-border {
            vertical-align: middle;
        }

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

        header h1 {
            font-size: 3.5em;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        header p {
            font-size: 1.2em;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.2em;
            font-weight: 700;
            margin-bottom: 40px;
            text-align: center;
            color: var(--text-dark);
        }

        .objective, .services-intro, .program-audience {
            background-color: var(--bg-light);
            border-radius: 8px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .objective h2, .services-intro h2, .program-audience h2 {
            font-size: 1.8em;
            font-weight: 500;
            color: var(--primary-blue);
            margin-top: 0;
            display: flex;
            align-items: center;
        }

        .objective h2 span, .services-intro h2 span, .program-audience h2 span {
            font-size: 1.2em;
            margin-right: 10px;
            line-height: 1;
        }
        :root {
            --primary-blue: #1A73E8;
            --light-blue: #E8F0FE;
            --text-dark: #202124;
            --text-light: #5F6368;
            --border-color: #DADCE0;
            --bg-light: #F8F9FA;
        }

        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 60px;
        }

        .service-item {
            background-color: #fff;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }

        .service-item:hover {
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .service-item h3 {
            font-size: 1.4em;
            font-weight: 500;
            color: var(--primary-blue);
            margin-top: 0;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .service-item h3 span {
            font-size: 1.1em;
            margin-right: 10px;
            line-height: 1;
        }

        .service-item p, .service-item ul {
            font-size: 1em;
            color: var(--text-light);
            margin-bottom: 10px;
        }

        .service-item ul {
            list-style: none;
            padding: 0;
            margin-top: 5px;
        }

        .service-item ul li {
            position: relative;
            padding-left: 20px;
            margin-bottom: 5px;
        }

        .service-item ul li::before {
            content: '•';
            color: var(--primary-blue);
            position: absolute;
            left: 0;
            top: 0;
        }

        

        .pricing-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 30px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            border-radius: 8px;
            overflow: hidden; /* Ensures border-radius applies to table content */
        }

        .pricing-table th, .pricing-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid var(--border-color);
        }

        .pricing-table th {
            background-color: var(--primary-blue);
            color: #fff;
            font-weight: 500;
            font-size: 1.1em;
        }

        .pricing-table td {
            background-color: #fff;
            color: var(--text-dark);
        }

        .pricing-table tr:last-child td {
            border-bottom: none;
        }

        .pricing-table .plan-name {
            font-weight: 700;
            color: var(--primary-blue);
        }

        .pricing-table .price-uf {
            font-size: 1.1em;
            font-weight: 700;
        }

        .pricing-plans {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .plan-card {
            background-color: #fff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .plan-card.highlight {
            border-color: var(--primary-blue);
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        .plan-card h3 {
            font-size: 1.8em;
            font-weight: 700;
            color: var(--primary-blue);
            margin-top: 0;
            margin-bottom: 10px;
        }

        .plan-card .duration {
            font-size: 1.1em;
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .plan-card .price {
            font-size: 2.8em;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .plan-card .price small {
            font-size: 0.5em;
            color: var(--text-light);
        }

        .plan-card .advisory-hours {
            font-size: 1em;
            color: var(--text-light);
            margin-bottom: 15px;
        }

        .plan-card .benefit {
            font-size: 0.95em;
            color: var(--text-dark);
            min-height: 40px; /* To align buttons */
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

        .plan-card .benefit.no-benefit {
            color: var(--text-light);
        }

        .plan-card button {
            background-color: var(--primary-blue);
            color: #fff;
            border: none;
            padding: 15px 30px;
            border-radius: 6px;
            font-size: 1.1em;
            font-weight: 500;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            width: 100%;
        }

        .plan-card button:hover {
            background-color: #155bb5;
            transform: translateY(-2px);
        }

        .program-audience ul {
            list-style: none;
            padding: 0;
        }

        .program-audience ul li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            font-size: 1.1em;
            color: var(--text-dark);
        }

        .program-audience ul li::before {
            content: '✔'; /* You can replace with an actual icon if using Font Awesome */
            color: var(--primary-blue);
            font-weight: 700;
            position: absolute;
            left: 0;
            top: 0;
        }

        @media (max-width: 768px) {
            header h1 {
                font-size: 2.5em;
            }
            .section-title {
                font-size: 1.8em;
            }
            .service-item, .plan-card {
                padding: 20px;
            }
            .pricing-table th, .pricing-table td {
                padding: 12px;
                font-size: 0.9em;
            }
        }

        @media (max-width: 480px) {
            .container {
                margin: 20px auto;
            }
            header h1 {
                font-size: 2em;
            }
            header p {
                font-size: 1em;
            }
            .section-title {
                font-size: 1.5em;
            }
            .service-item h3 {
                font-size: 1.2em;
            }
            .plan-card h3 {
                font-size: 1.5em;
            }
            .plan-card .price {
                font-size: 2.2em;
            }
            .pricing-table {
                font-size: 0.8em;
            }
        }
        .whatsapp-float {
          position: fixed;
          bottom: 20px;
          right: 20px;
          width: 60px;
          height: 60px;
          z-index: 1000;
          display: flex;
          justify-content: center;
          align-items: center;
          background-color: #25D366;
          border-radius: 50%;
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
          transition: transform 0.3s;
        }
        
        .whatsapp-float:hover {
          transform: scale(1.1);
        }
        
        .whatsapp-float img {
          width: 32px;
          height: 32px;
        }
        .equal-height {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
/* Menú móvil mejorado */
        @media (max-width: 991.98px) {
          .navbar-collapse {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: #0069d9; /* Un azul un poco más oscuro para contraste */
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            z-index: 1000;
          }
          
          .navbar-collapse.show {
            max-height: 500px; /* Ajusta según la cantidad de items */
            padding: 10px 15px;
            border-top: 1px solid rgba(255,255,255,0.1);
          }
          
          .navbar-nav {
            padding: 10px 0;
          }
          
          .nav-item {
            margin: 8px 0;
            transition: transform 0.3s;
          }
          
          .nav-item:hover {
            transform: translateX(5px);
          }
          
          .nav-link {
            color: white !important;
            font-size: 1.1rem;
            display: block;
            padding: 8px 15px;
            border-left: 3px solid transparent;
            transition: all 0.3s;
          }
          
          .nav-link:hover {
            border-left: 3px solid white;
            background-color: rgba(255,255,255,0.05);
          }
        }
        /* Estilos específicos para pantallas pequeñas (menores a 768px) */
        @media (max-width: 767.98px) {
          /* Contenedor principal del menú */
          .navbar-collapse {
            position: fixed;
            top: 60px; /* Ajusta según la altura de tu navbar */
            left: 0;
            right: 0;
            background-color: #0069d9; /* Mantiene tu color azul */
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease-out;
            z-index: 1000;
            width: 100%;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
          }
          
          /* Estado abierto del menú */
          .navbar-collapse.show {
            max-height: 100vh;
            padding: 15px;
            overflow-y: auto; /* Permite scroll si el contenido es largo */
            -webkit-overflow-scrolling: touch; /* Scroll suave en iOS */
          }
          
          /* Lista de navegación */
          .navbar-nav {
            flex-direction: column;
            padding: 10px 0;
          }
          
          /* Items del menú */
          .nav-item {
            margin: 5px 0;
            transition: transform 0.3s;
          }
          
          /* Enlaces del menú */
          .nav-link {
            color: white !important;
            font-size: 1rem;
            display: block;
            padding: 12px 15px; /* Área táctil generosa */
            min-height: 44px; /* Tamaño mínimo recomendado para touch */
            display: flex;
            align-items: center;
            border-left: 3px solid transparent;
            transition: all 0.3s;
          }
          
          /* Efectos hover/interacción */
          .nav-item:hover {
            transform: translateX(5px);
          }
          
          .nav-link:hover {
            border-left: 3px solid white;
            background-color: rgba(255, 255, 255, 0.05);
          }
          
          /* Ajustes específicos para iPhone (notch) */
          @supports (padding-top: env(safe-area-inset-top)) {
            .navbar-collapse {
              padding-left: calc(15px + env(safe-area-inset-left));
              padding-right: calc(15px + env(safe-area-inset-right));
              padding-bottom: calc(15px + env(safe-area-inset-bottom));
            }
          }
          
          /* Ajuste adicional para pantallas muy pequeñas (< 390px) */
          @media (max-width: 389.98px) {
            .nav-link {
              font-size: 0.95rem;
              padding: 10px 12px;
            }
            
            .navbar-collapse {
              top: 55px; /* Ajuste fino para navbar más compacto */
            }
          }
        }
        /* Contenedor principal del carrusel */
        .owl-carousel {
          max-width: 1024px; /* Ajusta este valor según necesites */
          margin: 0 auto;
        }
        
        /* Items individuales */
        .owl-carousel .item {
          padding: 0 15px; /* Espacio entre items */
        }
        
        /* Imágenes dentro del carrusel */
        .owl-carousel .item img {
          max-height: 80px; /* Altura máxima de las imágenes */
          width: auto;
          margin: 0 auto;
          object-fit: contain;
        }
        
        /* Nav buttons */
        .owl-nav {
          text-align: center;
          margin-top: 10px;
        }
        .owl-prev, .owl-next {
          display: inline-block;
          margin: 0 5px;
        }
        @media (max-width: 768px) {
          .footer-content-area {
            padding: 30px 15px;
          }
        
          .footer-content-area .row > div {
            margin-bottom: 30px;
          }
        
          .footer-logo img {
            max-width: 120px;
            margin-bottom: 10px;
          }
        
          .footer-logo a {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            font-weight: bold;
          }
        
          .footer-social-info {
            justify-content: center;
            display: flex;
            gap: 15px;
            margin-top: 15px;
          }
        
          .footer-social-info i {
            font-size: 24px;
          }
        
          .contact_info_area .contact_info {
            text-align: center;
          }
        
          .contact_info_area .contact_info h5 {
            margin-bottom: 10px;
            font-size: 18px;
            font-weight: 600;
          }
        
          .contact_info_area .contact_info p,
          .contact_info_area .contact_info a {
            font-size: 14px;
            margin: 3px 0;
          }
        
          .footer-bar-content {
            padding: 15px 0;
          }
        
          .footer-bar-content p {
            font-size: 14px;
            margin: 0;
          }
        }
