/* 1. CORRECCIÓN: :root con un solo par de puntos */
:root {
    /* Antes: azul muy oscuro | Ahora: Azul más vibrante y menos oscuro */
    --primary-dark: #1e293b;       /* Un tono pizarra azulado más claro */
    --secondary-dark: #334155;     /* Para fondos de secciones, más suave */
    --bg-dark: #0f172a;            /* El fondo principal un poco más azulado */
    
    /* Mantenemos el naranja porque resalta muy bien con el nuevo azul */
    --accent-orange: #f27405;
    --accent-light: #ff8c00;       /* Naranja más claro para gradientes */
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --transition: all 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 100px;
    
}

/* Las tarjetas de servicios y hosting */
.service-card, .hosting__card {
    background: #1e2b4a; /* Un azul intermedio para que resalte del fondo */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* NAVBAR MEJORADA */

.navbar {
    position: fixed; /* Cambiamos a fixed para control total */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #0f172a; /* Color oscuro sólido (ajústalo a tu azul) */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column; /* Apila la top-bar sobre la main-nav */
}
/* eliminar o comentar 
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
*/

.logo {
    display: flex;
    align-items: center;
    gap: 12px; /* Espacio entre el cuadro naranja y el texto */
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.logo-image {
    height: 120px;
    width: auto;
    object-fit: contain;
}

.logo-icon {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-light));
    color: var(--white);
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Eliminamos cualquier clip-path antiguo que pueda estar estorbando */
    clip-path: none; 
}

.logo span { 
    color: var(--accent-orange); 
    margin-left: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover { color: var(--accent-orange); }

/* HERO CON EFECTOS DE TEXTO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 120px;
    /* Fondo con un toque de luz */
    background: radial-gradient(circle at 20% 30%, rgba(242, 116, 5, 0.15), transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(30, 43, 74, 1), transparent 50%);
}

.badge {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-orange);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1; /* ANTES: No tenía o era alto. AHORA: 1 es suficiente */
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -2px;
}

/* EFECTO DEGRADADO EN TEXTO */
.hero h1 span { 
    background: linear-gradient(to right, var(--accent-orange), var(--accent-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3.5rem;
}

/* BOTONES PRO */
.hero__actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-light));
    color: var(--white);
    padding: 1.2rem 2.8rem;
    border-radius: 50px; /* Estilo cápsula más moderno */
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(242, 116, 5, 0.2);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    color: var(--white);
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(242, 116, 5, 0.4);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-nav {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
}

.btn-nav:hover {
    color: var(--accent-orange);
    background: rgba(255,255,255,0.1);
}

.btn-nav::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition);
    transform: translateX(-50%);
}

.btn-nav:hover::after {
    width: 80%;
}

