.domain-results-section {
    padding: 60px 0;
    background: #f8f9fc;
}

.results-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #002261;
}

.domain-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.domain-card {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 15px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid #eaeaea;
    transition: 0.3s ease;
}

.domain-card.available {
    border-color: #2b74b9;
}

.domain-card.unavailable {
    opacity: 0.6;
    border-color: #ddd;
}

.domain-info {
    display: flex;
    flex-direction: column;
}

.domain-name {
    font-weight: 700;
    color: #002261;
    font-size: 15px;
}

.domain-price {
    font-size: 13px;
    color: #2b74b9;
    margin-top: 3px;
}

.domain-action input[type="checkbox"] {
    transform: scale(1.2);
    cursor: pointer;
}

.not-available {
    font-size: 13px;
    color: #999;
    font-weight: 600;
}

.hidden {
    display: none !important;
}

#domain-actions {
    margin-top: 40px;
    text-align: center;
}

.continue-btn {
    background: #002261;
    color: #fff;
    border: none;
    padding: 14px 35px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.continue-btn:hover {
    background: #2b74b9;
}


.domain-loading {
    text-align: center;
    padding: 40px 0;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    border: 5px solid rgba(255,255,255,0.2);
    border-top: 5px solid #007bff; /* azul principal */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loading-text {
    font-size: 16px;
    color: #333;
    border: 5px solid rgba(0,0,0,0.1);
    font-weight: 500;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}







.config-box { background: #f9f9f9; padding: 25px; border-radius: 10px; border: 1px solid #eee; }
.primary-selector-grid { display: flex; gap: 15px; flex-wrap: wrap; }
.primary-option { border: 2px solid #ddd; padding: 10px 20px; border-radius: 5px; cursor: pointer; transition: 0.3s; }
.primary-option input { margin-right: 10px; }
.primary-option.active, .primary-option:hover { border-color: #007bff; background: #e7f1ff; }

.hosting-card {
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    transition: transform 0.3s;
    background: #fff;
}
.hosting-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.plan-price {
    font-size: 28px;
    font-weight: bold;
    color: #007bff;
    margin: 15px 0;
}
.plan-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 20px;
}
.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}


.btn-select-plan { background: #007bff; color: #fff; border: none; padding: 5px 15px; border-radius: 4px; margin-top: 10px; }


/* Color cuando está seleccionado (Estilo Hostland) */
.btn-success {
    background-color: #28a745 !important;
    border-color: #28a745 !important;
    color: #fff !important;
}

.hosting-card.selected {
    border: 2px solid #28a745; /* Verde para indicar éxito */
    background-color: #f0fff4; /* Un fondo muy ligero verde */
}

/* Animación simple */
.js-plan-btn {
    transition: all 0.3s ease;
}




/* Corrección de cuadrícula para Hostland */
.home-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.home-services > div[class*="col-"] {
    display: flex;
    flex-direction: column;
}

.home-services .service-box {
    flex: 1; /* Hace que todas las cajas crezcan igual */
    margin-bottom: 30px;
    padding: 20px;
    background: #fff; /* O el color que prefieras */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Ajuste para que el texto no empuje las cajas */
.home-services .service-box p {
    margin-bottom: 0;
}



/* Estilo para los iconos de los números */
.fact-icon {
    font-size: 50px;       /* Tamaño grande */
    color: #2b74b9;       /* Tu azul claro de Althek */
    margin-bottom: 20px;
    display: block;
    text-shadow: 0 0 10px rgba(43, 116, 185, 0.5); /* Un brillo sutil tipo neón */
}

.fun-fact h3 {
    color: #ffffff;       /* Números en blanco */
    font-size: 35px;
    margin-top: 10px;
}

.fun-fact p {
    color: #cccccc;       /* Texto gris claro */
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Solución Definitiva de Alineación para althek Global Services */
@media (min-width: 768px) {
    /* Forzamos al contenedor a comportarse como una caja flexible centrada */
    .mainmenu .navbar-nobg {
        display: flex !important;
        align-items: center !important; /* Centrado vertical perfecto */
        justify-content: space-between; /* Logo a la izq, menú a la der */
        width: 100%;
    }

    /* Quitamos los floats que estorban al Flexbox */
    .navbar-header, .navbar-collapse {
        float: none !important;
        display: inline-block;
        vertical-align: middle;
    }

    /* Limpiamos los márgenes y paddings originales que causan el desfase */
    .navbar-nav {
        margin: 0 !important;
        display: flex;
        align-items: center;
    }

    .navbar-nav > li > a {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        font-family: 'Montserrat', sans-serif !important;
        font-weight: 600;
        font-size: 13px; /* Montserrat es un poco más ancha, bajamos un punto el tamaño */
        letter-spacing: 0.5px;
    }
}



.plan-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.plan-select-wrapper {
    margin-top: 10px;
}

/* Ajuste para que el H2 no sea gigantesco en móviles */
@media (max-width: 767px) {
    .plan-content h2 {
        font-size: 22px;
    }
}


/* --- Ajustes althek: Testimonios y Contacto --- */

/* Adiós al naranja en testimonios */
.single-testimonial h4 {
    color: #002261 !important; /* Azul profundo althek */
}

.single-testimonial .desg {
    color: #2b74b9 !important; /* Azul de acción */
    font-weight: 600;
}

/* Bolitas del carrusel (Owl Carousel) en azul */
.owl-theme .owl-controls .owl-page span {
    border: 1px solid #2b74b9 !important;
}
.owl-page.active span {
    background: #2b74b9 !important;
}

/* Estilización del Formulario de Contacto */
.contact-form {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,34,97,0.05);
    border-top: 4px solid #002261;
}

.contact-form h2 {
    color: #333;
    font-size: 22px;
    margin-bottom: 40px;
}

.contact-form .form-group {
    border: 1px solid #e1e1e1 !important;
    border-radius: 5px;
    background: white;
    transition: 0.3s;
}

.contact-form .form-group:focus-within {
    border-color: #2b74b9 !important;
    box-shadow: 0 0 8px rgba(43,116,185,0.2);
}

.contact-form {
    border: none !important;
    font-size: 14px;
}

/* Iconos de los inputs (si el template los usa por :before) */
.contact-form .form-group:before {
    color: #2b74b9 !important; /* Cambiamos el verde/naranja por azul */
}

/* Botón de envío potente */
#submitButton {
    background: #002261 !important;
    padding: 15px 50px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    transition: 0.3s;
}

#submitButton:hover {
    background: #2b74b9 !important;
    transform: translateY(-2px);
}


/* --- Ajustes Finales Footer althek --- */

.footer-area {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800; /* Títulos de sección más fuertes */
    font-size: 1.6rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-area h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800; /* Títulos de sección más fuertes */
    font-size: 1.6rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}


.footer-area p {
    color: #555 !important;
    font-size: 14px;
    line-height: 1.8;
}

/* Matar el naranja del botón de suscripción */
.newsletter-form .mc-submit {
    background-color: #2b74b9 !important; /* Azul de acción */
    color: #ffffff !important;
    transition: 0.3s ease;
}

.newsletter-form .mc-submit:hover {
    background-color: #002261 !important; /* Azul profundo al hacer hover */
}

/* Enlaces Legales */
.legal-link {
    color: #2b74b9;
    font-size: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.legal-link:hover {
    color: #002261;
    text-decoration: underline;
}

/* Iconos de Redes Sociales */
.social-links li a i {
    background: #002261;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    transition: 0.3s;
}

.social-links li a:hover i {
    background: #2b74b9;
    transform: translateY(-3px);
}

.copyright-area {
    background-color: #002261 !important;
    padding: 20px 0;
}



/* testimoniales encuadrados */
/* --- BUSCA ESTA SECCIÓN Y REEMPLÁZALA --- */

.face-crop {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 4px solid #2b74b9; /* Azul althek */
    background-image: url('../img/testimonial/althek_testimonios.png'); 
    
    /* CAMBIO CLAVE AQUÍ: */
    background-size: 320% auto; /* 'auto' evita que se comprima la altura */
    background-repeat: no-repeat;
    display: block;
}

/* Ajustamos las posiciones exactas para que no queden "mochos" */
.ricardo {
    background-position: 1.6% 49%;  /* Mueve ligeramente si no queda centrado */
}

.lucia {
    background-position: 50% 49%; 
}

.carlos {
    background-position: 99% 49%; 
}

/* Estilo para los iconos del menú */
.btn-client, .btn-cart {
    display: inline-block;
    padding: 8px 12px;
    color: #002261; /* Color de althek */
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-client:hover, .btn-cart:hover {
    color: #009ee3; /* Azul más claro al pasar el mouse */
    transform: scale(1.1);
}

/* Ajuste específico para el contador del carrito */
#cart-count {
    padding: 3px 6px;
    line-height: 1;
}



/* ============================================================
   AJUSTES MOBILE PARA althek Global Services
   ============================================================ */

@media (max-width: 767px) {
    
    /* 1. Alineación Logo y Menú Hamburguesa */
    .navbar-header {
        display: flex !important;
        align-items: center; /* Alinea verticalmente el logo y el botón */
        justify-content: space-between; /* Empuja el logo a la izquierda y el menú a la derecha */
        width: 100%;
        padding: 0 15px !important; /* Les da aire a los lados para que no peguen al borde */
    }

    /* 1. Ajuste del Logo y Header */
    .menu-area.navbar-fixed-top {
        height: 70px !important; /* Más delgado en móvil */
        padding: 10px 0 !important;
    }
    
    .navbar-brand {
        margin: 0 !important;
        padding: 10px 0 !important;
        display: flex;
        align-items: center;
    }

    .navbar-brand img {
        width: 150px !important; /* Logo más pequeño para que no choque con el menú */
    }

    /* 2. El Menú Hamburguesa (Evitar que sea naranja) */
    .navbar-toggle {
        border-color: #2b74b9 !important;
        background-color: transparent !important;
        margin-top: 15px;
        margin-right: 0 !important; /* Evita que se desfase por márgenes por defecto */
        margin-top: 0 !important;   /* Quitamos el margen superior para que flex lo centre */
        float: none !important;     /* Rompemos el float para que flexbox mande */        
    }
    
    .navbar-toggle .icon-bar {
        background-color: #002261 !important; /* Barras del menú en azul profundo */
    }

    /* 3. El Menú Desplegable (la lista) */
    .navbar-collapse {
        border: none !important;
        box-shadow: none !important;
        background: #ffffff; /* Asegura fondo sólido al abrir */
    }    

    /* 3. Textos del Hero/Slider */
    .slider-content h1 {
        font-size: 28px !important; /* Que no se corte el título */
        line-height: 1.2 !important;
    }
    
    .slider-content p {
        font-size: 16px !important;
        padding: 0 10px;
    }

    /* 4. Testimonios (Tus 3 rostros) */
    .face-crop {
        width: 120px !important;
        height: 120px !important;
        background-size: 350% auto; /* Ajuste para que el rostro no se vea lejos */
    }
    
    .single-testimonial {
        padding: 20px !important;
        margin-bottom: 30px;
    }

    /* 5. Secciones de Contacto y Footer */
    .contact-form {
        padding: 20px !important; /* Menos espacio interno */
    }
    
    .contact-form h2 {
        font-size: 18px !important;
    }
    
    .footer-area .col-md-4 {
        text-align: center; /* Centrar todo en móviles */
        margin-bottom: 40px;
    }

    /* 6. Botón de WhatsApp (Ajuste de posición) */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }

    /* 2. Ajuste del Botón de Migración */
    .plan-select-wrapper .btn {
        width: 90%;            /* No llega a los bordes */
        max-width: 300px;      /* Evita que sea un botón gigante */
        margin: 0 auto;
        display: block;
        white-space: normal;   /* Permite que el texto se rompa en dos líneas si es necesario */
        padding: 12px 10px !important;
        font-size: 16px !important;
    }


    /* --- AJUSTE DE TÍTULOS EN MOBILE --- */

    /* El título principal que suele ir en gris/azul claro arriba (ej. "Testimonios") */
    .section-title h2 {
        font-size: 14px !important; 
        letter-spacing: 2px !important;
        margin-bottom: 5px !important;
    }

    /* El título grande de abajo (ej. "La confianza de nuestros clientes") */
    .section-title h1 {
        font-size: 24px !important; 
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }

    /* Títulos dentro de las cajas de contacto o planes */
    .contact-form h2, .plan-content h1, .plan-content h2 {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    /* Ajuste de márgenes de las secciones para que no haya tanto espacio blanco vacío */
    .section-big {
        padding: 50px 0 !important; /* Reducimos el aire arriba y abajo de cada bloque */
    }

    .section-small {
        padding: 30px 0 !important;
    }

}



/* --- Mejoras althek Configuración de paquetes --- */
.config-main-wrapper {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.selected-domains-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: #fff;
    border-radius: 6px;
    border-left: 4px solid #2b74b9;
}

.summary-name { font-weight: 700; color: #002261; }
.summary-price { color: #2b74b9; font-weight: 600; }

/* Espaciado para el radio button de No Hosting */
.no-hosting-container {
    margin: 30px 0;
    padding: 20px;
    background: #f0f4f8;
    border-radius: 8px;
    text-align: center;
}

.no-hosting-opt {
    cursor: pointer;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.no-hosting-opt input[type="radio"] {
    transform: scale(1.4);
}

/* Botones dentro de la caja */
.config-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #eee;
    gap: 10px; /* Espacio entre botones */
    flex-wrap: wrap; /* En móviles se pondrán uno abajo del otro */    
}

.btn-back {
    background: transparent;
    border: 1px solid #ccc;
    color: #666;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-back:hover {
    background: #eee;
    color: #333;
}


/* Estilo para el botón de Reiniciar */
.btn-reset {
    background: transparent;
    border: 1px solid #2b74b9;
    color: #2b74b9;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-reset:hover {
    background: #e7f1ff;
    color: #002261;
}

@media (max-width: 767px) {
    .config-actions button {
        width: 100%; /* En celular, botones de ancho completo */
        margin-bottom: 5px;
    }
}

/* --- Ajuste de Tipografía Global althek --- */

/* Bajamos el tamaño del H1 (Títulos principales) */
h1 {
    font-size: 36px !important; /* Estaba probablemente en 48px o más */
    line-height: 1.2;
    font-weight: 700;
}

/* Bajamos el tamaño del H2 (Subtítulos de sección) */
h2 {
    font-size: 28px !important;
    line-height: 1.3;
    font-weight: 600;
}

/* El H3 para títulos de tarjetas o servicios */
h3 {
    font-size: 20px !important;
    font-weight: 700;
}

/* Ajuste específico para la clase .section-title que pasaste */
.section-title h2 {
    font-size: 14px !important; /* El título pequeño superior (ej. "SOLUCIONES") */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2b74b9; /* Azul Althek */
    margin-bottom: 10px !important;
}

.section-title h1 {
    font-size: 32px !important; /* El título grande de la sección */
    color: #002261;
    margin-top: 0 !important;
}

.intro-text h1 {
    font-size: 42px !important; /* Antes solía ser 60px */
    line-height: 1.1;
}

.intro-text h2 {
    font-size: 20px !important;
    font-weight: 400;
    margin-top: 15px;
}

@media (max-width: 767px) {
    h1 {
        font-size: 28px !important;
    }
    
    h2 {
        font-size: 22px !important;
    }

    .section-title h1 {
        font-size: 24px !important;
    }

    .intro-text h1 {
        font-size: 26px !important;
    }
    
    /* Reducimos un poco el texto de los párrafos para que todo sea armónico */
    p {
        font-size: 14px !important;
        line-height: 1.6;
    }
}