/*
Theme Name: Hostech Child Theme
Template: hostech
Version: 1.1.0
Description: Child theme IMCOMEPRO con personalizaciones completas.
*/

/* ==========================================
   IMCOMEPRO CUSTOMIZATIONS
   Colores: #002d52 (Azul) | #ff5000 (Naranja)
========================================== */

/* ── MÓDULO 1: Ocultar botón Login del header top bar ──
   El botón Login abre un modal de login/registro de WordPress
   (NO es WHMCS). Se oculta visualmente sin eliminar el código fuente.
*/
.header-top .login-area,
.header-top ul.list.login-area {
    display: none !important;
}

/* ── MÓDULO 3: Logo – ajuste de tamaño ──
   Verificar y ajustar al tamaño del sitio antiguo (imcomepro.com).
   El logotipo en el sitio antiguo mide aproximadamente 180px de ancho.
*/
.header-2 .logo img,
.header-section-1 .logo img,
.header-logo img {
    max-width: 180px !important;
    height: auto;
}
/* Logo sticky (cuando el header es fijo al hacer scroll) */
.sticky .header-2 .logo img,
.sticky .header-logo img {
    max-width: 160px !important;
}

/* ── MÓDULO 6.6: Cursor del slider de tecnología → naranja ── */
.swiper-pagination-bullet-active,
.swiper-pagination-bullet {
    background-color: #ff5000 !important;
}

/* ── MÓDULO 6.7: Sección ¿Por qué elegirnos? ── */
.why-choose-title-tag,
.section-subtitle-why {
    display: none !important;
}

/* ==========================================
   ESTILOS PARA PÁGINAS CREADAS CON SETUP
   (Módulos 9-27)
========================================== */

/* Contenedor limpio para páginas sin sidebar */
.icp-page-clean,
.icp-service-page,
.icp-contact-page,
.icp-promo-page,
.icp-faq-page,
.icp-form-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Accordion FAQ */
.icp-accordion {
    margin-top: 30px;
}
.icp-acc-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
}
.icp-acc-title {
    background: #002d52;
    color: #fff;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    position: relative;
}
.icp-acc-title::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 300;
}
.icp-acc-title.active::after {
    content: '−';
}
.icp-acc-body {
    padding: 16px 20px;
    display: none;
    background: #fafafa;
    line-height: 1.7;
    color: #444;
}
.icp-acc-body.open {
    display: block;
}

/* Grids de servicios */
.icp-services-grid,
.icp-company-grid,
.icp-contact-grid,
.icp-tech-features,
.icp-services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin: 30px 0;
}
.icp-service-card,
.icp-company-card,
.icp-contact-card,
.icp-tech-item,
.icp-service-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s;
}
.icp-service-card:hover,
.icp-company-card:hover,
.icp-contact-card:hover {
    box-shadow: 0 6px 20px rgba(0,45,82,0.12);
}
.icp-service-card i,
.icp-company-card i,
.icp-contact-card i,
.icp-tech-item i,
.icp-service-item i {
    font-size: 36px;
    color: #ff5000;
    margin-bottom: 14px;
    display: block;
}
.icp-service-card h3,
.icp-company-card h3,
.icp-contact-card h3,
.icp-tech-item h3 {
    color: #002d52;
    font-size: 17px;
    margin-bottom: 10px;
}

/* Feature grid (buscadores) */
.icp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 24px 0;
}
.icp-feature-card {
    background: #f0f4f8;
    border-radius: 8px;
    padding: 24px 18px;
    text-align: center;
    border-left: 4px solid #ff5000;
}
.icp-feature-card i {
    font-size: 30px;
    color: #002d52;
    margin-bottom: 10px;
    display: block;
}

/* Price box */
.icp-price-box {
    background: #002d52;
    color: #fff;
    display: inline-block;
    padding: 16px 32px;
    border-radius: 8px;
    margin: 20px 0;
}
.icp-price-box .icp-price {
    font-size: 32px;
    font-weight: 700;
}
.icp-price-box .icp-price-note {
    font-size: 14px;
    margin-left: 8px;
    opacity: 0.8;
}

/* Pricing grid mailing */
.icp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}
.icp-pricing-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
}
.icp-pricing-card.featured {
    border-color: #ff5000;
    box-shadow: 0 4px 16px rgba(255,80,0,0.15);
}
.icp-pricing-card .icp-price {
    font-size: 26px;
    font-weight: 700;
    color: #002d52;
    margin: 12px 0;
}
.icp-pricing-card h3 {
    color: #002d52;
    font-size: 18px;
}
.icp-pricing-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

/* Info box (facturación en desarrollo) */
.icp-info-box {
    background: #f0f7ff;
    border: 2px solid #002d52;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin: 30px 0;
}
.icp-info-box i {
    font-size: 42px;
    color: #ff5000;
    margin-bottom: 14px;
    display: block;
}
.icp-info-box h3 {
    color: #002d52;
    font-size: 20px;
    margin-bottom: 10px;
}

/* CTA centrado */
.icp-cta-center {
    text-align: center;
    margin: 30px 0;
}

/* Soporte IT section en Contáctenos */
.icp-soporte-it-section {
    background: #f5f9ff;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-top: 40px;
    border-top: 4px solid #002d52;
}
.icp-soporte-it-section h2 {
    color: #002d52;
    margin-bottom: 14px;
}

/* Promo card */
.icp-promo-card {
    border: 2px solid #ff5000;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(255,80,0,0.12);
}
.icp-promo-header {
    background: #002d52;
    color: #fff;
    padding: 30px;
    text-align: center;
}
.icp-promo-header h2 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 6px;
}
.icp-promo-subtitle {
    opacity: 0.85;
    font-size: 16px;
}
.icp-promo-price {
    font-size: 36px;
    font-weight: 700;
    color: #ff5000;
    margin-top: 14px;
}
.icp-promo-features {
    background: #f5f9ff;
    padding: 24px 30px;
}
.icp-promo-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.icp-promo-features li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e9f5;
    font-size: 15px;
}
.icp-promo-features li i {
    color: #ff5000;
    margin-right: 10px;
}
.icp-promo-desc {
    padding: 24px 30px;
}

/* ── MÓDULO 29: Horario de atención en footer (inline) ── */
.footer-horario-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin-top: 6px;
}
.footer-horario-inline i {
    color: #ff5000;
    flex-shrink: 0;
}

/* ==========================================
   PÁGINAS LEGALES (.icp-legal-page)
========================================== */
.icp-legal-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #333;
    line-height: 1.8;
}
.icp-legal-page h1 {
    color: #002d52;
    font-size: 28px;
    margin-bottom: 10px;
    padding-bottom: 12px;
    border-bottom: 3px solid #ff5000;
}
.icp-legal-page h2 {
    color: #002d52;
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 10px;
    padding-left: 12px;
    border-left: 4px solid #ff5000;
}
.icp-legal-page p {
    margin-bottom: 14px;
}
.icp-legal-page ul {
    margin: 0 0 16px 20px;
    padding: 0;
}
.icp-legal-page ul li {
    margin-bottom: 6px;
}
.icp-legal-page a {
    color: #ff5000;
    text-decoration: none;
}
.icp-legal-page a:hover {
    text-decoration: underline;
}
.icp-legal-page em {
    color: #888;
    font-size: 13px;
}

/* Firmas del contrato */
.icp-contract-signatures {
    background: #f5f9ff;
    border: 1px solid #dde8f5;
    border-radius: 8px;
    padding: 28px;
    margin-top: 40px;
}
.icp-signatures-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}
.icp-signature-box {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}
.icp-signature-box p {
    margin-bottom: 6px;
}
@media (max-width: 600px) {
    .icp-signatures-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .icp-services-grid,
    .icp-company-grid,
    .icp-contact-grid,
    .icp-pricing-grid {
        grid-template-columns: 1fr;
    }
    .icp-promo-header h2 { font-size: 20px; }
    .icp-promo-price { font-size: 28px; }
    .header-2 .logo img { max-width: 140px !important; }
}

/* ==========================================
   FOOTER IMCOMEPRO - CSS COMPLETO UNIFICADO
   Versión Final - Sin espacios extras
   Colores: #002d52 (Azul) | #ff5000 (Naranja)
========================================== */