/* SECCIÓN SERVICIOS */
.services {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.services__header {
    text-align: center;
    margin-bottom: 60px;
}

.services__header h2 {
    font-size: 3rem;
    margin-top: 10px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: var(--accent-orange);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Efecto decorativo en la card */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50px; height: 50px;
    background: radial-gradient(circle at top right, var(--accent-orange), transparent 70%);
    opacity: 0.2;
}

/* SECCIÓN PROCESO */
.process {
    padding: 100px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #161e35);
}

.process__header {
    text-align: center;
    margin-bottom: 70px;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step__number {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(242, 116, 5, 0.4);
    position: relative;
    z-index: 2;
    opacity: 0.9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Línea conectora (solo en PC) */
@media (min-width: 768px) {
    .step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 30px;
        left: calc(50% + 30px);
        width: calc(100% - 60px);
        height: 2px;
        background: rgba(242, 116, 5, 0.2);
        z-index: 1;
    }
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.step p {
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 0 10px;
}

/* SECCIÓN POR QUÉ ELEGIRNOS */
.why-us {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

/* SECCIÓN POR QUÉ ELEGIRNOS - AJUSTE FINAL */
.why-us__wrapper {
    display: grid;
    /* Le damos un poco más de prioridad al ancho de la imagen (1.1fr) */
    grid-template-columns: 1.1fr 1fr; 
    gap: 4rem;
    align-items: center;
}

.why-us__image {
    /* QUITAMOS el height: 450px fijo */
    width: 100%;
    position: relative;
    border-radius: 24px;
    /* Mantenemos el overflow visible para que la caja naranja no se corte */
    overflow: visible; 
}

.why-us__image img {
    width: 100%;
    height: auto; /* Que el alto se ajuste solo a la foto */
    display: block;
    object-fit: contain; /* CAMBIO CLAVE: Muestra la imagen completa sin recortar */
    border-radius: 24px;
    filter: brightness(0.8);
    /* Opcional: una pequeña sombra para que la foto resalte del fondo negro */
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Ajuste para que en tablets/móviles no se vea gigante */
@media (max-width: 992px) {
    .why-us__wrapper {
        grid-template-columns: 1fr;
    }
}

/* DISEÑO PROFESIONAL SIN ERRORES */
.experience-box {
    position: absolute;
    bottom: 30px; 
    right: 30px;
    background: var(--accent-orange); /* Naranja sólido para que sea ultra legible */
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center; /* Alinea el +10 con el centro del texto */
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.exp-number {
    font-size: 2.5rem; /* El número grande */
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem; /* Tamaño de lectura normal */
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    /* Forzamos que el texto no se rompa feo */
    max-width: 100px; 
}

/* LISTA DE BENEFICIOS PULIDA */
.check-list {
    list-style: none;
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem; /* Más espacio entre puntos para que no se vea amontonado */
}

.check-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 10px;
    border-radius: 12px;
    transition: var(--transition);
}

/* El item brilla sutilmente cuando pasas el mouse */
.check-list li:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(10px);
}

.check-icon {
    /* Creamos un círculo con degradado naranja */
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-light));
    color: var(--white);
    width: 32px;
    height: 32px;
    min-width: 32px; /* Evita que se encoja */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px; /* Forma de app moderna */
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(242, 116, 5, 0.3);
}

.check-list li strong {
    color: var(--white);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.check-list li div {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

html {
    scroll-behavior: smooth; /* Esto hace que el viaje por la landing sea fluido */
}

/* --- SECCIÓN CONTACTO FINAL --- */
.contact {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-icon {
    font-size: 1.5rem;
    background: var(--accent-orange);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.contact__form {
    background: #1e2b4a; /* El azul de tu marca */
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Info de la izquierda */
.contact__info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact__form h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.input-group { margin-bottom: 15px; }

.input-group input, 
.input-group textarea {
    width: 100%;
    padding: 15px;
    background: #0f172a;
    border: 2px solid transparent;
    border-radius: 8px;
    color: white;
    font-family: inherit;
    transition: all 0.3s ease;
}

.input-group input:focus, 
.input-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: #16203a;
}

.contact__form .btn-primary {
    background: var(--accent-orange);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
}

.contact__form .btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 116, 5, 0.4);
}

/* BOTÓN FLOTANTE */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 2000;
    transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1) translateY(-5px); }
.whatsapp-float img { width: 35px; }

/* FOOTER */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.footer__credits {
    margin-top: 40px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* SECCIÓN HOSTING MEJORADA */
.hosting-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.hosting__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.hosting__card {
    background: rgba(30, 43, 74, 0.4); /* Un azul marino traslúcido */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
}
.hosting__card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.08);
}


.hosting__icon {
    width: 130px; /* Un poco más pequeño para que respire */
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3)); /* Sombra para dar profundidad */
    transition: transform 0.3s ease;
}

.hosting__card h3 {
    font-size: 1.4rem;
    letter-spacing: 1px;
    text-transform: uppercase; /* Se ve más corporativo */
    color: #fff;
    margin-bottom: 10px;
}

.hosting__spec {
    color: var(--text-gray);
    font-weight: bold;
    margin-bottom: 20px;
}

.hosting__price {
    font-size: 1.8rem; /* Un poco más grande para que destaque */
    font-weight: 800;
    color: var(--white);
    margin: 20px 0;
    display: flex;
    flex-direction: column; /* Apila el precio y el texto pequeño */
    align-items: center;
    line-height: 1;
}

