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

body {
	background: linear-gradient(135deg, #0c1220, #1a2436);
	color: white;
	min-height: 100vh;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	padding-top: 90px; /* Espacio para el header fijo */
}



        .container_home_flex {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            flex-wrap: wrap;
           /* min-height: 100vh;*/
           /*align-items: center;*/
           /* justify-content: space-between;*/
        }

        /* Animaciones */
        @keyframes slideInLeft_home_flex {
            from {
                transform: translateX(-100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        @keyframes slideInRight_home_flex {
            from {
                transform: translateX(100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        .text_content_home_flex {
            flex: 1;
            min-width: 300px;
            padding: 40px 20px;
            animation: slideInLeft_home_flex 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        .image_content_home_flex {
            flex: 1;
            min-width: 300px;
            padding: 40px 20px;
            position: relative;
            animation: slideInRight_home_flex 1.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
            animation-delay: 0.2s;
            opacity: 0;
        }

        .guarantee_badge_home_flex {
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            color: white;
            padding: 15px 25px;
            border-radius: 30px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 30px;
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }



        .title_home_flex_h {
            font-size: 2.4rem;
            line-height: 1.2;
            margin-bottom: 30px;
            background: linear-gradient(to right, #f0f9ff, #bae6fd);
            -webkit-background-clip: text;
            background-clip: text;
            /*color: transparent;*/
            position: relative;
        }

        .title_home_flex_h::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #3b82f6, #8b5cf6);
            border-radius: 2px;

		}
		
        .title_home_flex {
            font-size: 1.8rem;
            line-height: 1.2;
            font-weight: 300;
            margin-bottom: 30px;
            background: linear-gradient(to right, #f0f9ff, #bae6fd);
            -webkit-background-clip: text;
            background-clip: text;
            /*color: transparent;*/
            /*position: relative;*/
        }		
		
        .title_home_flex::after {
            /*content: "";*/
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #3b82f6, #8b5cf6);
            border-radius: 2px;
       
		}
        .search_container_home_flex {
            display: flex;
            max-width: 100%;
            margin: 40px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
        }

        .search_container_home_flex input {
            flex: 1;
            padding: 20px 25px;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 18px;
            outline: none;
            transition: all 0.3s;
        }

        .search_container_home_flex input::placeholder {
            color: #cbd5e1;
        }

        .search_container_home_flex input:focus {
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
        }

        .search_container_home_flex button {
            background: #3b82f6;
            color: white;
            border: none;
            padding: 0 35px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .search_container_home_flex button:hover {
            background: #2563eb;
        }

        .cta_buttons_home_flex {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .btn_home_flex {
            padding: 18px 35px;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-align: center;
        }

        .btn_primary_home_flex {
            background: #3b82f6;
            color: white;
            box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
        }

        .btn_primary_home_flex:hover {
            background: #2563eb;
            transform: translateY(-3px);
            box-shadow: 0 15px 25px rgba(37, 99, 235, 0.4);
        }

        .btn_secondary_home_flex {
            background: transparent;
            color: #cbd5e1;
            border: 2px solid #64748b;
        }

        .btn_secondary_home_flex:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: #94a3b8;
            transform: translateY(-3px);
        }

        .server_illustration_home_flex {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
            transform: perspective(1000px) rotateY(-10deg);
            transition: transform 0.5s ease;
            border: 2px solid rgba(59, 130, 246, 0.3);
        }

        .server_illustration_home_flex:hover {
            transform: perspective(1000px) rotateY(0);
        }

        .floating_icons_home_flex {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating_icon_home_flex {
            position: absolute;
            font-size: 24px;
            opacity: 0.7;
            animation: float_home_flex 6s infinite ease-in-out;
            z-index: 10;
        }

        .floating_icon_home_flex:nth-child(1) {
            top: 10%;
            left: 20%;
            animation-delay: 0s;
            color: #60a5fa;
        }

        .floating_icon_home_flex:nth-child(2) {
            top: 70%;
            left: 10%;
            animation-delay: 1s;
            color: #8b5cf6;
        }

        .floating_icon_home_flex:nth-child(3) {
            top: 40%;
            left: 80%;
            animation-delay: 2s;
            color: #34d399;
        }

        .floating_icon_home_flex:nth-child(4) {
            top: 80%;
            left: 70%;
            animation-delay: 3s;
            color: #f87171;
        }

        @keyframes float_home_flex {
            0%, 100% {
                transform: translateY(0) translateX(0);
            }
            25% {
                transform: translateY(-20px) translateX(10px);
            }
            50% {
                transform: translateY(10px) translateX(-15px);
            }
            75% {
                transform: translateY(-15px) translateX(-10px);
            }
        }

        .features_home_flex {
            display: flex;
            gap: 20px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .feature_item_home_flex {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(30, 41, 59, 0.6);
            padding: 10px 15px;
            border-radius: 10px;
            border-left: 3px solid #3b82f6;
        }

        @media (max-width: 900px) {
            .container_home_flex {
                flex-direction: column;
                padding-top: 60px;
            }
            
            .text_content_home_flex, .image_content_home_flex {
                min-width: 100%;
                padding: 20px;
            }
            
            .title_home_flex {
                font-size: 2.8rem;
            }
            
            .search_container_home_flex {
                max-width: 100%;
            }
        }

        /* Efecto de partículas */
        .particles_home_flex {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle_home_flex {
            position: absolute;
            background: rgba(59, 130, 246, 0.5);
            border-radius: 50%;
            animation: float_particle_home_flex 15s infinite linear;
        }

        @keyframes float_particle_home_flex {
            0% {
                transform: translateY(0) translateX(0) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            100% {
                transform: translateY(-100vh) translateX(100px) rotate(360deg);
                opacity: 0;
            }
        }
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 5px;
	padding-top: 5px;
}

.container_title {
	max-width: 800px;
	margin: 0 auto;
	padding: 3%;
	text-align: center;
}



.header h1 {
	font-size: 2.8rem;
	margin-bottom: 15px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header p {
	font-size: 1.2rem;
	opacity: 0.9;
}


.top-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
	text-align: left;
}


.logo {
	font-size: 1.8rem;
	font-weight: 800;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 1px;
	background: linear-gradient(45deg, #74ebd5, #9face6);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	top: 20px;
	left: 20px;
	font-size: 24px;
	font-weight: bold;
	z-index: 1000;
}

/* Efecto de acercamiento al logo */
.logo img {
	transition: transform 0.35s cubic-bezier(.4,2,.3,1), box-shadow 0.3s;
	will-change: transform;
}

header.scrolled .logo img {
	transform: scale(1.15) translateY(2px);
	/*box-shadow: 0 4px 24px rgba(59,130,246,0.15);*/
}

/* Ajuste para el carrito y menú hamburguesa en sticky */
.header-actions, .div-carrito, .mobile-menu-btn {
	z-index: 10001;
}

/* Header mejorado al hacer scroll */
header.scrolled {
	background: linear-gradient(135deg, #0a1220 95%, #1a2436 100%);
	box-shadow: 0 8px 32px rgba(0,0,0,0.25);
	backdrop-filter: blur(10px);
}

/* ##################### Estilos btn menu soporte ##################### */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


.support-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.support-btn {
    background: #e74c3c;
    border: 0px solid #fff;
    padding: 25px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #FFF;
}

.support-btn:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-2px);
}

.support-dropdown {
display: flex;
flex-direction: column;
position: fixed;
bottom: 95px;
  right: 35px;
  width: 447px;
	background: linear-gradient(135deg, #212939, #1c2e4a);
    	/*background: linear-gradient(135deg, #0d1b3a, #1c2e4a);*/
	border-radius: 10px;
	padding: 15px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 100;
	animation: slideUp 0.4s ease;
}

.support-container:hover .support-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Mostrar dropdown también cuando se añade la clase .active (útil para mobile) */
.support-container.active .support-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

}

.support-btn.active {
    transform: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.support-dropdown ul {
	list-style: none;
}

.support-dropdown li {
	margin: 8px 0;
}

.support-dropdown a {
	display: flex;
	align-items: center;
	padding: 12px 15px;
	color: #e0f7fa;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.2s ease;
	gap: 12px;
	font-size: 0.95rem;
}

.support-dropdown a:hover {
	background: rgba(74, 107, 173, 0.4);
	transform: translateX(5px);
}

.support-dropdown a i {
	width: 24px;
	text-align: center;
	color: #74b9ff;
	font-size: 1.1rem;
}



.support-category {
    flex: 1;
    background: linear-gradient(135deg, rgba(13,27,58,0.9), rgba(28,46,74,0.85));
    border-radius: 8px;
    padding: 12px;
}

.support-category-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.support-category ul { list-style: none; padding: 0; margin: 0; }
.support-category li { margin: 6px 0; }

.support-category a { display:flex; align-items:center; gap:10px; padding:8px; border-radius:6px; color: #e0f7fa; text-decoration:none; }

/* Colores para diferenciar */
.support-category--ventas { border-left: 4px solid #0ea5e9; }
.support-category--ventas a:hover { background: rgba(14,165,233,0.12); }

.support-category--soporte { border-left: 4px solid #34d399; }
.support-category--soporte a:hover { background: rgba(52,211,153,0.08); }

/* Small helper rules for the support table-like layout (used by header.php new markup) */
.support-hours,
.support-footer {
    width: 100%;
    text-align: center;
    padding: 10px 12px;
    background: transparent;
    color: #0f1724;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 10px;
}

.support-columns {
    display: flex;
    gap: 12px;
}

/* Separador vertical entre las dos columnas (similar a la tabla original) */
.support-columns .support-category:first-child {
    border-right: 1px solid rgba(255,255,255,0.06);
}

.support-category {
    display: flex;
    flex-direction: column;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: rgba(255,255,255,0.02);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: all 0.15s ease;
}

.support-link i {
    width: 28px;
    text-align: center;
    color: #58c3e8; /* azul cian similar al diseño */
    font-size: 1.2rem;
}

.support-link span { display: inline-block; }

.support-link:hover {
    transform: translateX(6px) translateY(-1px);
}

/* ===================== OVERRIDE: quitar fondos blancos y poner texto en blanco ===================== */
/* Forzar que los enlaces no tengan fondo blanco y el texto sea blanco, como en el screenshot */
.support-category .support-link {
    background: transparent !important;
    color: #ffffff !important;
    box-shadow: none !important;
}

/* Mantener iconos en cian para contraste */
.support-category .support-link i {
    color: #58c3e8 !important;
}

/* Hover sutil en fondo oscuro (no blanco) */
.support-category .support-link:hover {
    background: rgba(255,255,255,0.03) !important;
    filter: none !important;
}

/* Asegurar que los spans también aparezcan en blanco */
.support-category .support-link span { color: #ffffff !important; }
/* ================================================================================================ */

/* Responsive fallback: stack columns on small screens */
@media (max-width: 480px) {
    .support-columns { flex-direction: column; }
}

/* Colores y espaciado por categoría para replicar los fondos originales */
.support-category .support-link {
    color: #0b1220; /* texto oscuro sobre fondos claros */
    background: rgba(255,255,255,0.02);
    padding: 10px 12px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Ventas: tonos suaves azules/verdosos/amarillos como en el markup previo */
.support-category--ventas .support-link:nth-child(1) { background: #eef2ff; }
.support-category--ventas .support-link:nth-child(2) { background: #ecfdf5; }
.support-category--ventas .support-link:nth-child(3) { background: #fff7ed; }

/* Soporte: varios blancos y fondos claros según el orden original */
.support-category--soporte .support-link:nth-child(1) { background: #eef2ff; }
.support-category--soporte .support-link:nth-child(2) { background: #ffffff; }
.support-category--soporte .support-link:nth-child(3) { background: #ffffff; }
.support-category--soporte .support-link:nth-child(4) { background: #ffffff; }
.support-category--soporte .support-link:nth-child(5) { background: #ecfdf5; }
.support-category--soporte .support-link:nth-child(6) { background: #fff7ed; }

/* Hover consistente: ligero oscurecimiento y elevación */
.support-category .support-link:hover {
    filter: brightness(0.95);
    transform: translateX(6px) translateY(-1px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Ajustes de espaciamiento dentro del dropdown */
.support-dropdown { padding: 14px; gap: 12px; }
.support-columns { gap: 14px; }
.support-hours { margin-bottom: 6px; }
.support-footer { margin-top: 8px; }

/* Color verde para el texto del horario y del enlace footer */
.support-hours {
    color: #34d399;
    background: transparent;
    font-size: 1.12rem; /* destaca como título sutil */
    font-weight: 700;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}

/* Footer como CTA centrado con icono */
.support-footer { display: flex; justify-content: center; }
.support-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #e74c3c; /* color solicitado */
    color: #ffffff !important;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(231,76,60,0.12);
}
.support-footer-link i { color: #ffffff; font-size: 1.1rem; }
.support-footer-link span { color: #ffffff; }
.support-footer-link:hover { filter: brightness(0.95); transform: translateY(-2px); }

/* Tipografía y tamaño más legible */
.support-category-title { font-size: 0.98rem; color: #ffffff; margin-bottom: 8px; }
.support-link { font-size: 0.95rem; }

/* Ajustes responsive: en pantallas pequeñas mostrar columnas apiladas */
@media (max-width: 480px) {
    .support-dropdown { 
    width: auto;
    left: 10px;
    right: 10px;
    bottom: 80px;
    }
}


/* ##################### Estilos btn menu soporte ##################### */
.main-nav {
	display: flex;
	justify-content: center;
	padding: 10px 0;
}

.nav-categories {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
}

.category {
	position: relative;
}

.category-btn {
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: white;
	padding: 12px 25px;
	border-radius: 30px;
	cursor: pointer;
	font-weight: 600;
	font-size: 1rem;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-btn:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-2px);
}

.category-btn i {
	font-size: 1.2rem;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	width: 280px;
	background: linear-gradient(135deg, #0d1b3a, #1c2e4a);
	border-radius: 10px;
	padding: 15px;
	margin-top: 10px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 100;
}

.category:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu ul {
	list-style: none;
}

.dropdown-menu li {
	margin: 8px 0;
}

.dropdown-menu a {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	color: #e0f7fa;
	text-decoration: none;
	border-radius: 6px;
	transition: all 0.2s ease;
	gap: 12px;
}

.dropdown-menu a:hover {
	background: rgba(74, 107, 173, 0.4);
	transform: translateX(5px);
}

.dropdown-menu a i {
	width: 24px;
	text-align: center;
	color: #74b9ff;
}

.dropdown-menu .menu-divider {
	height: 1px;
	background: rgba(255, 255, 255, 0.15);
	margin: 8px 15px;
	border: none;
}

/* ##################### Estilo del menu de navegacion ##################### */
.mobile-menu-btn {
	display: none;
	background: transparent;
	border: none;
	color: white;
	font-size: 1.8rem;
	cursor: pointer;
	padding: 10px;
}

.mobile-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #0a192f, #1d2c4d);
	z-index: 2000;
	transform: translateX(-100%);
	transition: transform 0.4s ease;
	overflow-y: auto;
	padding: 20px;
}

.mobile-nav.active {
	transform: translateX(0);
}

.mobile-nav-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-close-btn {
	background: transparent;
	border: none;
	color: white;
	font-size: 1.8rem;
	cursor: pointer;
}

.mobile-nav-items {
	list-style: none;
}

.mobile-nav-items li {
	margin-bottom: 8px;
}

.mobile-nav-items a {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	color: white;
	text-decoration: none;
	gap: 15px;
	transition: all 0.3s ease;
}

.mobile-nav-items a:hover {
	background: rgba(74, 107, 173, 0.4);
	transform: translateX(5px);
}

.mobile-nav-items a i {
	width: 24px;
	text-align: center;
	color: #74b9ff;
}


/* ##################### fin Estilo del menu de navegacion ##################### */

/* ##################### Estilo box info home ##################### */
.features {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
	margin-top: 50px;
}

.feature-card {
	background-color: rgba(255, 255, 255, 0.08);
	/*background: linear-gradient(135deg, #1a2a6c, #2c3e50);*/
	border-radius: 15px;
	padding: 30px;
	text-align: center;
	transition: transform 0.3s ease;
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
	transform: translateY(-10px);
	background-color: rgba(255, 255, 255, 0.08);
}

.feature-card i {
	font-size: 2rem;
	/*margin-bottom: 20px;*/
	/*color: #74b9ff;*/
}

.feature-card h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
	margin-top: 15px;
	color: #74ebd5;
}

.feature-card p {
	color: #c8e6f5;
	line-height: 1.6;
}

/* ##################### fin Estilo box info home ##################### */






/*####################### opciones home box planes ###################################*/




.services-container {
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	/*margin-top: 3%;*/
	margin-bottom: 3%;
}

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

.service-card {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 12px;
	padding: 25px 15px;
	width: 140px;
	height: 120px; /* Altura fija para que todos tengan el mismo tamaño */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	-webkit-backdrop-filter: blur(5px);	
	backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.service-card-link {
    text-decoration: auto;
    color: aliceblue;
}


.service-card:hover {
	transform: translateY(-10px);
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
	border-color: rgba(255, 255, 255, 0.6);
}

.service-icon {
	font-size: 32px;
	margin-bottom: 15px;
	color: white;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.service-name {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
}







/* ################################################## */



:root {
	--primary-color: #1e3c72;
	--secondary-color: #2a5298;
	--accent-color: #4a76d0;
}




.offcanvas-menu {
	background: rgba(26, 40, 80, 0.95);
	width: 50% !important;
	color: white;
}

.offcanvas-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-body {
	padding: 0;
}

.menu-item {
	padding: 12px 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
}

.menu-item:hover {
	background: rgba(74, 118, 208, 0.3);
}

.search-section {
	
	display: flex;
	align-items: center;
	justify-content: center;
}
.container_home_gral {
    align-content: center;
}

.search-container {
	width: 100%;
	max-width: 1200px;
}

.search-box {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50px;
	padding: 5px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-input {
	background: transparent;
	border: none;
	color: white;
	padding: 15px 20px;
	width: 100%;
	font-size: 18px;
}

.search-input:focus {
	outline: none;
	box-shadow: none;
}

.d-flex {
    display: flex !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
	text-align: center;
}

.search-input::placeholder {
  color: white;
  opacity: 1;
}

.search-input::-webkit-input-placeholder {
  color: white;
}

.search-input:-moz-placeholder {
  color: white;
  opacity: 1;
}

.search-input::-moz-placeholder {
  color: white;
  opacity: 1;
}

.search-input:-ms-input-placeholder {
  color: white;
}








     
.search-btn {
	background: #e74c3c;
	border: none;
	border-radius: 50px;
	padding: 15px 40px;
	font-weight: bold;
	transition: all 0.3s ease;
	color: #fff;
}

.search-btn:hover {
	background: #3a66c0;
	transform: scale(1.03);
}

.autocomplete-container {
	background: rgba(26, 40, 80, 0.9);
	border-radius: 15px;
	margin-top: 10px;
	max-height: 300px;
	overflow-y: auto;
	display: none;
}

.autocomplete-item {
	padding: 12px 20px;
	cursor: pointer;
	transition: all 0.2s ease;
}

.autocomplete-item:hover {
	background: rgba(74, 118, 208, 0.3);
}




/*##############################################################*/




/*######################## FOOTER #########################*/


/* Estilos del Footer */
footer {
	background-color: #0a1435;
	color: #fff;
	padding: 60px 0 30px;
	margin-top: 5%;
}

.footer-content {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
}

.footer-column {
	flex: 1;
	min-width: 250px;
	margin-bottom: 30px;
	padding: 0 15px;
}

.footer-column h3 {
	font-size: 1.4rem;
	margin-bottom: 25px;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h3::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(90deg, #58c3e8, #013c5a);
	border-radius: 3px;
}

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

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column ul li a {
	color: #c0c0c0;
	text-decoration: none;
	transition: all 0.3s ease;
	display: block;

}

.footer-column ul li a:hover {
	color: #fff;
	transform: translateX(5px);
}

.footer-column ul li a i {
	margin-right: 10px;
	color: #58c3e8;
	width: 15px;
}

.certifications {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-top: 20px;
}

.certification {
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	padding: 12px;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 250px;
}

.certification img {

	object-fit: contain;
	background: white;
	border-radius: 5px;
	padding: 5px;
	margin-right: 15px;
}

.certification span {
	font-size: 0.9rem;
	font-weight: 600;
}

.contact-info {
	margin-top: 20px;
}

.contact-info p {
	margin-bottom: 12px;
	display: flex;
	align-items: center;
}

.contact-info i {
	color: #58c3e8;
	width: 25px;
	font-size: 1.2rem;
	margin-right: 10px;
}

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

.social-icons a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: #fff;
	font-size: 1.2rem;
	transition: all 0.3s ease;
}

.social-icons a:hover {
	transform: translateY(-5px);
	background: linear-gradient(45deg, #ff7b00, #ffcc00);
}

.payment-methods {
	display: flex;
	justify-content: center;
	padding: 30px 15px 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.payment-methods img {
	width: 642px;
	height: 43px;
	max-width: 100%;
	object-fit: contain;
}

.copyright {
	text-align: center;
	padding: 20px 0 10px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	max-width: 1200px;
	margin: 0 auto;
}



/*####################### FIN FOOTER ###############################*/



/*############### input home buscar servicios y buscar dominios #######################*/



.search-section {
	width: 100%;
	margin-top: 20px;
}

.search-container {
	position: relative;
}

.search-container p {
	text-align: center;
	color: #ddd;
	margin-bottom: 15px;
	font-size: 0.95rem;
}

.search-box {
	display: flex;
	width: 100%;
	position: relative;
}



.autocomplete-container {
	position: absolute;
	top: 75%;
	left: 0;
	right: 0;
	background: white;
	border-radius: 10px;
	margin-top: 5px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
	max-height: 300px;
	overflow-y: auto;
	z-index: 1000;
	display: none;
}

.autocomplete-item {
	padding: 12px 20px;
	cursor: pointer;
	color: #333;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
	transition: all 0.2s;
}

.autocomplete-item:hover {
	background: #f0f5ff;
	transform: translateX(-3px);
}

.autocomplete-item i {
	margin-right: 12px;
	color: #4a90e2;
}

.autocomplete-item:last-child {
	border-bottom: none;
}

.autocomplete-item.highlight {
	background: #e6f0ff;
	font-weight: bold;
}

.domain-status.invalid {
    border-left: 4px solid #f39c12;
}

		
		
.notification {
	position: fixed;
	top: 90px;
	right: 20px;
	background: #4a90e2;
	color: white;
	padding: 15px 25px;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	z-index: 2000;
	opacity: 0;
	transform: translateX(100px);
	transition: all 0.4s ease;
}

.notification.show {
	opacity: 1;
	transform: translateX(0);
}

.notification i {
	margin-right: 10px;
	font-size: 1.2rem;
}

.domain-results {
	margin-top: 20px;
	background: #013c5a;
	border-radius: 10px;
	padding: 20px;
	display: none;
}

.domain-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.domain-header h3 {
	color: #fff;
	font-size: 1.3rem;
}

.domain-status {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 10px;
	background: rgba(0, 0, 0, 0.4);
	border-left: 4px solid #e7c43c;
}

.domain-status.available {
	border-left: 4px solid #2ecc71;
}

.domain-status.registered {
	border-left: 4px solid #e74c3c;
}

.domain-status i {
	font-size: 1.8rem;
	margin-right: 15px;
}

.domain-info {
	flex: 1;
    text-align: left;
}

.domain-name {
	font-weight: bold;
	font-size: 1.1rem;
	margin-bottom: 5px;
}

.domain-message {
	font-size: 0.95rem;
	color: #ddd;
}

.domain-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.domain-btn {
background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;
}
/*
.domain-btn {
	background: linear-gradient(135deg, #4a90e2, #1a5fb4);
	color: white;
	border: none;
	border-radius: 5px;
	padding: 8px 15px;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 120px;
	text-align: center;
}
*/
.domain-btn:hover {
	background: linear-gradient(135deg, #1a5fb4, #4a90e2);
	transform: translateY(-2px);
}

.domain-btn.register {
	background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.domain-btn.register:hover {
	background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.domain-btn.view-details {
	background: linear-gradient(135deg, #f39c12, #e67e22);
}

.domain-btn.view-details:hover {
	background: linear-gradient(135deg, #e67e22, #f39c12);
}

.domain-extensions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 15px;
}

.extension-btn {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 20px;
	padding: 5px 15px;
	cursor: pointer;
	transition: all 0.2s;
	font-size: 0.9rem;
}

.extension-btn:hover {
	background: rgba(74, 144, 226, 0.3);
	border-color: #4a90e2;
}

.domain-loading {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.domain-loading i {
	font-size: 2rem;
	margin-right: 15px;
	color: #ffd700;
}

.domain-loading span {
	font-size: 1.1rem;
}

/*############### fin input home buscar servicios y buscar dominios #######################*/






/* ##################### resposive ##################### */
/* Responsive */
@media (max-width: 1024px) {

	
	.mobile-menu-btn {
		display: block;
	}
	
	.top-bar {
		padding: 10px 15px;
	}
	
}

@media (max-width: 576px) {
	.logo {
		font-size: 1.5rem;
	}
	
	.title_home_flex {
		font-weight: 300;
		font-size: 1.2rem;
	}	
.plan-card-width {
  max-width: 100%!important;
}	
	
}

@media (max-width: 1100px) {
	.main-nav {
		display: none;
	}
	.row {
		gap: 15px;
	}
	.service-card {
		width: 130px;
		padding: 20px 10px;
	}
}

@media (max-width: 768px) {

	.row {
		gap: 12px;
		flex-direction: column; /* Cambiar a columna para que estén uno debajo del otro */
        margin-top: -20px;
	}
	.service-card {
		width: 100%; /* Ocupar todo el ancho de la pantalla */
		max-width: 100%;
		height: auto;
		flex-direction: row; /* Cambiar a fila para icono a la izquierda y texto a la derecha */
		text-align: left; /* Alinear texto a la izquierda */
		padding: 20px;
		justify-content: flex-start; /* Alinear contenido al inicio */
	}
	
	.service-icon {
		margin-bottom: 0; /* Quitar margen inferior */
		margin-right: 20px; /* Agregar margen derecho para separar del texto */
		flex-shrink: 0; /* Evitar que el icono se reduzca */
	}
	
	.service-name {
		flex: 1; /* El texto toma el espacio restante */
	}
}

@media (max-width: 480px) {

	.service-card {
		width: 100%;
		max-width: 100%;
		padding: 15px;
	}
}


@media (max-width: 768px) {
	.offcanvas-menu {
		width: 80% !important;
	}
	
	.search-box {
		/*flex-direction: column;*/
	}
	
	.search-input {
		/*margin-bottom: 10px;*/
	}
	
	.search-btn {
		width: 40%;
	}
}


@media (max-width: 768px) {
	.container_title.header h1 {
		font-size: 2rem;
	}
	
	.search-btn {
		padding: 0 20px;
	}
	
	.services-grid {
		grid-template-columns: 1fr;
	}
	
	.domain-status {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.domain-actions {
		flex-direction: row;
		margin-top: 15px;
		width: 100%;
	}
	
	.domain-btn {
		flex: 1;
	}
}


/* Responsividad */
@media (max-width: 900px) {
	.footer-content {
		flex-direction: column;
	}
	
	.footer-column {
		min-width: 100%;
	}
	
	header h1 {
		font-size: 2rem;
	}
	
	.content h2 {
		font-size: 1.8rem;
	}
}

/* ##################### resposive ##################### */




/* ##################### HOSTING ##################### */

/* MESI Assistant: estilos para tarjetas de categoría y lista compacta */
.mesi_services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.mesi_service_group {
    margin-bottom: 20px;
}

.mesi_group_card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.mesi_group_card > div {
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.04);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mesi_group_card > div:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(2,6,23,0.45);
}

.mesi_group_card i {
    font-size: 20px;
    color: var(--primary-color);
}

.mesi_group_card .mesi_group_title {
    font-weight: 700;
    color: #ffffff;
    font-size: 1rem;
}

.mesi_group_card .mesi_group_description {
    color: #cbd5e1;
    font-size: 0.92rem;
    margin-top: 6px;
}

.mesi_service_small a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.mesi_service_small {
    border-radius: 8px;
}

.mesi_service_small .mesi_service_description {
    color: #9aa7bf;
    font-size: 0.9rem;
    margin-top: 6px;
}

@media (max-width: 768px) {
    .mesi_services_grid { grid-template-columns: 1fr; }
}



.theme-toggle {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	border-radius: 30px;
	padding: 10px 20px;
	color: white;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	backdrop-filter: blur(5px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.theme-toggle:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
	/*background: linear-gradient(135deg, #0c1220, #1a2436);*/
	/*box-shadow: 0 4px 24px rgba(0,0,0,0.18);*/
	transition: all 0.3s ease;
	text-align: center;
	margin-bottom: 10px;
	padding-top: 10px;
}

h1 {
	font-size: 2.8rem;
	margin-bottom: 15px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}



.subtitle {
	font-size: 1.2rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

body.light-mode .subtitle {
	color: #2c3e50;
	opacity: 0.8;
}






.plan-card.popular::before {
	content: 'POPULAR';
	position: absolute;
	top: 15px;
	right: -30px;
	background: #ff6b6b;
	color: white;
	padding: 5px 30px;
	font-size: 0.8rem;
	font-weight: bold;
	transform: rotate(45deg);
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.plan-title {
	font-size: 1.8rem;
	margin-bottom: 15px;
	color: #fff;
	text-align: center;
}



.plan-subtitle {
	text-align: center;
	font-size: 1.1rem;
	opacity: 0.9;
	margin-bottom: 25px;
}




.price {
	font-size: 2.2rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 5px;
	color: #fff;
}






.btn:hover {
	background: #f39c12;
	transform: scale(1.02);
}



.additional-features {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 15px;
	padding: 35px 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.2);
}





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

.feature-box {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	transition: transform 0.3s ease;
}



.feature-box:hover {
	transform: translateY(-5px);
}

.feature-box h3 {
	margin-bottom: 10px;
	color: #4cd964;
}


.info-icon {
	display: inline-block;
	width: 18px;
	height: 18px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	text-align: center;
	line-height: 18px;
	font-size: 0.8rem;
	margin-left: 5px;
	cursor: help;
	vertical-align: middle;
}




@media (max-width: 768px) {
	.plans-container {
		flex-direction: column;
		align-items: center;
	}
	
	.plan-card {
		max-width: 100%;
	}
	
	.theme-toggle {
		position: relative;
		top: 0;
		right: 0;
		margin: 0 auto 20px;
		display: block;
	}
}

.message {
	text-align: center;
	padding: 10px;
	margin-top: 15px;
	border-radius: 5px;
	background: rgba(76, 217, 100, 0.2);
	animation: fadeInOut 3s ease forwards;
}

body.light-mode .message {
	background: rgba(41, 128, 185, 0.2);
}

@keyframes cartPulse {
    0% {
        transform: scale(1);
        filter: brightness(4);
    }
    50% {
        transform: scale(1.4);
        filter: brightness(1.8);
    }
    100% {
        transform: scale(1);
        filter: brightness(3);
    }
}

.cart-animation {
    animation: cartPulse 0.5s ease-out;
}

@keyframes fadeInOut {
	0% { opacity: 0; }
	10% { opacity: 1; }
	90% { opacity: 1; }
	100% { opacity: 0; }
}


body.light-mode .category-btn {	
	background-color: #58c3e8;
}

/* ##################### FIN HOSTING ##################### */




        .subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .plans-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 60px;
        }
        
        .plan-card {

			background: rgba(255, 255, 255, 0.9);
			/*background: linear-gradient(135deg, #1a2a6c, #2c3e50);*/
			color: #fff;	
			padding-top: 40px; /* espacio para el ícono */
            /*background-color: #ffffff;*/
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 35px 20px;
            width: 100%;
            max-width: 290px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
 
        .plan-card-width{
            max-width: 380px;
        }


.plan-icon {
     position: relative;
	top: -20px;
	left: 50%;
	transform: translateX(-50%);
	background: white;
	border-radius: 50%;
	padding: 10px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	z-index: 2;
}

        .plan-card.popular::before {
            content: 'POPULAR';
            position: absolute;
            top: 15px;
            right: -30px;
            background: #ff6b6b;
            color: white;
            padding: 5px 30px;
            font-size: 0.8rem;
            font-weight: bold;
            transform: rotate(45deg);
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        
        .plan-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #2563eb;
            text-align: center;
        }
        
        .plan-subtitle {
            text-align: center;
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 25px;
        }
        
        .features_box_planes {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .features_box_planes li {
            padding: 6px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
			color: #0c0c0c;
        }
        
        .features_box_planes li:last-child {
            border-bottom: none;
        }
        
        .features_box_planes li::before {
            content: '✓';
            color: #4cd964;
            font-weight: bold;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .price {
            font-size: 2.2rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 5px;
            color: #2563eb;
        }
        
        .price-period {
			color: #000;
            text-align: center;
            opacity: 0.8;
            margin-bottom: 25px;
            font-size: 0.9rem;
        }
        .price-period p{
            text-align: center;
            opacity: 0.8;
            margin-bottom: 25px;
            font-size: 0.9rem;
        }
                
        .btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: #2563eb;
            color: #fff;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
        }
        
        .btn:hover {
            background: #f1f1f1;
            transform: scale(1.02);
        }
        
        .additional-features_box_planes {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 35px 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        

        
        .features_box_planes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .feature-box {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
        }
        
        .feature-box h3 {
            margin-bottom: 10px;
            color: #4cd964;
        }
        
        .info-icon {
            display: inline-block;
            width: 18px;
            height: 18px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            text-align: center;
            line-height: 18px;
            font-size: 0.8rem;
            margin-left: 5px;
            cursor: help;
            vertical-align: middle;
        }
        
        .disclaimer {
            font-size: 0.8rem;
            opacity: 0.7;
            margin-top: 10px;
            text-align: center;
			color: #1e40af;
        }
        
        @media (max-width: 768px) {
            .plans-container {
                flex-direction: column;
                align-items: center;
            }
            
            .plan-card {
                max-width: 100%;
            }
        }



/*############################# box info mkt ######################################*/






/* Additional Info */
.additional-info {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 3rem;
	margin: 6rem 0 4rem;
	align-items: center;
}

.info-text h3 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: var(--light);
}

.info-text p {
	color: var(--gray);
	margin-bottom: 1.5rem;
	font-size: 1.1rem;
}

.info-image-mkt {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	height: 350px;
	background: url('../img/pc2.jpg') center/cover;
}

.info-image-smtp {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
	height: 350px;
	background: url('../img/img-smtp.png') center/cover;
}


.tax-note {
	text-align: center;
	color: var(--gray);
	font-style: italic;
	margin-top: -1rem;
	margin-bottom: 3rem;
	font-size: 0.9rem;
}


/* Responsive */
@media (max-width: 992px) {
	.slider-content {
		padding: 0 3rem;
	}
	
	.slider-title {
		font-size: 2.5rem;
	}
}

@media (max-width: 768px) {
	.slider {
		height: auto;
		padding: 4rem 0;
	}
	
	.slider-content {
		position: relative;
		padding: 2rem;
	}
	
	.features {
		grid-template-columns: 1fr;
	}
	
	.additional-info {
		grid-template-columns: 1fr;
	}
	
	.info-image {
		height: 250px;
		order: -1;
	}
}

@media (max-width: 576px) {
	.slider-title {
		font-size: 2rem;
	}
	
	.section-title h2 {
		font-size: 2rem;
	}
	
	.plans-container {
		grid-template-columns: 1fr;
	}
}

/* ############################ carrito items ############################# */

     

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-price {
    font-weight: bold;
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
}

.add-to-cart {

    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background 0.3s ease;

    display: block;
    padding: 15px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;



}

.add-to-cart:hover {
    background-color: #00bbff;
}







.header-actions {
    display: flex
;
    align-items: center;
    gap: 20px;
}


.cart-icon {
    /*position: relative;*/
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex
;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}



/* Responsive */
@media (max-width: 992px) {

}

@media (max-width: 768px) {
    .div-carrito {
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
        position: fixed;

        padding: 17px;
        border-radius: 43px;
        z-index: 90000;


        display: block;
        top: 15px !important;
        right: 100px !important;		

    }

.container {
    padding: 5%;
}


}

@media (max-width: 576px) {

}


/* ############################ carrito items ############################# */


@keyframes cartBounce {
    0%   { transform: scale(1); }
    25%  { transform: scale(1.2); }
    50%  { transform: scale(0.95); }
    75%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes cartFlash {
    0% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0);
        background-color: transparent;
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
        background-color: rgba(255, 255, 255, 0.1);
    }
    100% {
        box-shadow: 0 0 0px rgba(255, 255, 255, 0);
        background-color: transparent;
    }
}

/* Esta clase ejecuta ambas animaciones al mismo tiempo */
.cart-animate {
    animation: cartBounce 0.6s ease, cartFlash 0.4s ease;
}





.div-carrito {
    /*display: flex;*/
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    position: fixed;
    top: 10px;
    right: 44px;
}
        

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.product-price {
    font-weight: bold;
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 15px;
}



.add-to-cart:hover {
    background-color: #00bbff;
}

        /* Modal Carrito */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        
        .modal-content {
            background: white;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            max-height: 80vh;
            overflow-y: auto;
        }
        
        .modal-header {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
            background-color: #e74c3c;
        }
        
        .modal-title {
            font-size: 24px;
            font-weight: bold;
            color: #fff;
        }
        
        .close-modal {
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }
        
        .cart-items {
            padding: 20px;
        }
        
		.cart-item {
			display: flex;
			justify-content: space-between;
			align-items: center;
			padding: 10px 0;
			border-bottom: 1px solid #c9c9c9;
		}
        
        .item-info {
            flex-grow: 1;
        }
        
		.item-total{
            font-weight: bold;
			color: #000;
        }

        .item-name {
            color: #000;
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .item-period {
            font-size: 14px;
            color: #666;
            margin-bottom: 5px;
        }
        
        .item-price {
            color: #4a76d0;
        }
        
        .remove-item {
            background: #ff4757;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 5px 10px;
            cursor: pointer;
            margin-top: 5px;
        }
        
        .period-select {
            margin-top: 5px;
            padding: 5px;
            border: 1px solid #ddd;
            border-radius: 4px;
            width: 60%;
        }
        
        .cart-subtotal, .cart-iva, .cart-total {
            padding: 10px 20px;
            text-align: right;
            font-size: 18px;
            color: #000;
        }
        
        .cart-total {
            font-weight: bold;
            font-size: 20px;
            border-top: 2px solid #eee;
        }
        
        .checkout-btn {
            background: #4a76d0;
            color: white;
            border: none;
            padding: 15px;
            width: 100%;
            font-size: 18px;
            border-radius: 0 0 10px 10px;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .checkout-btn:hover {
            background: #3aafd9;
        }
        
        .empty-cart {
            text-align: center;
            padding: 40px 20px;
            color: #666;
        }





.header-actions {
    display: flex
;
    align-items: center;
    gap: 20px;
}


.cart-icon {
    /*position: relative;*/
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex
;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
}

@media (max-width: 768px) {
        .item-bnt-price {
            text-align: right;
        }
}





/* ############################ carrito items ############################# */


        

/* Estilos para búsqueda inteligente */
.intelligent-result-container {
    margin-top: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-group {
    margin-bottom: 25px;
}

.group-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #60a5fa;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(96, 165, 250, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

/* Resaltar sólo la parte superior en los tres servicios de hosting */
.service-card.highlight-top {
    position: relative;
    border-top: 4px solid #4361ee; /* mismo azul primario usado en el sitio */
}

/* Mantener el efecto hover existente pero no cambiar el border-top */
.service-card.service-card-top:hover,
.service-card.highlight-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-name {
    font-size: 0.8rem;
    font-weight: 300;
    color: #f0f9ff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-name i {
    color: #60a5fa;
    font-size: 1.1rem;
}

.service-description {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.service-link {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.service-link:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    color: white;
    text-decoration: none;
}

.service-card.unavailable {
    opacity: 0.6;
    background: linear-gradient(135deg, rgba(107, 114, 128, 0.1), rgba(75, 85, 99, 0.05));
    border-color: rgba(107, 114, 128, 0.2);
}

.service-card.unavailable .service-name {
    color: #9ca3af;
}

.service-card.unavailable .service-description {
    color: #9ca3af;
}

.service-card.unavailable .service-link {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    cursor: not-allowed;
}

.service-card.unavailable .service-link:hover {
    background: linear-gradient(135deg, #6b7280, #4b5563);
    transform: none;
    box-shadow: none;
}

/* Estilos para el párrafo introductorio */
.search-introduction {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    color: #e2e8f0;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
}

.search-introduction strong {
    color: #60a5fa;
    font-weight: 600;
}

        /* Estilos para el input de cuentas de email */
        .email-account-input {
            width: 100%;
            padding: 12px 16px;
            margin: 15px 0;
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: #f0f9ff;
            font-size: 1rem;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .email-account-input:focus {
            outline: none;
            border-color: rgba(59, 130, 246, 0.6);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
            background: rgba(255, 255, 255, 0.15);
        }

        .email-account-input::placeholder {
            color: rgba(240, 249, 255, 0.6);
        }

        .email-confirm-btn {
            margin-top: 15px;
            background: linear-gradient(135deg, #10b981, #059669);
            border: none;
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .email-confirm-btn:hover {
            background: linear-gradient(135deg, #059669, #047857);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
        }

        /* Responsive para búsqueda inteligente */
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .container_title {

                margin-bottom: 53px;
            }            
            .service-card {
                padding: 15px;
            }
            
            .service-name {
                font-size: 1.1rem;
            }
            
            .group-title {
                font-size: 1.2rem;
            }
            
            .search-introduction {
                padding: 15px;
                font-size: 0.95rem;
            }

            .email-account-input {
                padding: 10px 14px;
                font-size: 0.95rem;
            }

            .email-confirm-btn {
                padding: 10px 20px;
                font-size: 0.95rem;
            }
        }
        

/* ##################### ESTILOS ELEGANTES PLAN EMPRESARIAL ##################### */

/* Layout 2 Columnas para Plan Empresarial */
.plans-section-fullwidth {
    padding: 80px 0;

    color: white;
}

.plans-section-fullwidth .section-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.plan-enterprise-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin: 40px 0;
}

.plan-left-column {
    display: flex;
    justify-content: center;
    height: 100%;
}

.plan-right-column {
    padding: 0 0;
}

/* Sección de Características con Acordeón */
.features-accordion-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.features-accordion-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 30px;
    text-align: center;
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 15px;
}

.features-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.features-accordion-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.features-accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.features-accordion-header {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid #3b82f6;
}

.features-accordion-item.active .features-accordion-header {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.features-accordion-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #1f2937;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.features-accordion-item.active .features-accordion-header h4 {
    color: white;
}

.features-accordion-header h4 i {
    font-size: 1.2rem;
    color: #3b82f6;
    transition: color 0.3s ease;
}

.features-accordion-item.active .features-accordion-header h4 i {
    color: white;
}

.features-accordion-icon i {
    font-size: 1rem;
    color: #6b7280;
    transition: all 0.3s ease;
}

.features-accordion-item.active .features-accordion-icon i {
    color: white;
}

.features-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.features-accordion-body {
    padding: 25px;
    background: white;
    border-top: 1px solid #f3f4f6;
}

.features-accordion-body p {
    margin: 0 0 10px 0;
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

.features-accordion-body p:last-child {
    margin-bottom: 0;
}

.features-accordion-body strong {
    color: #1f2937;
}

/* Secciones con Ancho Completo */
.benefits-section-elegant-fullwidth {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.benefits-section-elegant-fullwidth .benefits-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.faq-section-accordion-fullwidth {
    padding: 80px 0;
    background: white;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.faq-section-accordion-fullwidth .faq-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

/* Plan Empresarial Elegante */
.plan-single-container {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.plan-card-enterprise {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(59, 130, 246, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.plan-card-enterprise:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(59, 130, 246, 0.2);
}

.plan-header-enterprise {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    padding: 40px 30px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.plan-header-enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.plan-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.plan-icon-large {
    font-size: 3rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.plan-title-enterprise {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    letter-spacing: -1px;
}

.plan-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.plan-pricing-enterprise {
    padding: 30px;
    text-align: center;
    background: white;
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.currency {
    font-size: 1.5rem;
    color: #6b7280;
    font-weight: 600;
}

.price-main {
    font-size: 4rem;
    font-weight: 500;
    color: #2563eb;
    line-height: 2;
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.price-description {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
    line-height: 41px;
}

.plan-features-enterprise {
    padding: 0 30px 30px;
    background: white;
}

.features-header {
    margin-bottom: 20px;
    text-align: center;
}

.features-header h3 {
    font-size: 1.3rem;
    color: #374151;
    font-weight: 600;
    margin: 0;
}

.features-list-enterprise {
    list-style: none;
    margin: 0;
    padding: 0;
}

.features-list-enterprise li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
    color: #374151;
    font-size: 0.95rem;
}

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

.features-list-enterprise li i {
    color: #10b981;
    margin-right: 12px;
    font-size: 1.1rem;
}

.plan-action-enterprise {
    padding: 30px;
    background: white;
    text-align: center;
}

.btn-enterprise {
    /*background: linear-gradient(135deg, #3b82f6, #2563eb);*/
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    /*display: inline-flex;*/
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-enterprise:hover {
    /*background: linear-gradient(135deg, #2563eb, #1d4ed8);*/
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.guarantee-text {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #6b7280;
}

/* Beneficios Elegantes */
.benefits-section-elegant {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.section-title-elegant {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid-elegant {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card-elegant {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.benefit-card-elegant:hover::before {
    transform: translateX(0);
}

.benefit-card-elegant:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon-wrapper {
    margin-bottom: 30px;
}

.benefit-icon-bg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.benefit-card-elegant:hover .benefit-icon-bg {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.benefit-icon {
    font-size: 2rem;
    color: white;
}

.benefit-content {
    position: relative;
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.benefit-separator {
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.benefit-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e40af;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.benefit-highlight i {
    font-size: 0.8rem;
}

/* FAQ Acordeón Elegante */
.faq-section-accordion {
    padding: 80px 0;
    background: white;
}

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

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion-item {
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-accordion-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.faq-accordion-header {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    border-left: 4px solid #3b82f6;
}

.faq-accordion-item.active .faq-accordion-header {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.faq-accordion-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: #1f2937;
    transition: color 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-header h3 {
    color: white;
}

.faq-accordion-icon {
    transition: transform 0.3s ease;
}

.faq-accordion-icon i {
    font-size: 1.2rem;
    color: #6b7280;
    transition: color 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-icon i {
    color: white;
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-accordion-body {
    padding: 30px;
    background: white;
    border-top: 1px solid #f3f4f6;
}

.faq-accordion-body p {
    margin: 0 0 15px 0;
    color: #6b7280;
    line-height: 1.6;
}

.faq-accordion-body p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title-elegant {
        font-size: 2rem;
    }
    
    .benefits-grid-elegant {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-card-elegant {
        padding: 30px 20px;
    }
    
    .plan-card-enterprise {
        margin: 20px;
    }
    
    .plan-header-enterprise {
        padding: 30px 20px 20px;
    }
    
    .plan-pricing-enterprise, 
    .plan-features-enterprise, 
    .plan-action-enterprise {
        padding: 20px;
    }
    
    .faq-accordion-header {
        padding: 20px;
    }
    
    .faq-accordion-body {
        padding: 20px;
    }
    
    /* Layout responsivo para plan empresarial */
    .plan-enterprise-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .features-accordion-section {
        padding: 30px 20px;
    }
    
    .features-accordion-title {
        font-size: 1.5rem;
    }
    
    .features-accordion-header {
        padding: 15px 20px;
    }
    
    .features-accordion-header h4 {
        font-size: 1rem;
    }
    
    .features-accordion-body {
        padding: 20px;
    }
}

@media (max-width: 1024px) {
    .plan-enterprise-layout {
        gap: 40px;
    }
    
    .features-accordion-section {
        padding: 35px;
    }
}

/* ##################### FIN ESTILOS ELEGANTES ##################### */

/* ==================== ESTILOS PARA PASO A PASO ==================== */

/* Estilos para el flujo paso a paso */
.step-container {
    background: linear-gradient(135deg, #0c1220, #1a2436);
    /*min-height: 100vh;*/
    padding-top: 40px;
    position: relative;
}

.step-section {
    padding: 40px 0;
}

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

.step-header h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-header p {
    font-size: 1.2rem;
    color: #bbb;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Estilos del formulario de dominio (copiados de carrito.php) */
.domain-section {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 40px;
    border: none;
    max-width: 850px;
    margin: 0 auto 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.domain-section h3 {
    display: none;
}

.domain-form {
    display: flex;
    max-width: 100%;
    margin: 0;
    position: relative;
}

.domain-input {
    flex: 1;
    padding: 20px 25px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 18px;
    outline: none;
    transition: all 0.3s;
}

.domain-input:focus {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

.validate-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0 35px;
    font-size: 18px;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.domain-input::placeholder {
    color: #cbd5e1;
}

.validate-btn:hover {
    background: #2563eb;
}

.validate-result-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
    font-weight: 600;
}

.validate-result-btn:hover {
    background: var(--secondary-color);
}

.domain-status {
    margin-top: 15px;
    font-weight: 500;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.domain-valid {
    color: #28a745;
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

.domain-invalid {
    color: #dc3545;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

.continue-btn, .finalize-btn {
    /*background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));*/
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    max-width: 300px;
    font-weight: 600;
    text-align: center;
}

.continue-btn:hover, .finalize-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .step-header h2 {
        font-size: 2rem;
    }
    
    .step-header p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .domain-section {
        margin: 0 20px 30px;
    }
    
    .domain-form {
        flex-direction: column;
    }
    
    .domain-input {
        padding: 18px 25px;
        font-size: 16px;
    }
    
    .validate-btn {
        padding: 18px 25px;
        font-size: 16px;
        width: 100%;
        justify-content: center;
    }
    
    .continue-btn, .finalize-btn {
        margin: 0 20px;
        max-width: calc(100% - 40px);
    }
}

/* ==================== FIN ESTILOS PASO A PASO ==================== */

/* ==================== ESTILOS ASISTENTE VIRTUAL EN INDEX ==================== */

.mesi_assistant_section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 60px 20px;
    margin: 40px 0;
}

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

.mesi_assistant_header_index {
    text-align: center;
    margin-bottom: 40px;
}

.mesi_assistant_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.mesi_assistant_title i {
    color: var(--primary-color);
}

.mesi_assistant_subtitle_index {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mesi_search_section_index {
    margin-bottom: 40px;
}

.mesi_input_wrapper_index {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    gap: 15px;
    background: white;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
}

.mesi_input_wrapper_index:focus-within {
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
    border-color: var(--primary-color);
}

.mesi_search_input_index {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 25px;
    font-size: 1.1rem;
    background: transparent;
    color: #1e293b;
}

.mesi_search_input_index::placeholder {
    color: #94a3b8;
}

.mesi_search_btn_index {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mesi_search_btn_index:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.mesi_search_btn_index:active {
    transform: translateY(0);
}

.mesi_results_container_index {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.mesi_results_container_index.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Estilos para los resultados (reutilizando del assistant-integrated.css) */
.mesi_results_header {
    text-align: left;
    margin-bottom: -12px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mesi_results_title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 12px;
}

.mesi_results_title i {
    color: var(--primary-color);
}

.mesi_results_subtitle {
    font-size: 1rem;
    color: #64748b;
}

.mesi_results_content {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mesi_explanation_section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.mesi_explanation_text {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.6;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mesi_explanation_text i {
    color: var(--primary-color);
    margin-top: 2px;
    font-size: 1.2rem;
}

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

.mesi_service_card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mesi_service_card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.mesi_service_header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mesi_service_icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: left;
    font-size: 1.3rem;
    color: white;
}

.mesi_service_name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
    flex: 1;
}

.mesi_service_description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mesi_service_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mesi_service_link:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.mesi_loading_container {
    text-align: center;
    padding: 60px 30px;
}

.mesi_loading_spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mesi_loading_text {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .mesi_assistant_title {
        font-size: 2rem;
    }
    
    .mesi_input_wrapper_index {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        border-radius: 20px;
    }
    
    .mesi_search_input_index {
        padding: 12px 20px;
    }
    
    .mesi_search_btn_index {
        padding: 12px 25px;
        border-radius: 12px;
        justify-content: center;
    }
    
    .mesi_services_grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== FIN ESTILOS ASISTENTE VIRTUAL EN INDEX ==================== */

/* ==================== ESTILOS FORMULARIO DE CONTACTO ==================== */

.contact-container {
    min-height: 80vh;

    padding: 60px 20px;
}

.contact-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

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

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.contact-title i {
    color: var(--primary-color);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-label i {
    color: var(--primary-color);
    width: 16px;
}

/* Estilos para selección de área */
.area-selection {
    margin-bottom: 35px;
}

.area-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.area-option {
    position: relative;
    height: -webkit-fill-available;
    display: flex;

}

.area-option input[type="radio"] {
    display: none;
}

.area-label {
    display: block;
    padding: 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.area-label:hover {
    border-color: var(--primary-color);
    background: #f8fafc;
}

.area-option input[type="radio"]:checked + .area-label {
    border-color: var(--primary-color);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.area-label i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: block;
}

.area-name {
    display: block;
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.area-desc {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Campos del formulario */
.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #374151;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input::placeholder {
    color: #9ca3af;
}

.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: #374151;
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea::placeholder {
    color: #9ca3af;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.contact-submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.contact-submit-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Información de contacto */
.contact-info-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.contact-info-item {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.contact-info-item i {
    font-size: 2rem;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item h4 {
    margin: 0 0 5px 0;
    color: #1e293b;
    font-weight: 600;
}

.contact-info-item p {
    margin: 0;
    color: #64748b;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        padding: 40px 15px;
    }
    
    .contact-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-form-container {
        padding: 25px;
        border-radius: 15px;
    }
    
    .area-options {
        grid-template-columns: 1fr;
    }
    
    .contact-submit-btn {
        width: 100%;
        padding: 16px 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.8rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .area-label {
        padding: 15px;
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 15px;
    }
}

/* ==================== FIN ESTILOS FORMULARIO DE CONTACTO ==================== */

/* ==================== ESTILOS SOPORTE PERSONALIZADO ==================== */

.plan-note {
    font-size: 0.8rem;
    color: #64748b;
    margin: 5px 0 15px 0;
    font-style: italic;
}

.hosting-description {

    padding: 60px 20px;
    margin: 40px 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.description-content {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    /*color: #1e293b;*/
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.section-title i {
    color: var(--primary-color);
}

.section-title.text-center {
    justify-content: center;
}

.description-text {
    max-width: 800px;
    margin: 0 auto;
}

.description-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin: 0;
}

.features-grid-soporte {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card-soporte {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card-soporte:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    background: rgb(224, 224, 224);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: white;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.benefits-section {
    background: white;
    padding: 60px 20px;
}

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

.benefit-item {
    text-align: center;
    padding: 25px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: #f8fafc;
    padding-top: 18px;
}

.benefit-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.benefit-item p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive para soporte personalizado */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .hosting-description,
    .benefits-section {
        padding: 40px 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .description-text p {
        font-size: 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ==================== ESTILOS COTIZADOR PROFESIONAL ==================== */

.domain-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 0;
}

.domain-input-container {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.domain-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

.domain-input:focus {
    outline: none;
    border-color: #e7c43c;
    box-shadow: 0 0 15px rgba(231, 196, 60, 0.3);
}

.domain-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/*
.domain-btn {
    background: linear-gradient(135deg, #e7c43c, #b8941f);
    color: #000;
    border: none;
    border-radius: 10px;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    justify-content: center;

}*/

.domain-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(231, 196, 60, 0.3);
}

.domain-result {
    margin-top: 20px;
}

.step-actions {
    text-align: center;
    margin-top: 40px;
}

.continue-btn {
    background: linear-gradient(135deg, #4a90e2, #1a5fb4);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    opacity: 0.5;
}

.continue-btn:not([disabled]) {
    opacity: 1;
}

.continue-btn:not([disabled]):hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

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

.step-header h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.step-header p {
    color: #ddd;
    font-size: 1.2rem;
    line-height: 1.6;
}

.quote-form {
    max-width: 1000px;
    margin: 0 auto;
}

.form-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-section h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section h3 i {
    color: #e7c43c;
    font-size: 1.2rem;
}

.section-description {
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.radio-grid-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.radio-option {
    cursor: pointer;
    display: block;
}

.radio-option input[type="radio"] {
    display: none;
}

.radio-content {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.radio-option:hover .radio-content {
    background: rgba(255, 255, 255, 0.1);
    border-color: #e7c43c;
    transform: translateY(-2px);
}

.radio-option input[type="radio"]:checked + .radio-content {
    background: rgba(231, 196, 60, 0.2);
    border-color: #e7c43c;
    box-shadow: 0 5px 20px rgba(231, 196, 60, 0.3);
}

.radio-icon {
    font-size: 2rem;
    color: #e74c3c;
    min-width: 50px;
    text-align: center;
}

.radio-text {
    flex: 1;
}

.radio-text strong {
    color: #fff;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.price_dw {
    color: #3b82f6;
    font-weight: bold;
    font-size: 0.95rem;
}

.number-input-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
}

.number-input-section label {
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.number-input {
    width: 100px;
    padding: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1.1rem;
    margin-right: 15px;
}

.number-input:focus {
    outline: none;
    border-color: #e7c43c;
    box-shadow: 0 0 10px rgba(231, 196, 60, 0.3);
}

.input-note {
    color: #ddd;
    font-size: 0.9rem;
}

.price-summary {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #c0c0c0;
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
    text-align: center;
}

.price-summary h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quote-details {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    color: #ddd;
    font-size: 1rem;
    line-height: 1.6;
}

.quote-details .quote-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-details .quote-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.total-price {
    background: linear-gradient(135deg, #e7c43c, #b8941f);
    color: #000;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 10px;
}

.finalize-btn {
    background: linear-gradient(135deg, #27ae60, #1e8449);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.finalize-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

.finalize-btn:active {
    transform: translateY(0);
}

/* Responsive para cotizador */
@media (max-width: 768px) {
    .domain-input-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .domain-btn {
        width: 100%;
        min-width: auto;
    }
    
    .radio-grid {
        grid-template-columns: 1fr;
    }
    
    .radio-grid-simple {
        grid-template-columns: 1fr;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .radio-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .radio-icon {
        min-width: auto;
    }
    
    .number-input {
        width: 80px;
        margin-right: 10px;
    }
    
    .total-price {
        font-size: 1.5rem;
        padding: 12px 25px;
    }
    
    .finalize-btn {
        padding: 12px 30px;
        font-size: 1.1rem;
    }
    
    .step-header h2 {
        font-size: 1.8rem;
    }
    
    .step-header p {
        font-size: 1rem;
    }
}

/* ==================== FIN ESTILOS COTIZADOR PROFESIONAL ==================== */

/* ==================== FIN ESTILOS SOPORTE PERSONALIZADO ==================== */

        