/* ========== RESET Y BASE ========== */
html, body {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

#content,
.site-content,
main {
    flex: 1;
}

/* ========== FOOTER PRINCIPAL ========== */
.footer-area-imcomepro {
    width: 100vw !important;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    margin-top: auto;
    margin-bottom: 0 !important;
    padding: 0 !important;
    background-color: #002d52;
    color: #ffffff;
    font-family: 'Jost', sans-serif;
}

/* ========== FOOTER TOP ========== */
.footer-top {
    padding: 40px 0 20px !important;
    position: relative;
    background-image: url('https://www.imcomepro.com.ec/new-site/wp-content/uploads/2024/06/section-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 45, 82, 0.95);
    z-index: 0;
}

.footer-top .container {
    position: relative;
    z-index: 1;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.footer-top .row {
    margin: 0 !important;
}

/* ========== FOOTER WIDGETS ========== */
.footer-widget {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ========== COLUMNA 1 - LOGO Y CONTACTO ========== */
.footer-logo {
    margin-bottom: 16px !important;
}

.footer-logo img {
    max-width: 160px !important;
    height: auto;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
    font-size: 14px !important;
}

/* Info Section */
.footer-info-section {
    margin: 15px 0 !important;
    padding: 10px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info-title {
    font-size: 15px !important;
    font-weight: 600;
    color: #ff5000;
    margin-bottom: 8px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-schedule {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px !important;
    line-height: 1.6;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-schedule i {
    color: #ff5000;
    font-size: 16px;
    margin-top: 2px;
}

.schedule-time {
    color: #ffffff;
    font-weight: 500;
}

/* Contact Info */
.footer-contact-info {
    margin-top: 15px !important;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px !important;
    padding: 6px 0 !important;
}

.footer-contact-item:last-child {
    margin-bottom: 0 !important;
}

.footer-contact-item i {
    color: #ff5000;
    font-size: 18px;
    width: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px !important;
    line-height: 1.5 !important;
}

.contact-details strong {
    color: #ffffff;
    font-weight: 600;
    display: block;
    margin-bottom: 2px !important;
}

.contact-details a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ff5000;
}

.postal-code {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

/* ========== COLUMNAS 2, 3, 4 - MENÚS ========== */
.col-xl-2 .footer-widget,
.col-xl-3 .footer-widget {
    padding-top: 0 !important;
    margin-bottom: 0 !important;
}

.footer-widget-title {
    font-size: 18px !important;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px !important;
    padding-bottom: 8px !important;
    position: relative;
}

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

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 8px !important;
}

.footer-menu li:last-child {
    margin-bottom: 0 !important;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px !important;
    line-height: 1.4 !important;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 20px;
}

.footer-menu li a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff5000;
    transition: all 0.3s ease;
}

.footer-menu li a:hover {
    color: #ff5000;
    padding-left: 25px;
}

/* Menús más compactos en columnas 2, 3, 4 */
.col-xl-2 .footer-menu li,
.col-xl-3 .footer-menu li {
    margin-bottom: 6px !important;
}

.col-xl-2 .footer-menu li a,
.col-xl-3 .footer-menu li a {
    font-size: 13px !important;
    padding-left: 18px !important;
}

/* ========== FOOTER BOTTOM ========== */
.footer-bottom {
    background-color: #001a2e !important;
    padding: 20px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    margin: 0 !important;
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px !important;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
}

.footer-copyright p {
    margin: 0;
    font-size: 13px !important;
}

.footer-copyright strong {
    color: #ff5000;
    font-weight: 600;
}

/* Footer Bottom Menu */
.footer-bottom-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 16px !important;
    flex-wrap: wrap;
}

.footer-bottom-menu li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px !important;
    transition: color 0.3s ease;
}

.footer-bottom-menu li a:hover {
    color: #ff5000;
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    gap: 8px !important;
    flex-wrap: wrap;
}

.footer-social-links a {
    width: 36px !important;
    height: 36px !important;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px !important;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background: #ff5000;
    border-color: #ff5000;
    transform: translateY(-3px);
}

/* ========== ELIMINAR ESPACIOS EXTRAS ========== */
footer + div:empty,
.footer-area-imcomepro + div:empty,
.footer-bottom + div:empty {
    display: none !important;
}

.footer-area-imcomepro::after,
.footer-bottom::after {
    display: none !important;
}

.site-footer,
#colophon {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* ========== ANIMACIONES ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-widget {
    animation: fadeInUp 0.6s ease backwards;
}

.footer-widget:nth-child(1) { animation-delay: 0.1s; }
.footer-widget:nth-child(2) { animation-delay: 0.2s; }
.footer-widget:nth-child(3) { animation-delay: 0.3s; }
.footer-widget:nth-child(4) { animation-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1199px) {
    .footer-top {
        padding: 35px 0 20px !important;
    }
}

@media (max-width: 991px) {
    .footer-top {
        padding: 30px 0 20px !important;
    }
    
    .footer-widget {
        margin-bottom: 25px !important;
    }
    
    .footer-widget:last-child {
        margin-bottom: 0 !important;
    }
    
    .footer-bottom-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-menu ul {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 25px 0 15px !important;
    }
    
    .footer-widget {
        margin-bottom: 20px !important;
    }
    
    .footer-widget:last-child {
        margin-bottom: 0 !important;
    }
    
    .footer-widget-title {
        font-size: 16px !important;
        margin-bottom: 12px !important;
    }
    
    .footer-logo img {
        max-width: 140px !important;
    }
    
    .footer-bottom {
        padding: 18px 0 !important;
    }
    
    .footer-bottom-menu ul {
        flex-direction: column;
        gap: 12px !important;
    }
    
    .footer-menu li {
        margin-bottom: 6px !important;
    }
    
    .footer-social-links {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .footer-info-section {
        margin: 10px 0 !important;
        padding: 8px 0 !important;
    }
    
    .footer-contact-item {
        margin-bottom: 8px !important;
        padding: 4px 0 !important;
    }
}

/* ==========================================
   REDUCIR TAMAÑO DEL LOGO EN HEADER
   class="header-logo-2"
========================================== */

/* Logo principal más pequeño */
.header-logo-2 img {
    max-width: 160px !important;
    height: auto !important;
    width: auto !important;
}

/* Si el logo está dentro de un link */
.header-logo-2 a {
    display: inline-block;
}

.header-logo-2 a img {
    max-width: 160px !important;
    height: auto !important;
}

/* Ajustar contenedor del logo */
.header-logo-2 {
    display: flex;
    align-items: center;
    max-width: 160px !important;
}

/* ========== VARIACIONES DE TAMAÑO ========== */

/* Logo EXTRA pequeño (100px) */
/*
.header-logo-2 img {
    max-width: 100px !important;
}
*/

/* Logo pequeño (120px) */
/*
.header-logo-2 img {
    max-width: 120px !important;
}
*/

/* Logo mediano (140px) - RECOMENDADO */
.header-logo-2 img {
    max-width: 160px !important;
}

/* Logo normal (160px) */
/*
.header-logo-2 img {
    max-width: 160px !important;
}
*/

/* ========== AJUSTES ESPECÍFICOS DEL HEADER ========== */

/* Si el header tiene padding extra */
.header-area .header-logo-2,
.header-wrapper .header-logo-2 {
    padding: 10px 0 !important;
}

/* Ajustar espaciado con el menú */
.header-logo-2 + .header-menu,
.header-logo-2 ~ .main-menu {
    margin-left: 30px !important;
}

/* Si el logo está en navbar */
.navbar .header-logo-2 img {
    max-width: 160px !important;
}

/* ========== LOGOS STICKY/FIXED ========== */

/* Logo más pequeño cuando hace scroll (sticky header) */
.header-sticky.sticky .header-logo-2 img,
.header-fixed.fixed .header-logo-2 img {
    max-width: 110px !important;
    transition: all 0.3s ease;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 991px) {
    .header-logo-2 img {
        max-width: 130px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .header-logo-2 img {
        max-width: 120px !important;
    }
    
    /* Logo sticky en móvil */
    .header-sticky.sticky .header-logo-2 img {
        max-width: 100px !important;
    }
}

/* Mobile pequeño */
@media (max-width: 575px) {
    .header-logo-2 img {
        max-width: 110px !important;
    }
}

/* ========== FIX ESPECÍFICO PARA TEMA HOSTECH ========== */

/* Si hay conflicto con estilos del tema */
.site-header .header-logo-2 img,
#masthead .header-logo-2 img {
    max-width: 160px !important;
    height: auto !important;
}

/* Logo en diferentes tipos de header */
.header-1 .header-logo-2 img,
.header-2 .header-logo-2 img {
    max-width: 160px !important;
}

/* Si el logo tiene un wrapper */
.logo-wrapper .header-logo-2 img,
.site-branding .header-logo-2 img {
    max-width: 160px !important;
}

/* ========== AJUSTE FINO DE ALINEACIÓN ========== */

/* Centrar verticalmente el logo */
.header-logo-2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Si el logo necesita más espacio vertical */
.header-logo-2 {
    padding: 8px 0;
}

/* Remover cualquier margen extra */
.header-logo-2,
.header-logo-2 a,
.header-logo-2 img {
    margin: 0 !important;
}

/* ========== TRANSICIONES SUAVES ========== */

.header-logo-2 img {
    transition: all 0.3s ease;
}

.header-logo-2 img:hover {
    opacity: 0.9;
}

/* ========== AJUSTE POR ALTURA ESPECÍFICA ========== */

/* Si prefieres controlar por altura en vez de ancho */
/*
.header-logo-2 img {
    max-height: 40px !important;
    width: auto !important;
    max-width: none !important;
}
*/

/* ========== LOGO RETINA (Alta resolución) ========== */

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .header-logo-2 img {
        /* El logo se ve bien en pantallas retina */
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* ==========================================
   CAMBIAR BOTÓN A COLOR CORPORATIVO NARANJA
   class="theme-btn bg-color-2"
   Color: #ff5000 (Naranja IMCOMEPRO)
========================================== */

/* Botón con bg-color-2 */
.theme-btn.bg-color-2 {
    background-color: #ff5000 !important;
    border-color: #ff5000 !important;
    color: #ffffff !important;
}

/* Hover del botón */
.theme-btn.bg-color-2:hover {
    background-color: #002d52 !important;
    border-color: #002d52 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 80, 0, 0.3);
}

/* Active/Focus states */
.theme-btn.bg-color-2:active,
.theme-btn.bg-color-2:focus {
    background-color: #e64500 !important;
    border-color: #e64500 !important;
    color: #ffffff !important;
}

/* ========== VARIANTES DEL BOTÓN ========== */

/* Botón outline con naranja */
.theme-btn.bg-color-2.btn-outline {
    background-color: transparent !important;
    border: 2px solid #ff5000 !important;
    color: #ff5000 !important;
}

.theme-btn.bg-color-2.btn-outline:hover {
    background-color: #ff5000 !important;
    border-color: #ff5000 !important;
    color: #ffffff !important;
}

/* Botón con icono */
.theme-btn.bg-color-2 i {
    color: #ffffff !important;
}

/* ========== ANIMACIÓN FADEUP ========== */

/* Asegurar que la animación funcione */
.theme-btn.bg-color-2.wow.fadeInUp {
    visibility: visible;
    animation-name: fadeInUp;
}

/* ========== TODOS LOS BOTONES bg-color-2 ========== */

/* Aplicar a todos los elementos con bg-color-2 */
.bg-color-2 {
    background-color: #ff5000 !important;
    border-color: #ff5000 !important;
}

.bg-color-2:hover {
    background-color: #002d52 !important;
    border-color: #002d52 !important;
}

/* ========== BOTONES EN DIFERENTES CONTEXTOS ========== */

/* Botones en hero section */
.hero-section .theme-btn.bg-color-2,
.banner-area .theme-btn.bg-color-2 {
    background-color: #ff5000 !important;
    border-color: #ff5000 !important;
}

/* Botones en pricing */
.pricing-section .theme-btn.bg-color-2,
.pricing-card .theme-btn.bg-color-2 {
    background-color: #ff5000 !important;
    border-color: #ff5000 !important;
}

/* Botones en footer */
.footer-area .theme-btn.bg-color-2 {
    background-color: #ff5000 !important;
    border-color: #ff5000 !important;
}

/* ========== VARIANTES DE TAMAÑO ========== */

/* Botón grande */
.theme-btn.bg-color-2.btn-lg {
    padding: 18px 40px;
    font-size: 16px;
}

/* Botón pequeño */
.theme-btn.bg-color-2.btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

/* ========== EFECTOS ADICIONALES ========== */

/* Efecto ripple al hacer click */
.theme-btn.bg-color-2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.theme-btn.bg-color-2:active::before {
    width: 300px;
    height: 300px;
}

/* Efecto glow al hover */
.theme-btn.bg-color-2:hover {
    box-shadow: 0 0 20px rgba(255, 80, 0, 0.6);
}

/* ========== ESTADOS DISABLED ========== */

.theme-btn.bg-color-2:disabled,
.theme-btn.bg-color-2.disabled {
    background-color: #cccccc !important;
    border-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed;
    opacity: 0.6;
}

.theme-btn.bg-color-2:disabled:hover {
    transform: none;
    box-shadow: none;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 767px) {
    .theme-btn.bg-color-2 {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* ========== COMPATIBILIDAD CON OTROS ESTILOS ========== */

/* Si hay conflicto con otros bg-color */
a.theme-btn.bg-color-2,
button.theme-btn.bg-color-2,
input[type="submit"].theme-btn.bg-color-2 {
    background-color: #ff5000 !important;
    border-color: #ff5000 !important;
    color: #ffffff !important;
}

/* Links con la clase */
a.bg-color-2 {
    color: #ffffff !important;
    text-decoration: none;
}

a.bg-color-2:hover {
    color: #ffffff !important;
}

/* ========== TRANSICIONES SUAVES ========== */

.theme-btn.bg-color-2 {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* ========== GRADIENTE OPCIONAL ========== */

/* Si quieres un gradiente sutil (descomentar) */
/*
.theme-btn.bg-color-2 {
    background: linear-gradient(135deg, #ff5000 0%, #ff7733 100%) !important;
}

.theme-btn.bg-color-2:hover {
    background: linear-gradient(135deg, #002d52 0%, #003d6b 100%) !important;
}
*/

/* ========== SHADOW NARANJA ========== */

.theme-btn.bg-color-2 {
    box-shadow: 0 4px 15px rgba(255, 80, 0, 0.2);
}

.theme-btn.bg-color-2:hover {
    box-shadow: 0 6px 25px rgba(0, 45, 82, 0.3);
}

/* ========== ICONOS DENTRO DEL BOTÓN ========== */

.theme-btn.bg-color-2 .icon,
.theme-btn.bg-color-2 i,
.theme-btn.bg-color-2 svg {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.theme-btn.bg-color-2:hover .icon,
.theme-btn.bg-color-2:hover i {
    transform: translateX(3px);
}

/* ========== LOADING STATE ========== */

.theme-btn.bg-color-2.loading {
    pointer-events: none;
    opacity: 0.7;
}

.theme-btn.bg-color-2.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.6s linear infinite;
    margin-left: 10px;
}

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

/* ========= ESTRELLAS HERO ======== */

.star{
    color: #ff5000 !important;
}


.elementor-image-box-title {
    color: #ff5000 !important;
}

/* ==========================================
   HOVER NARANJA - MENÚ WORDPRESS ESPECÍFICO
   Clases: menu-item, menu-item-type-post_type, menu-item-object-page
   Color: #ff5000 (Naranja IMCOMEPRO)
========================================== */

/* ========== MENU ITEMS ESPECÍFICOS ========== */

/* Todos los menu-item */
.menu-item a {
    transition: color 0.3s ease !important;
}

.menu-item a:hover {
    color: #ff5000 !important;
}

/* Menu item type post_type */
.menu-item-type-post_type a:hover {
    color: #ff5000 !important;
}

/* Menu item object page */
.menu-item-object-page a:hover {
    color: #ff5000 !important;
}

/* ========== COMBINACIÓN DE CLASES ========== */

/* Selector completo como en tu HTML */
.menu-item.menu-item-type-post_type.menu-item-object-page a:hover {
    color: #ff5000 !important;
}

/* ========== POR ID ESPECÍFICO ========== */

/* Si tienes un menu item específico */
#menu-item-66620 a:hover {
    color: #ff5000 !important;
}

/* Todos los menu items por ID pattern */
[id^="menu-item-"] a:hover {
    color: #ff5000 !important;
}

/* ========== TODOS LOS TIPOS DE MENU ========== */

/* Custom links */
.menu-item-type-custom a:hover {
    color: #ff5000 !important;
}

/* Taxonomy */
.menu-item-type-taxonomy a:hover {
    color: #ff5000 !important;
}

/* Post type archive */
.menu-item-type-post_type_archive a:hover {
    color: #ff5000 !important;
}

/* ========== CURRENT/ACTIVE MENU ========== */

/* Página actual */
.menu-item.current-menu-item a,
.menu-item.current_page_item a {
    color: #ff5000 !important;
}

/* Parent de página actual */
.menu-item.current-menu-parent a,
.menu-item.current_page_parent a {
    color: #ff5000 !important;
}

/* Ancestor de página actual */
.menu-item.current-menu-ancestor a,
.menu-item.current_page_ancestor a {
    color: #ff5000 !important;
}

/* ========== SUBMENU ITEMS ========== */

/* Menu items con hijos (has children) */
.menu-item-has-children > a:hover {
    color: #ff5000 !important;
}

/* Submenu items */
.menu-item .sub-menu .menu-item a:hover {
    color: #ff5000 !important;
}

/* ========== DENTRO DE NAV ========== */

/* Menú dentro de nav */
nav .menu-item a:hover {
    color: #ff5000 !important;
}

nav ul .menu-item a:hover {
    color: #ff5000 !important;
}

/* ========== DENTRO DE HEADER ========== */

/* Header navigation */
header .menu-item a:hover {
    color: #ff5000 !important;
}

header nav .menu-item a:hover {
    color: #ff5000 !important;
}

/* ========== UL MENU CLASS ========== */

/* Menu principal */
ul.menu .menu-item a:hover {
    color: #ff5000 !important;
}

ul.nav-menu .menu-item a:hover {
    color: #ff5000 !important;
}

/* ========== LINK DIRECTO ========== */

/* Links dentro de li con clase menu-item */
li.menu-item > a:hover {
    color: #ff5000 !important;
}

/* ========== ENLACES PERSONALIZADOS ESPECÍFICOS ========== */

/* Enlaces con URL externa */
.menu-item a[href^="http"]:hover {
    color: #ff5000 !important;
}

/* Enlaces con URL interna */
.menu-item a[href^="/"]:hover {
    color: #ff5000 !important;
}

/* Enlaces con ancla */
.menu-item a[href^="#"]:hover {
    color: #ff5000 !important;
}

/* ========== MÁXIMA ESPECIFICIDAD ========== */

/* Forzar en absolutamente todos */
body .menu-item a:hover,
body .menu-item-type-custom a:hover,
body .menu-item-type-post_type a:hover,
body .menu-item-object-page a:hover {
    color: #ff5000 !important;
}

/* HTML + Body para mayor prioridad */
html body .menu-item a:hover {
    color: #ff5000 !important;
}

/* ========== ESTADOS ADICIONALES ========== */

/* Visited, active, focus */
.menu-item a:visited:hover,
.menu-item a:active:hover,
.menu-item a:focus {
    color: #ff5000 !important;
}

/* ========== ELIMINAR OTROS COLORES ========== */

/* Remover color azul por defecto */
.menu-item a:hover {
    color: #ff5000 !important;
    text-decoration: none !important;
}

/* ========== ENLACE ESPECÍFICO POR ID ========== */

/* Tu enlace específico por ID */
#menu-item-67676 a:hover {
    color: #ff5000 !important;
}

#menu-item-67676 > a:hover {
    color: #ff5000 !important;
}

/* ========== CUSTOM + HAS CHILDREN ========== */

/* Enlaces personalizados CON submenu */
.menu-item-type-custom.menu-item-has-children > a:hover {
    color: #ff5000 !important;
}

.menu-item-type-custom.menu-item-object-custom.menu-item-has-children > a:hover {
    color: #ff5000 !important;
}

/* ========== TODAS LAS COMBINACIONES ========== */

/* Custom link + object custom */
.menu-item.menu-item-type-custom.menu-item-object-custom > a:hover {
    color: #ff5000 !important;
}

/* Custom + has children */
.menu-item.menu-item-has-children > a:hover {
    color: #ff5000 !important;
}

/* Combinación completa */
.menu-item.menu-item-type-custom.menu-item-object-custom.menu-item-has-children > a:hover {
    color: #ff5000 !important;
}

/* ========== PARENT ITEMS ========== */

/* Items que son padres (tienen hijos) */
.menu-item-has-children > a:hover {
    color: #ff5000 !important;
}

li.menu-item-has-children > a:hover {
    color: #ff5000 !important;
}

/* Parent mantiene naranja cuando submenu está activo */

/* Cuando haces hover en el parent o submenu */
.menu-item-has-children:hover > a {
    color: #ff5000 !important;
}

/* Cuando una página del submenu está activa */
.menu-item.current-menu-parent > a,
.menu-item.current-menu-ancestor > a {
    color: #ff5000 !important;
}

/* Tu enlace específico */
#menu-item-67676:hover > a,
#menu-item-67676.current-menu-parent > a {
    color: #ff5000 !important;
}

/* Mantener color mientras navegas en el submenu */
.menu-item-has-children:focus-within > a {
    color: #ff5000 !important;
}


/* ========== UNDERLINE EFFECT ========== */

/* Línea debajo del link */
.menu-item a {
    position: relative;
    display: inline-block;
}

.menu-item a::after {
    content: '';
    position: absolute;
    bottom: 14px;  /* Mientras MÁS ALTO el número, MÁS SUBE */
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff5000;
    transition: width 0.3s ease;
}

/* MOBILE - Línea abajo como antes */
@media (max-width: 767px) {
    .menu-item a::after {
        bottom: 0px;  /* Posición original en móvil */
    }
}

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

/* Underline en página actual */
.menu-item.current-menu-item a::after,
.menu-item.current_page_item a::after {
    width: 100%;
}

/* ========== SUBMENU - POSICIÓN ORIGINAL ========== */

/* Submenu items - línea abajo como estaba */
.menu-item .sub-menu .menu-item a::after,
.menu-item-has-children .sub-menu .menu-item a::after {
    bottom: 0px !important;  /* Pegado abajo en submenu */
}

/* Dropdown menu */
.menu-item .dropdown-menu .menu-item a::after {
    bottom: 0px !important;
}

/* Mega menu items */
.mega-menu .menu-item a::after {
    bottom: 0px !important;
}

/* Menú de segundo nivel */
.menu-item-depth-1 a::after,
.menu-item-depth-2 a::after {
    bottom: 0px !important;
}

/* Cualquier submenu */
ul.sub-menu .menu-item a::after {
    bottom: 0px !important;
}


/* ========== TRANSICIONES ========== */

.menu-item a,
.menu-item a::after {
    transition: all 0.3s ease !important;
}

/* ========== RESPONSIVE ========== */

/* Tablet y Mobile */
@media (max-width: 991px) {
    .menu-item a:hover {
        color: #ff5000 !important;
    }
    
    /* Mobile menu */
    .mean-nav .menu-item a:hover {
        color: #ff5000 !important;
        background-color: rgba(255, 80, 0, 0.1) !important;
    }
}

/* ========== ICONOS EN MENU ========== */

/* Iconos dentro de menu items */
.menu-item a i,
.menu-item a svg {
    transition: color 0.3s ease;
}

.menu-item a:hover i,
.menu-item a:hover svg {
    color: #ff5000 !important;
}

/* ========== MENU DEPTH (Niveles) ========== */

/* Nivel 1 */
.menu-item-depth-0 > a:hover {
    color: #ff5000 !important;
}

/* Nivel 2 */
.menu-item-depth-1 > a:hover {
    color: #ff5000 !important;
}

/* Nivel 3 */
.menu-item-depth-2 > a:hover {
    color: #ff5000 !important;
}

/* ========== VISITED Y FOCUS ========== */

/* Estados adicionales */
.menu-item a:visited:hover,
.menu-item a:focus {
    color: #ff5000 !important;
}

/* ========== IMPORTANTE - SIN UNDERLINE DEFAULT ========== */

/* Si NO quieres la línea underline, descomentar: */
/*
.menu-item a::after {
    display: none !important;
}
*/

/* ========== MEGA MENU ITEMS ========== */

/* Si usas mega menu */
.menu-item.menu-item-has-children.mega-menu a:hover {
    color: #ff5000 !important;
}

/* ========== MOBILE TOGGLE ========== */

/* Botón toggle en mobile */
.menu-item-has-children .menu-item-toggle:hover {
    color: #ff5000 !important;
}

/* ==========================================
   PRICING BUTTONS - UI/UX MEJORADO
   Primario: #002d52 (Azul)
   Hover: #ff5000 (Naranja)
   Tamaño: Optimizado para mejor UX
========================================== */

/* ========== BOTÓN OPTIMIZADO ========== */

.pricing-button,
a.pricing-btn,
button.pricing-btn,
.btn.pricing-btn {
    /* Colores */
    background-color: #002d52 !important;
    border: 2px solid #002d52 !important;
    color: #ffffff !important;
    
    /* Tamaño optimizado - más pequeño */
    padding: 12px 28px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    
    /* Forma */
    border-radius: 6px !important;
    
    /* Efectos */
    transition: all 0.3s ease !important;
    overflow: hidden !important;
    background-image: none !important;
    
    /* Espaciado */
    display: inline-block !important;
    text-align: center !important;
    text-decoration: none !important;
    
    /* Posición */
    position: relative !important;
    z-index: 1 !important;
    
    /* Cursor */
    cursor: pointer !important;
}

/* ========== HOVER STATE ========== */

.pricing-button:hover,
a.pricing-btn:hover,
button.pricing-btn:hover {
    background-color: #ff5000 !important;
    border-color: #ff5000 !important;
    color: #ffffff !important;
    
    /* Efecto de elevación */
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(255, 80, 0, 0.4) !important;
}

/* ========== ACTIVE/PRESSED STATE ========== */

.pricing-button:active,
a.pricing-btn:active,
button.pricing-btn:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(255, 80, 0, 0.3) !important;
}

/* ========== FOCUS STATE ========== */

.pricing-button:focus,
a.pricing-btn:focus,
button.pricing-btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(0, 45, 82, 0.2) !important;
}

/* ========== OCULTAR ELEMENTOS ORIGINALES ========== */

.pricing-button::before,
.pricing-button::after,
.pricing-btn::before,
.pricing-btn::after {
    display: none !important;
}

/* ========== DENTRO DE PRICING CARDS ========== */

.pricing-card .pricing-button,
.pricing-box .pricing-button,
.pricing-table .pricing-button {
    width: 100% !important;
    max-width: 200px !important;
    margin: 0 auto !important;
}

/* ========== VARIANTE: BOTÓN PEQUEÑO ========== */

.pricing-button.btn-sm,
.pricing-btn.btn-sm {
    padding: 10px 24px !important;
    font-size: 14px !important;
}

/* ========== VARIANTE: BOTÓN GRANDE ========== */

.pricing-button.btn-lg,
.pricing-btn.btn-lg {
    padding: 14px 32px !important;
    font-size: 16px !important;
}

/* ========== BOTÓN OUTLINE (Alternativa) ========== */

.pricing-button.btn-outline,
.pricing-btn.btn-outline {
    background-color: transparent !important;
    border: 2px solid #002d52 !important;
    color: #002d52 !important;
}

.pricing-button.btn-outline:hover,
.pricing-btn.btn-outline:hover {
    background-color: #ff5000 !important;
    border-color: #ff5000 !important;
    color: #ffffff !important;
}

/* ========== PLAN DESTACADO (Featured) ========== */

.pricing-card.featured .pricing-button,
.pricing-card.popular .pricing-button {
    background-color: #ff5000 !important;
    border-color: #ff5000 !important;
    box-shadow: 0 4px 15px rgba(255, 80, 0, 0.3) !important;
}

.pricing-card.featured .pricing-button:hover,
.pricing-card.popular .pricing-button:hover {
    background-color: #002d52 !important;
    border-color: #002d52 !important;
    box-shadow: 0 6px 20px rgba(0, 45, 82, 0.4) !important;
}

/* ========== ICONOS EN BOTONES ========== */

.pricing-button i,
.pricing-btn i {
    margin-left: 8px !important;
    font-size: 14px !important;
    transition: transform 0.3s ease !important;
}

.pricing-button:hover i,
.pricing-btn:hover i {
    transform: translateX(3px) !important;
}

/* ========== LOADING STATE ========== */

.pricing-button.loading,
.pricing-btn.loading {
    pointer-events: none !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

/* ========== DISABLED STATE ========== */

.pricing-button:disabled,
.pricing-button.disabled,
.pricing-btn:disabled,
.pricing-btn.disabled {
    background-color: #cccccc !important;
    border-color: #cccccc !important;
    color: #666666 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

.pricing-button:disabled:hover,
.pricing-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 991px) {
    .pricing-button,
    .pricing-btn {
        padding: 11px 26px !important;
        font-size: 14px !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .pricing-button,
    .pricing-btn {
        padding: 10px 24px !important;
        font-size: 14px !important;
        width: 100% !important;
        max-width: 100% !important;
    }
}

/* Mobile pequeño */
@media (max-width: 575px) {
    .pricing-button,
    .pricing-btn {
        padding: 10px 20px !important;
        font-size: 13px !important;
    }
}

/* ========== MEJORAS TIPOGRÁFICAS ========== */

.pricing-button,
.pricing-btn {
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    font-family: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

/* ========== ACCESIBILIDAD ========== */

/* Mejorar contraste */
.pricing-button:focus-visible,
.pricing-btn:focus-visible {
    outline: 3px solid #ff5000 !important;
    outline-offset: 2px !important;
}

/* ========== ANIMACIÓN SUAVE ========== */

@keyframes buttonPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.pricing-button:hover,
.pricing-btn:hover {
    animation: buttonPulse 2s ease-in-out infinite;
}

/* ========== BOTÓN CON BADGE ========== */

.pricing-button .badge,
.pricing-btn .badge {
    background-color: #ff5000 !important;
    color: #ffffff !important;
    padding: 2px 8px !important;
    border-radius: 12px !important;
    font-size: 11px !important;
    margin-left: 8px !important;
}

/* ========== COMPARACIÓN TAMAÑOS ========== */

/*
ANTES (muy grande):
padding: 16px 40px;
font-size: 16px;
Total height: ~52px

AHORA (optimizado):
padding: 12px 28px;
font-size: 15px;
Total height: ~42px

RESULTADO: 
- 19% más pequeño
- Mejor proporción visual
- Más profesional
*/

/* ========== VARIANTES DE COLORES ========== */

/* Botón secundario */
.pricing-button.btn-secondary,
.pricing-btn.btn-secondary {
    background-color: #ffffff !important;
    border: 2px solid #002d52 !important;
    color: #002d52 !important;
}

.pricing-button.btn-secondary:hover,
.pricing-btn.btn-secondary:hover {
    background-color: #002d52 !important;
    border-color: #002d52 !important;
    color: #ffffff !important;
}

/* ========== SOMBRA PERSONALIZADA ========== */

.pricing-button,
.pricing-btn {
    box-shadow: 0 2px 8px rgba(0, 45, 82, 0.15) !important;
}

/* ========== REMOVER ESTILOS DEL TEMA ========== */

.pricing-button,
.pricing-btn {
    background-image: none !important;
    background-clip: padding-box !important;
    text-shadow: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}

/* ==========================================
   NAV-LINKS HORIZONTALES (Mes y Año lado a lado)
   Fix para que los botones estén en línea horizontal
========================================== */

/* ========== CONTENEDOR NAV HORIZONTAL ========== */

/* Hacer que el nav sea horizontal */
.nav,
ul.nav {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Eliminar display block de los items */
.nav li,
.nav .nav-item {
    display: inline-block !important;
    margin: 0 !important;
}



/* ========== NAV-LINKS EN LÍNEA ========== */

.nav-link {

    background-color: transparent !important;
    border: 2px solid #002d52 !important;
    color: #002d52 !important;
	flex-direction: row !important;

}

.nav-link.active {
    background-color: #ff5000 !important;
    border-color: #ff5000 !important;
    color: #ffffff !important;
	flex-direction: row !important;
}

.nav-link:hover {
    background-color: #ff5000 !important;
    border-color: #ff5000 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* ========== PRICING TOGGLE ESPECÍFICO ========== */

/* Toggle de Monthly/Yearly */
.pricing-toggle,
.pricing-tabs,
.price-switch {
    display: flex !important;
    flex-direction: row !important;
    gap: 0 !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 20px 0 !important;
}

.pricing-toggle .nav-link,
.pricing-tabs .nav-link,
.price-switch .nav-link {
    display: inline-block !important;
    margin: 0 !important;
    padding: 12px 32px !important;
}

/* Primer botón (izquierda) */
.pricing-toggle .nav-link:first-child {
    border-radius: 6px 0 0 6px !important;
    margin-right: -2px !important;
}

/* Último botón (derecha) */
.pricing-toggle .nav-link:last-child {
    border-radius: 0 6px 6px 0 !important;
}

/* ========== NAV-TABS HORIZONTAL ========== */

.nav-tabs {
    display: flex !important;
    flex-direction: row !important;
    border-bottom: 2px solid #e0e0e0 !important;
    gap: 4px !important;
}

.nav-tabs .nav-link {
    display: inline-block !important;
    margin-bottom: -2px !important;
}

/* ========== NAV-PILLS HORIZONTAL ========== */

.nav-pills {
    display: flex !important;
    flex-direction: row !important;
    gap: 8px !important;
}

.nav-pills .nav-link {
    display: inline-block !important;
}

/* ========== BOTONES PEGADOS (Sin espacio) ========== */

/* Si quieres los botones completamente pegados */
.nav.nav-buttons-joined,
.pricing-toggle.joined {
    gap: 0 !important;
}

.nav.nav-buttons-joined .nav-link {
    margin: 0 !important;
    border-radius: 0 !important;
}

.nav.nav-buttons-joined .nav-link:first-child {
    border-radius: 6px 0 0 6px !important;
}

.nav.nav-buttons-joined .nav-link:last-child {
    border-radius: 0 6px 6px 0 !important;
    border-left-width: 1px !important;
}

/* ========== FLEXBOX PARA CONTENEDOR ========== */

/* Asegurar que el contenedor sea flex */
.tab-content-wrapper,
.pricing-header,
.pricing-switcher {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* ========== REMOVER FLOAT ========== */

.nav,
.nav li,
.nav-link {
    float: none !important;
    clear: none !important;
}

/* ========== GRID ALTERNATIVO ========== */

/* Si prefieres usar grid */
/*
.nav {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
    gap: 8px !important;
}
*/

/* ========== RESPONSIVE ========== */

/* Desktop - siempre horizontal */
@media (min-width: 768px) {
    .nav {
        flex-direction: row !important;
    }
}

/* Tablet - horizontal */
@media (max-width: 991px) {
    .nav {
        flex-direction: row !important;
        gap: 6px !important;
    }
    
    .nav-link {
        padding: 10px 20px !important;
        font-size: 14px !important;
    }
}

/* Mobile - puede ser vertical u horizontal según espacio */
@media (max-width: 767px) {
    .nav {
        flex-direction: row !important;  /* Mantener horizontal */
        gap: 4px !important;
    }
    
    .nav-link {
        padding: 8px 16px !important;
        font-size: 13px !important;
        flex: 1 !important;  /* Distribuir espacio */
    }
}

/* Mobile muy pequeño - ajustar tamaño */
@media (max-width: 575px) {
    .nav-link {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }
}

/* ========== FIX PARA BOOTSTRAP ========== */

/* Sobrescribir Bootstrap si está en vertical */
.nav.flex-column {
    flex-direction: row !important;
}

.nav-pills.flex-column,
.nav-tabs.flex-column {
    flex-direction: row !important;
}

/* ========== CENTRAR EN LA PÁGINA ========== */

/* Si el contenedor padre necesita centrado */
.pricing-section .nav,
.tab-wrapper .nav {
    margin: 0 auto !important;
    justify-content: center !important;
}

/* ========== ANCHO FIJO OPCIONAL ========== */

/* Si quieres que cada botón tenga el mismo ancho */
/*
.nav-link {
    min-width: 120px !important;
    text-align: center !important;
}
*/

/* ========== EJEMPLO: MONTHLY/YEARLY ========== */

/* Toggle específico para pricing */
.pricing-duration-toggle {
    display: inline-flex !important;
    flex-direction: row !important;
    background-color: #f5f5f5 !important;
    border-radius: 8px !important;
    padding: 4px !important;
}

.pricing-duration-toggle .nav-link {
    border: none !important;
    margin: 0 !important;
    padding: 10px 28px !important;
}

.pricing-duration-toggle .nav-link.active {
    background-color: #ff5000 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

/* ========== INLINE-FLEX ALTERNATIVO ========== */

/* Otra opción con inline-flex */
.nav {
    display: inline-flex !important;
    flex-direction: row !important;
}

/* ========== DEBUG ========== */

/* Descomentar para ver los contenedores */
/*
.nav {
    border: 2px solid red !important;
}

.nav-link {
    border: 2px solid blue !important;
}
*/

/* ==========================================
   CAMBIAR /mo A /año EN PRICING
   3 Métodos: CSS, JavaScript, y PHP
========================================== */

/* ========================================
   MÉTODO 1: CSS (Ocultar y Reemplazar)
======================================== */

/* Ocultar el texto original */
.pricing-card sub,
.pricing-price sub,
.price-duration sub {
    font-size: 0 !important;
}

/* Mostrar texto nuevo con ::after */
.pricing-card sub::after,
.pricing-price sub::after,
.price-duration sub::after {
    content: '/año' !important;
    font-size: 14px !important;
    color: #666666 !important;
    font-weight: 400 !important;
}

/* Si está en plan yearly/anual */
.pricing-card.yearly sub::after,
.pricing-card.annual sub::after {
    content: '/año' !important;
}

/* Si está en plan monthly/mensual */
.pricing-card.monthly sub::after,
.pricing-card.mensual sub::after {
    content: '/mes' !important;
}

/* ==========================================
   ACCORDION CON H5 HEADER - COLOR NARANJA AL CLIC
   Estructura: <h5 class="accordion-header"><button class="accordion-button">
   Color activo: #ff5000 (Naranja IMCOMEPRO)
========================================== */

/* ========== ACCORDION HEADER (H5) ========== */

.accordion-header {
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

.accordion-button.collapsed::after {
    color: #ff5000 !important;
    /* O también puedes usar filter */
}

.array-next {
    background-color: #ff5000 !important;
    /* O también puedes usar filter */
}

/* ========== BOTÓN DENTRO DEL HEADER ========== */

/* Botón NORMAL (cerrado) */
.accordion-header .accordion-button {
    background-color: #ffffff !important;
    color: #002d52 !important;
    border: 1px solid #e0e0e0 !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    padding: 16px 20px !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    text-align: left !important;
}

/* Botón ACTIVO (abierto/expandido) - NARANJA */
.accordion-header .accordion-button:not(.collapsed) {
    background-color: #ff5000 !important;
    color: #ffffff !important;
    border-color: #ff5000 !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 12px rgba(255, 80, 0, 0.2) !important;
}

/* ========== ICONO DEL ACORDEÓN ========== */

/* Icono normal (cerrado) */
.accordion-header .accordion-button::after {
    transition: all 0.3s ease !important;
}

/* Icono cuando está ACTIVO - blanco */
.accordion-header .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1) !important;
}

/* ========== HOVER STATES ========== */

/* Hover cuando está cerrado */
.accordion-header .accordion-button.collapsed:hover {
    background-color: rgba(255, 80, 0, 0.1) !important;
    color: #ff5000 !important;
    border-color: #ff5000 !important;
}

/* Hover cuando está abierto */
.accordion-header .accordion-button:not(.collapsed):hover {
    background-color: #e64500 !important;
    color: #ffffff !important;
}

/* ========== FOCUS STATE ========== */

.accordion-header .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(255, 80, 0, 0.25) !important;
    border-color: #ff5000 !important;
    outline: none !important;
}

/* ========== ACCORDION ITEM ========== */

.accordion-item {
    border: 1px solid #e0e0e0 !important;
    margin-bottom: 12px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    background-color: #ffffff !important;
}

/* Item cuando está activo */
.accordion-item:has(.accordion-button:not(.collapsed)) {
    border-color: #ff5000 !important;
}

/* ========== ACCORDION BODY ========== */

.accordion-body {
    background-color: #ffffff !important;
    color: #333333 !important;
    padding: 20px !important;
    border-top: 1px solid #e0e0e0 !important;
}

/* ========== REMOVER ESTILOS DE BOOTSTRAP ========== */

/* Remover box-shadow de Bootstrap */
.accordion-header .accordion-button:not(.collapsed) {
    box-shadow: inset 0 0 0 rgba(0, 0, 0, 0) !important;
}

/* Remover focus visible de Bootstrap */
.accordion-header .accordion-button:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 80, 0, 0.25) !important;
}

/* ========== ESPECÍFICO PARA TU ACORDEÓN ========== */

/* Si solo quieres aplicar a acordeones específicos */
h5.accordion-header .accordion-button:not(.collapsed) {
    background-color: #ff5000 !important;
    color: #ffffff !important;
}

/* Por ID específico */
#collapse5e874f4-st-2 {
    /* Estilos del contenido */
}

button[data-bs-target="#collapse5e874f4-st-2"]:not(.collapsed) {
    background-color: #ff5000 !important;
    color: #ffffff !important;
}

/* ========== TRANSICIONES SUAVES ========== */

.accordion-header .accordion-button,
.accordion-collapse {
    transition: all 0.3s ease-in-out !important;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 991px) {
    .accordion-header .accordion-button {
        font-size: 15px !important;
        padding: 14px 18px !important;
    }
}

@media (max-width: 767px) {
    .accordion-header .accordion-button {
        font-size: 14px !important;
        padding: 12px 16px !important;
    }
}

/* ========== VARIANTE: BORDE IZQUIERDO ========== */

/* Si prefieres solo borde izquierdo naranja */
/*
.accordion-header .accordion-button:not(.collapsed) {
    background-color: #ffffff !important;
    color: #ff5000 !important;
    border-left: 4px solid #ff5000 !important;
}
*/

/* ========== SOLUCIÓN COMPLETA Y LIMPIA ========== */

/* Copiar esto si lo anterior no funciona */
h5.accordion-header {
    margin: 0 !important;
}

h5.accordion-header button.accordion-button {
    background-color: #ffffff !important;
    color: #002d52 !important;
    border: 1px solid #e0e0e0 !important;
}

h5.accordion-header button.accordion-button:not(.collapsed) {
    background-color: #ff5000 !important;
    color: #ffffff !important;
    border-color: #ff5000 !important;
}

h5.accordion-header button.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1) !important;
}

/* ========== MÁXIMA ESPECIFICIDAD ========== */

/* Si NADA funciona, usar esto (máxima prioridad) */
body .accordion-header .accordion-button:not(.collapsed),
html body .accordion-header .accordion-button:not(.collapsed) {
    background-color: #ff5000 !important;
    color: #ffffff !important;
    border-color: #ff5000 !important;
}

/* ========== DEBUG ========== */

/* Descomentar temporalmente para verificar que el CSS llega */
/*
.accordion-header .accordion-button {
    border: 3px solid red !important;
}

.accordion-header .accordion-button:not(.collapsed) {
    border: 3px solid green !important;
    background-color: #ff5000 !important;
}
*/

/* ==========================================
   SERVIDORES DEDICADOS - CSS MEJORADO
   Colores IMCOMEPRO: #002d52 (Azul), #ff5000 (Naranja)
========================================== */

/* ========== VARIABLES Y RESET ========== */
:root {
    --primary-blue: #002d52;
    --primary-orange: #ff5000;
    --dark-blue: #001a2e;
    --light-gray: #f8f9fa;
    --medium-gray: #e0e0e0;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --success-green: #28a745;
    --spacing-sm: 20px;
    --spacing-md: 40px;
    --spacing-lg: 60px;
    --spacing-xl: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

h4 {
	color: #ffffff;
}


/* ========== SECCIONES GENERALES ========== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

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

.section-badge {
    display: inline-block;
    background: rgba(255, 80, 0, 0.1);
    color: var(--primary-orange);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ========== TABLA DE PRECIOS ========== */
.pricing-section {
    background: transparent;
}

.pricing-table-header {
    text-align: center;
    margin-bottom: 40px;
}

.table-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
}

.pricing-table {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 20px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.pricing-column {
    padding: 0;
    position: relative;
}

.pricing-column.featured {
    background: linear-gradient(180deg, #fff5f0 0%, #ffffff 100%);
    border: 2px solid var(--primary-orange);
}

.popular-badge {
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px 16px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
}

.features-column .plan-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 32px 20px;
    height: auto; /* Cambiado de 200px a auto */
    min-height: 180px; /* Altura mínima igual a otras columnas */
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-column .plan-header h4 {
    font-size: 20px;
    font-weight: 700;
}

.plan-header {
    background: var(--white);
    padding: 32px 20px;
    text-align: center;
    border-bottom: 1px solid var(--medium-gray);
    min-height: 180px; /* Asegurar altura mínima igual */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-column.featured .plan-header {
    background: var(--primary-orange);
    color: var(--white);
}

.plan-badge {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-column.featured .plan-badge {
    color: var(--white);
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    margin-right: 4px;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.price-period {
    font-size: 18px;
    color: var(--text-light);
    margin-left: 4px;
}

.pricing-column.featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.price-note {
    font-size: 12px;
    color: var(--text-light);
}

.pricing-column.featured .price-note {
    color: rgba(255, 255, 255, 0.8);
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.feature-row {
    padding: 16px 20px;
    border-bottom: 1px solid var(--medium-gray);
    font-size: 14px;
    color: var(--text-dark);
    min-height: 56px; /* Altura fija para alineación */
    display: flex;
    align-items: center;
}

.features-column .feature-row {
    font-weight: 600;
    background: #f8f9fa;
    min-height: 56px; /* Misma altura */
}

.feature-row .check {
    color: var(--success-green);
    font-size: 20px;
    font-weight: 700;
}

.plan-footer {
    padding: 32px 20px;
    text-align: center;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-plan:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 80, 0, 0.3);
}

.btn-plan.btn-featured {
    background: var(--white);
    color: var(--primary-orange);
    border-color: var(--white);
}

.btn-plan.btn-featured:hover {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

/* ========== CARACTERÍSTICAS ========== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff7a40 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}



/* ========== CTA FINAL ========== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    padding: 80px 20px;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-large {
    background: var(--primary-orange);
    color: var(--white);
    border: 2px solid var(--primary-orange);
}

.btn-primary-large:hover {
    background: #e64500;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 80, 0, 0.4);
}

.btn-secondary-large {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary-large:hover {
    background: var(--white);
    color: var(--primary-blue);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .pricing-table {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .features-column {
        display: none;
    }
    
    .pricing-column {
        border-bottom: 1px solid var(--medium-gray);
    }
    
    .benefits-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-image {
        display: none;
    }
    
    .benefits-image,
    .faq-image {
        display: none;
    }
    
    .cta-title {
        font-size: 32px;
    }
}
/* ==========================================
   CSS ADICIONAL PARA VPS
   Secciones: Comparativa y Casos de Uso
   Usar junto con servidores-dedicados-mejorado.css
========================================== */

/* ========== SECCIÓN COMPARATIVA VPS VS HOSTING ========== */
.comparison-section {
    background: var(--light-gray);
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.comparison-column.featured {
    border: 2px solid var(--primary-orange);
    background: linear-gradient(180deg, #fff5f0 0%, #ffffff 100%);
}

.comparison-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--medium-gray);
}

.comparison-column.featured .comparison-title {
    color: var(--primary-orange);
}

.comparison-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.comparison-icon {
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.comparison-item.positive .comparison-icon {
    color: var(--success-green);
    background: rgba(40, 167, 69, 0.1);
}

.comparison-item.negative .comparison-icon {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.comparison-item span:last-child {
    color: var(--text-dark);
}

/* ========== CASOS DE USO ========== */
.use-cases-section {
    background: var(--white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 80, 0, 0.15);
}

.use-case-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.use-case-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.use-case-description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

/* ========== RESPONSIVE PARA NUEVAS SECCIONES ========== */
@media (max-width: 768px) {
    .comparison-table {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .comparison-badge {
        top: -12px;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== AJUSTES ESPECÍFICOS PARA VPS ========== */

/* Pricing table con 11 filas (VPS tiene virtualización) */
.pricing-table .feature-row:nth-child(11) {
    min-height: 56px;
}

/* Asegurar que todas las filas mantengan la altura */
.pricing-section .feature-row {
    min-height: 56px !important;
    display: flex;
    align-items: center;
}

/* ==========================================
   WEB HOSTING - CSS MEJORADO
   Colores IMCOMEPRO: #002d52 (Azul), #ff5000 (Naranja)
   Usa junto con: servidores-dedicados-mejorado.css
========================================== */

/* ========== TOGGLE ANUAL/MENSUAL ========== */
.pricing-toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.pricing-toggle {
    display: inline-flex;
    background: var(--light-gray);
    border-radius: 50px;
    padding: 6px;
    gap: 8px;
}

.toggle-btn {
    padding: 12px 32px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.toggle-btn.active {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 80, 0, 0.3);
}

.save-badge {
    display: block;
    font-size: 11px;
    font-weight: 500;
    margin-top: 2px;
}

/* ========== GRID DE PLANES HOSTING (6 tarjetas) ========== */
.hosting-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.hosting-plan-card {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    padding: 0;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hosting-plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-orange);
}

.plan-header-small {
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    padding: 30px 24px;
    text-align: center;
    border-bottom: 2px solid var(--medium-gray);
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 16px;
}

.plan-price-small {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.price-symbol {
    font-size: 20px;
    font-weight: 600;
    margin-right: 2px;
}

.price-value {
    font-size: 40px;
    font-weight: 700;
    color: var(--primary-blue);
}

.price-period {
    font-size: 16px;
    color: var(--text-light);
    margin-left: 4px;
}

.price-note-small {
    font-size: 11px;
    color: var(--text-light);
}

.plan-features-list {
    list-style: none;
    padding: 24px;
}

.plan-features-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    font-size: 14px;
    color: var(--text-dark);
}

.plan-features-list li:last-child {
    border-bottom: none;
}

.plan-features-list strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.plan-cta-small {
    padding: 24px;
    text-align: center;
}

.btn-plan-small {
    display: block;
    width: 100%;
    padding: 12px 24px;
    background: var(--primary-blue);
    color: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-plan-small:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
}

/* ========== TABLA COMPARATIVA COMPLETA ========== */
.comparison-full-section {
    background: var(--light-gray);
    padding: 80px 0;
}

.section-container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table-full {
    width: 100%;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table-full thead {
    background: var(--primary-blue);
    color: var(--white);
}

.comparison-table-full th {
    padding: 20px 16px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table-full th:first-child {
    text-align: left;
    min-width: 200px;
}

.comparison-table-full td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
    border-right: 1px solid var(--light-gray);
    font-size: 14px;
}

.comparison-table-full td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.section-row td {
    background: var(--light-gray);
    font-weight: 700;
    color: var(--primary-blue);
    padding: 12px 16px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.price-row {
    background: rgba(0, 45, 82, 0.05);
}

.price-row td {
    padding: 20px 16px;
    font-size: 16px;
    color: var(--primary-blue);
}

.check-icon {
    color: var(--success-green);
    font-size: 18px;
    font-weight: 700;
}

.cross-icon {
    color: #dc3545;
    font-size: 18px;
    font-weight: 700;
}

.btn-table {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-table:hover {
    background: var(--primary-orange);
    transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .hosting-plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .hosting-plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 60px;
    }
    
    .toggle-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .comparison-table-full {
        font-size: 12px;
    }
    
    .comparison-table-full th,
    .comparison-table-full td {
        padding: 10px 8px;
    }
    
    .comparison-table-full th:first-child,
    .comparison-table-full td:first-child {
        min-width: 150px;
        position: sticky;
        left: 0;
        background: var(--white);
        z-index: 1;
    }
    
    .comparison-table-full thead th:first-child {
        background: var(--primary-blue);
    }
}

/* ========== AJUSTES ESPECÍFICOS HOSTING ========== */
/* Todos los planes tienen el mismo estilo */

/* ==========================================
   WEB HOSTING - SECCIÓN INTRODUCTORIA CSS
   Colores IMCOMEPRO: #002d52 (Azul), #ff5000 (Naranja)
========================================== */

/* ========== VARIABLES (si no están definidas) ========== */
:root {
    --primary-blue: #002d52;
    --primary-orange: #ff5000;
    --dark-blue: #001a2e;
    --light-gray: #f8f9fa;
    --medium-gray: #e0e0e0;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
}

/* ========== SECCIÓN INTRODUCTORIA ========== */
.hosting-intro-section {
    background: var(--white);
    padding: 60px 20px;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== TEXTO PRINCIPAL ========== */
.intro-main-text {
    text-align: center;
    margin-bottom: 50px;
}

.intro-main-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 1000px;
    margin: 0 auto;
}

.intro-main-text strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* ========== GRID DE CARACTERÍSTICAS ========== */
.intro-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.intro-feature-box {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.intro-feature-box:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff7a40 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon-box svg {
    color: var(--white);
}

.intro-feature-box p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
}

/* ========== TÍTULO DE TABLA ========== */
.intro-table-title {
    text-align: center;
    margin-top: 40px;
    padding: 30px 0;
}

.intro-table-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    margin: 0;
    line-height: 1.4;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hosting-intro-section {
        padding: 40px 20px;
    }
    
    .intro-main-text p {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .intro-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .intro-feature-box {
        padding: 25px;
    }
    
    .feature-icon-box {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon-box svg {
        width: 32px;
        height: 32px;
    }
    
    .intro-table-title h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .intro-main-text p {
        font-size: 15px;
    }
    
    .intro-table-title h2 {
        font-size: 20px;
    }
}

/* ==========================================
   QUIÉNES SOMOS - CSS MEJORADO
   Colores IMCOMEPRO: #002d52 (Azul), #ff5000 (Naranja)
========================================== */

/* ========== VARIABLES ========== */
:root {
    --primary-blue: #002d52;
    --primary-orange: #ff5000;
    --dark-blue: #001a2e;
    --light-gray: #f8f9fa;
    --medium-gray: #e0e0e0;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
}

/* ========== SECCIÓN PRINCIPAL ========== */
.about-section {
    background: var(--white);
    padding: 80px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== INTRODUCCIÓN ========== */
.about-intro {
    text-align: center;
    margin-bottom: 80px;
    padding: 40px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid var(--medium-gray);
}

.intro-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff7a40 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 8px 25px rgba(255, 80, 0, 0.3);
}

.intro-icon svg {
    color: var(--white);
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.intro-text:last-child {
    margin-bottom: 0;
}

/* ========== GRID DE SECCIONES (Misión, Visión, Tecnología) ========== */
.about-sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.about-card {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-orange) 100%);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-orange);
}

.card-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.about-card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff7a40 100%);
    transform: scale(1.1);
}

.card-icon svg {
    color: var(--white);
}

.card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.card-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
    text-align: left;
}

.card-content p:last-child {
    margin-bottom: 0;
}

/* ========== VALORES ========== */
.about-values {
    margin-bottom: 80px;
    padding: 50px 40px;
    background: linear-gradient(135deg, #f0f5ff 0%, #fff5f0 100%);
    border-radius: 16px;
}

.values-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 50px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 80, 0, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff7a40 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-icon svg {
    color: var(--white);
}

.value-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin: 0;
}

/* ========== ESTADÍSTICAS ========== */
.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.stat-item {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 80, 0, 0.2) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 45, 82, 0.4);
}

.stat-item:hover::before {
    top: -20%;
    right: -20%;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.stat-icon svg {
    color: var(--white);
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-orange);
    margin: 0 0 10px;
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .about-sections-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }
    
    .about-intro {
        padding: 30px 20px;
        margin-bottom: 60px;
    }
    
    .intro-icon {
        width: 80px;
        height: 80px;
    }
    
    .intro-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .about-sections-grid {
        margin-bottom: 60px;
    }
    
    .about-card {
        padding: 30px 20px;
    }
    
    .card-icon {
        width: 70px;
        height: 70px;
    }
    
    .card-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .card-title {
        font-size: 22px;
    }
    
    .card-content p {
        font-size: 15px;
    }
    
    .about-values {
        padding: 40px 20px;
        margin-bottom: 60px;
    }
    
    .values-title {
        font-size: 26px;
        margin-bottom: 40px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .intro-text {
        font-size: 15px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .values-title {
        font-size: 22px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

/* Input de búsqueda de dominios - Texto negro */
#dc-domain-1 {
    color: #000000 !important;
    font-weight: 500 !important;
}

#dc-domain-1::placeholder {
    color: #666666 !important;
}

/* Botón de búsqueda - Fondo naranja IMCOMEPRO */
#dc-submit-1 {
    background-color: #ff5000 !important;
    background: #ff5000 !important;
    border-color: #ff5000 !important;
}

#dc-submit-1:hover {
    background-color: #e64700 !important;
    background: #e64700 !important;
    border-color: #e64700 !important;
}

#dc-submit-1:active,
#dc-submit-1:focus {
    background-color: #cc3f00 !important;
    background: #cc3f00 !important;
    border-color: #cc3f00 !important;
}

/* Mover todo el contenedor a la izquierda */
.domain-checker-wrapper,
.dc-wrapper,
.domain-search-wrapper,
#dc-domain-1-wrapper,
.dc-form-wrapper {
    text-align: left !important;
    justify-content: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* Alinear el formulario a la izquierda */
.dc-form,
.domain-checker-form,
form[class*="domain"] {
    text-align: left !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    align-items: center !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* Asegurar que input y botón estén alineados a la izquierda */
#dc-domain-1,
#dc-submit-1 {
    margin-left: 0 !important;
}

/* Si hay un contenedor padre centrado, moverlo a la izquierda */
.hero-content,
.banner-content,
.search-domain-section {
    text-align: left !important;
}

.hero-content > *,
.banner-content > *,
.search-domain-section > * {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.domain-checker-wrapper,
.dc-wrapper {
    padding-left: 0 !important;
    transform: translateX(-20px) !important;
}

/* ==========================================
   MAILING PUBLICITARIO - CSS
   Colores IMCOMEPRO: #002d52 (Azul), #ff5000 (Naranja)
========================================== */

/* ========== VARIABLES ========== */
:root {
    --primary-blue: #002d52;
    --primary-orange: #ff5000;
    --dark-blue: #001a2e;
    --light-gray: #f8f9fa;
    --medium-gray: #e0e0e0;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* ========== SECCIÓN HERO ========== */
.mailing-hero {
    background: var(--light-gray);
    padding: 40px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-banner {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* ========== SECCIÓN INTRODUCCIÓN ========== */
.mailing-intro {
    background: var(--white);
    padding: 80px 20px;
}

.intro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-content {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
    align-items: center;
}

.intro-icon {
    text-align: center;
}

.intro-icon img {
    max-width: 150px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* ========== SECCIÓN BENEFICIOS ========== */
.mailing-benefits {
    background: linear-gradient(135deg, #f0f5ff 0%, #fff5f0 100%);
    padding: 80px 20px;
}

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

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

.benefits-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.4;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 80, 0, 0.15);
}

.benefit-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff7a40 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    color: var(--white);
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.benefits-footer {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 40px;
}

.footer-icon img {
    max-width: 120px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefits-footer p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ========== SECCIÓN PRECIOS ========== */
.mailing-pricing {
    background: var(--white);
    padding: 80px 20px;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--white);
    border: 3px solid var(--medium-gray);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: var(--primary-orange);
    border-width: 4px;
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pack-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.pack-price {
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    color: var(--primary-orange);
    font-weight: 600;
}

.amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.cents {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 600;
    vertical-align: super;
}

.amount-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-orange);
}

.pack-features {
    list-style: none;
    text-align: left;
}

.pack-features li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    padding: 15px 0;
    border-top: 1px solid var(--light-gray);
}

.pack-features li:first-child {
    border-top: none;
}

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

/* ── Fix: Ocultar preloader de Hostech en páginas sin Elementor ── */                                                                                                                              
      4641 +#preloader {                                                                                                                                                                                        
      4642 +    display: none !important;                                                                                                                                                                
      4643 +    opacity: 0 !important;                                                                                                                                                                   
      4644 +    visibility: hidden !important;                                                                                                                                                           
      4645 +    pointer-events: none !important;  

}
.btn-solicitar {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff7a40 100%);
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 80, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-solicitar:hover {
    background: linear-gradient(135deg, #e64700 0%, #ff5000 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 80, 0, 0.4);
}

/* ========== SECCIÓN FORMATOS ========== */
.mailing-formats {
    background: var(--light-gray);
    padding: 80px 20px;
}

.formats-container {
    max-width: 1200px;
    margin: 0 auto;
}

.formats-intro {
    text-align: center;
    margin-bottom: 60px;
}

.formats-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 900px;
    margin: 0 auto;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.format-card {
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.format-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 45, 82, 0.15);
}

.format-icon {
    margin-bottom: 20px;
}

.format-icon img {
    max-width: 80px;
    height: auto;
}

.format-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .mailing-hero {
        padding: 20px;
    }

    .mailing-intro,
    .mailing-benefits,
    .mailing-pricing,
    .mailing-formats {
        padding: 60px 20px;
    }

    .intro-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .intro-icon img {
        max-width: 120px;
    }

    .intro-text p {
        font-size: 16px;
    }

    .benefits-header h2 {
        font-size: 24px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-icon {
        width: 70px;
        height: 70px;
    }

    .benefit-icon svg {
        width: 40px;
        height: 40px;
    }

    .benefits-footer {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
        text-align: center;
    }

    .footer-icon img {
        max-width: 100px;
    }

    .benefits-footer p {
        font-size: 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .amount {
        font-size: 48px;
    }

    .formats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .btn-solicitar {
        padding: 16px 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .intro-text p {
        font-size: 15px;
    }

    .benefits-header h2 {
        font-size: 20px;
    }

    .pack-name {
        font-size: 20px;
    }

    .amount {
        font-size: 42px;
    }

    .amount-text {
        font-size: 28px;
    }
}