.hosting__price span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 5px; /* Espacio entre el número y el texto */
    letter-spacing: 0.5px;
}

/* Plan Destacado */
.hosting__card--featured {
    border: 2px solid var(--accent-orange);
    background: rgba(30, 43, 74, 0.8);
    padding: 40px 30px 50px 30px;
}

.badge {
    background: var(--accent-orange);
    color: white;
    padding: 5px 20px;
    font-size: 0.75rem;
    font-weight: bold;
    position: absolute;
    top: 20px;
    right: -30px;
    transform: rotate(45deg);
    width: 150px;
}

@media (max-width: 768px) {
    .badge {
        display: none;
    }
}

.hosting__icon {
    width: 120px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
    /* Efecto de brillo sutil detras del servidor */
    filter: drop-shadow(0 0 15px rgba(255, 122, 0, 0.2));
    transition: filter 0.3s ease;
    margin-bottom: 15px;
}

.hosting__card:hover .hosting__icon {
    transform: scale(1.1) rotate(-2deg); /* Un pequeño giro le da dinamismo */
    filter: drop-shadow(0 0 20px rgba(255, 122, 0, 0.3));
}

/* EFECTO PRO: El botón se ilumina al hacer hover en la card */
.hosting__card:hover .btn-secondary {
    background: var(--accent-orange);
    color: white;
    border-color: var(--accent-orange);
    box-shadow: 0 5px 15px rgba(255, 122, 0, 0.3);
}

.hosting__features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    font-size: 0.9rem;
    color: var(--text-muted);
    flex-grow: 1;
}

.hosting__features li {
    margin-bottom: 10px;
}

/* Para que el cambio del botón sea suave y no brusco */
.btn-secondary {
    transition: all 0.3s ease;
}

/* Esto separa la barra superior del menú */
.main-nav {
    display: flex;
    justify-content: space-between; /* Esto empuja el menú al extremo derecho */
    align-items: center;
    padding: 15px 0;
    width: 100%;
}

/* Estilo para los iconos y texto de arriba */
.top-bar {
    background: rgba(15, 23, 42, 0.95); /* Un poco de transparencia */
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.top-bar__wrapper {
    display: flex;
    justify-content: center; /* Centra los datos de contacto arriba */
    gap: 40px;
    align-items: center;
}

.top-bar__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #cbd5e0;
}

/* IMPORTANTE: Quitar subrayado azul y color de los links */
.top-bar__item a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar__item a:hover {
    color: var(--accent-orange);
}

.top-bar__icon {
    font-size: 1rem;
    filter: grayscale(100%); /* Opcional: hace los emojis más sobrios */
    opacity: 0.8;
}

/* 3. Limpieza de los ítems de contacto para que no se vean azules */
.top-bar__item a, 
.top-bar__item span {
    color: #ffffff !important;
    text-decoration: none !important;
    white-space: nowrap; /* Evita que el texto se parta en dos líneas */
}

/* AJUSTES FINALES EN SECCIÓN POR QUÉ ELEGIRNOS */
.why-us__subtitle {
  margin: 0.5rem 0 2rem;
  color: #bfc7d5;
  font-size: 1rem;
  max-width: 520px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.check-icon {
  color: #ff8c1a;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.check-list p {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  color: #9aa3b2;
  line-height: 1.4;
}

.process__subtitle {
  margin-top: 15px;
  color: #bfc7d5;
  font-size: 1rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.step h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.step p {
  font-size: 0.95rem;
  color: #9aa3b2;
  line-height: 1.5;
}

.step:hover .step__number {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(242, 116, 5, 0.6);
}

@media (min-width: 992px) {
  .process__steps::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
  }
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: var(--transition);
    display: flex;
    list-style: none;
    gap: 1.5rem; /* Bajamos de 2rem a 1.5rem para que respire mejor */
    align-items: center;
}

.nav-links a:hover::after {
    width: 100%;
}

html {
    scroll-behavior: smooth;
}

/* --- Estilos Sección Estado de Servicio --- */
#estado-servicio {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
    color: var(--text-light);
}

.service-status .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.service-status .section-title span {
    color: var(--accent-orange);
}

.service-status .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.status-wrapper {
    display: flex;
    justify-content: center;
}

.status-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.status-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.status-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.status-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.status-description {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation: pulse-green 2s infinite;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    font-size: 1.2rem;
}

/* Animación de Pulso para el botón de WhatsApp */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

#estado-servicio .btn-success {
    animation: pulse-green 2s infinite; /* El pulso se repite cada 2 segundos */
    border-radius: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* MENÚ HAMBURGUESA */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== RESPONSIVE DESIGN - TABLETS (768px) ===== */
@media (max-width: 768px) {
    body {
        padding-top: 130px;
    }

    /* NAVBAR RESPONSIVE */
    .navbar {
        flex-direction: column;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 12px 0;
        position: relative;
    }

    .logo {
        font-size: 1.2rem;
    }

    /* MOSTRAR MENÚ HAMBURGUESA */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #0f172a;
        padding: 10px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        padding: 0;
    }

    .nav-links a {
        display: block;
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .top-bar__wrapper {
        flex-direction: column;
        gap: 10px;
        padding: 10px 0;
    }

    .top-bar__item {
        font-size: 0.75rem;
    }

    .top-bar__email {
        display: none;
    }

    /* HERO RESPONSIVE */
    .hero {
        min-height: auto;
        padding: 40px 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero__actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 0.95rem;
        width: 100%;
    }

    /* SERVICIOS RESPONSIVE */
    .services {
        padding: 60px 0;
    }

    .services__header h2 {
        font-size: 2rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 30px;
    }

    /* PROCESO RESPONSIVE */
    .process {
        padding: 60px 0;
    }

    .process__header h2 {
        font-size: 2rem;
    }

    .process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .step__number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    /* POR QUÉ NOSOTROS RESPONSIVE */
    .why-us {
        padding: 60px 0;
    }

    .why-us__wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-us__content h2 {
        font-size: 1.8rem;
    }

    .experience-box {
        bottom: 10px;
        right: 10px;
        padding: 0.8rem 1rem;
    }

    .exp-number {
        font-size: 2rem;
    }

    /* HOSTING RESPONSIVE */
    .hosting-section {
        padding: 60px 0;
    }

    .hosting__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hosting__card {
        padding: 30px 20px;
    }

    .hosting__price {
        font-size: 1.5rem;
    }

    /* CONTACTO RESPONSIVE */
    .contact {
        padding: 60px 0;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact__info h2 {
        font-size: 1.8rem;
    }

    .contact__form {
        padding: 30px;
    }

    /* SECCIÓN ESTADO SERVICIO RESPONSIVE */
    .service-status {
        padding: 60px 0;
    }

    .service-status .section-title {
        font-size: 1.8rem;
    }

    .status-card {
        padding: 1.5rem;
    }

    /* BOTÓN WHATSAPP FLOTANTE */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float img {
        width: 28px;
    }

    /* MODAL RESPONSIVE */
    .modal-content {
        max-width: 90%;
        padding: 20px;
    }
}

/* ===== RESPONSIVE DESIGN - MÓVILES (480px) ===== */
@media (max-width: 480px) {
    body {
        padding-top: 120px;
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    /* NAVBAR MÓVIL */
    .navbar {
        position: fixed;
    }

    .main-nav {
        padding: 10px 0;
    }

    .logo {
        font-size: 1rem;
    }

    .logo-icon {
        padding: 4px 8px;
        font-size: 0.7rem;
    }

    .top-bar {
        padding: 6px 0;
    }

    .top-bar__wrapper {
        gap: 8px;
    }

    .top-bar__item {
        font-size: 0.65rem;
    }

    .top-bar__item a {
        white-space: normal;
    }

    /* HERO MÓVIL */
    .hero {
        padding: 30px 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero h1 span {
        display: block;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .hero__actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        border-radius: 30px;
    }

    /* SERVICIOS MÓVIL */
    .services {
        padding: 40px 0;
    }

    .services__header h2 {
        font-size: 1.5rem;
    }

    .services__header p {
        font-size: 0.9rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .service-card p {
        font-size: 0.85rem;
    }

    /* PROCESO MÓVIL */
    .process {
        padding: 40px 0;
    }

    .process__header h2 {
        font-size: 1.5rem;
    }

    .process__steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step {
        text-align: center;
    }

    .step__number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        margin: 0 auto 15px;
    }

    .step h4 {
        font-size: 1rem;
    }

    .step p {
        font-size: 0.85rem;
    }

    /* POR QUÉ NOSOTROS MÓVIL */
    .why-us {
        padding: 40px 0;
    }

    .why-us__wrapper {
        gap: 1.5rem;
    }

    .why-us__content h2 {
        font-size: 1.5rem;
    }

    .why-us__subtitle {
        font-size: 0.9rem;
    }

    .check-list li {
        gap: 10px;
    }

    .check-icon {
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    .check-list li strong {
        font-size: 1rem;
    }

    .check-list li div {
        font-size: 0.8rem;
    }

    .experience-box {
        position: static;
        margin-top: 1.5rem;
        width: 100%;
        justify-content: center;
    }

    .exp-number {
        font-size: 1.8rem;
    }

    .exp-text {
        font-size: 0.75rem;
    }

    /* HOSTING MÓVIL */
    .hosting-section {
        padding: 40px 0;
    }

    .hosting-section .section-title {
        font-size: 1.5rem;
    }

    .hosting-section .section-subtitle {
        font-size: 1rem;
    }

    .hosting__grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 0;
    }

    .hosting__card {
        padding: 20px 15px;
    }

    .hosting__icon {
        width: 100px;
        margin-bottom: 10px;
    }

    .hosting__card h3 {
        font-size: 1.1rem;
    }

    .hosting__features {
        font-size: 0.8rem;
        margin: 15px 0;
    }

    .hosting__price {
        font-size: 1.3rem;
    }

    .hosting__card--featured {
        padding: 20px 15px 30px 15px;
    }

    /* CONTACTO MÓVIL */
    .contact {
        padding: 40px 0;
    }

    .contact__info h2 {
        font-size: 1.5rem;
    }

    .contact__form h3 {
        font-size: 1.2rem;
    }

    .contact__form {
        padding: 20px;
        background: #1e2b4a;
    }

    .input-group input,
    .input-group textarea {
        padding: 12px;
        font-size: 1rem;
    }

    .contact__form .btn-primary {
        padding: 15px;
        font-size: 0.9rem;
    }

    .info-item {
        padding: 15px;
        gap: 10px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* SECCIÓN ESTADO SERVICIO MÓVIL */
    #estado-servicio {
        padding: 40px 0;
    }

    .service-status .section-title {
        font-size: 1.4rem;
    }

    .service-status .section-subtitle {
        font-size: 0.95rem;
    }

    .status-icon {
        font-size: 2.5rem;
    }

    .status-card {
        padding: 1.2rem;
    }

    .status-card h3 {
        font-size: 1.2rem;
    }

    .btn-whatsapp {
        padding: 10px 20px;
        font-size: 0.85rem;
        width: 100%;
    }

    .whatsapp-icon {
        font-size: 1rem;
    }

    /* FOOTER MÓVIL */
    .footer {
        padding: 40px 0 20px;
    }

    .footer__credits {
        margin-top: 20px;
        font-size: 0.7rem;
    }

    /* BOTÓN WHATSAPP FLOTANTE MÓVIL */
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }

    .whatsapp-float img {
        width: 24px;
    }

    /* MODAL MÓVIL */
    .modal-content {
        max-width: 95%;
        padding: 15px;
        border-radius: 12px;
    }

    .modal-header {
        margin-bottom: 15px;
    }

    .modal-header h2 {
        font-size: 1.3rem;
    }

    .modal-body p {
        font-size: 0.9rem;
    }

    .warning-box {
        padding: 12px;
        margin: 15px 0;
    }

    .modal-list li {
        font-size: 0.85rem;
    }

    #close-modal {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}