/* Estilos Generales del Body y la Fuente */
body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #1f1f1f;
    line-height: 1.6;
}

/* Estilos del Encabezado (Header) */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: #121212 !important; /* Gris muy oscuro sólido al inicio */
    color: white;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
    transition: background-color 0.3s ease-in-out, height 0.3s ease-in-out;
}

/* El enlace es el contenedor flexible */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
}

/* La imagen se controla solo en tamaño */
.logo img {
    height: 4rem;
    width: auto;
    display: block;
}


/* Estilos de la Navegación del Encabezado */
.main-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.main-menu {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-menu li {
    margin-left: 20px;
}

.main-menu li:first-child {
    margin-left: 0;
}

.main-menu a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
    white-space: nowrap;
}

.main-menu a:hover {
    color: #f39c12;
}

/* Efecto de subrayado en hover para el menú */
.main-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #f39c12;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.main-menu a:hover::after {
    width: 100%;
}

/* Ocultar el menú hamburguesa en desktop */
.menu-toggle {
    display: none;
}

/* Estilos del Banner Principal */
#banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #0A0A0A 0%, #141414 30%, #1E1E1E 60%, #282828 100%); /* Degradado radial centrado - Efecto espacio */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Asegura que el degradado se mantenga dentro del banner */
}

#banner #particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Asegura que esté por encima del fondo */
}

.banner-text {
    position: absolute;
    z-index: 2; /* Asegura que el texto esté por encima del fondo y las partículas */
    text-align: center;
    color: white;
}

.banner-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #ffffff;
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 1)); /* Sombra paralela negra más oscura (opacidad 1) */
}

.banner-text p {
    font-size: 24px;
    color: #f39c12;
    filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, 1)); /* Sombra paralela negra más oscura (opacidad 1) */
}

/* --- Estilos para la sección de Beneficios Clave --- */
.beneficios-seccion {
    padding: 60px 20px;
    background-color: #121212;
    text-align: center;
}

.beneficios-seccion h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #f39c12;
}

.beneficios-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.beneficio-item {
    flex: 1 1 350px; /* Ocupa al menos 350px y crece/decrece */
    padding: 40px;
    background-color: #2b2b2b; /* Color de fondo inicial gris oscuro */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out; /* Transición suave para tamaño y color */
    color: #fff; /* Cambiamos el color del texto para que contraste con el fondo oscuro */
}

.beneficio-item:hover {
    transform: scale(1.02); /* Expansión más ligera (2% más grande) */
    background-color: #353535; /* Gris más claro al pasar el cursor */
}

.beneficio-item .icono {
    font-size: 48px;
    color: #585858; /* Un color акцентный */
    margin-bottom: 20px;
}

.beneficio-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff; /* Cambiamos el color del título para que contraste */
}

.beneficio-item p {
    font-size: 16px;
    color: #ddd; /* Cambiamos el color del texto para que contraste */
    line-height: 1.6;
}

.beneficios-cta {
    font-size: 20px;
    color: #fff;
    margin-top: 30px;
}

.beneficios-cta a {
    color: #f39c12;
    text-decoration: none;
    font-weight: bold;
}

.beneficios-cta a:hover {
    text-decoration: underline;
}




.proceso{
    padding: clamp(56px, 7vw, 96px) 24px;
    background:#0f1115;
    color:#e6e6e6;
}

.proceso__header{
    text-align:center;
    max-width:980px;
    margin:0 auto clamp(32px, 4.6vw, 56px);
}

.proceso__title{
    font-size: clamp(26px, 3.8vw, 40px);
    line-height:1.12;
    margin:0 0 12px;
    font-weight:800;
    background: linear-gradient(90deg,#0ea5ff,#6366f1,#ec4899);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}

.proceso__sub{
    color:#a8b0bf;
    font-size: clamp(15px, 2.2vw, 18px);
    max-width:780px;
    margin:0 auto;
}

/* Grid de pasos */
.proceso__grid{
    list-style:none;
    display:grid;
    gap:clamp(22px, 2.8vw, 32px);
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* + ancho mínimo */
    max-width:1280px;  /* + contenedor */
    margin:0 auto clamp(32px, 4.6vw, 56px);
    counter-reset: paso;
    padding:0;
}

.proceso__item{
    background:#141822;
    border:1px solid rgba(255,255,255,.06);
    border-radius:18px;
    padding: clamp(22px, 3vw, 30px);
    min-height: 220px;   /* ↑ más alto */
    box-shadow:0 12px 28px rgba(0,0,0,.3);
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    position:relative;
    overflow:hidden;
}

.proceso__item::before{
    counter-increment: paso;
    content: counter(paso);
    position:absolute;
    top:12px; right:16px;
    font-weight:800;
    font-size:32px;
    color:#a8b0bf;
    opacity:.18;
}

.proceso__item:hover{
    transform:translateY(-2px);
    box-shadow:0 14px 34px rgba(0,0,0,.36);
    border-color:rgba(255,255,255,.1);
}

/* Icono más grande */
.proceso__icon{
    width:60px; height:60px;
    border-radius:14px;
    display:grid; place-items:center;
    margin-bottom:14px;
    background:linear-gradient(135deg,#0ea5ff,#6366f1,#ec4899);
    color:#fff;
    position: relative;
    isolation: isolate;
}
.proceso__icon::after{
    content:"";
    position:absolute; inset:-6px;
    border-radius:16px;
    background:linear-gradient(135deg,#0ea5ff,#6366f1,#ec4899);
    filter: blur(10px);
    opacity:.24;
    z-index:-1;
}

.proceso__item h3{
    font-size: clamp(18px, 2.6vw, 20px);
    margin:0 0 8px;
    font-weight:700;
    color:#fff;
}

.proceso__item p{
    margin:0;
    color:#a8b0bf;
    font-size: clamp(15px, 2.2vw, 17px);
    line-height:1.7;
}

/* Ajustes móviles */
@media (max-width: 768px){
    .proceso__grid{
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); /* cajas anchas en móvil */
    }
}
@media (max-width:520px){
    .proceso__item{
        min-height:200px;
        padding:20px;
    }
    .proceso__icon{ 
        width:56px; height:56px;
    }
}


/* Estilos para la sección de Precios */
.precios-seccion {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0f1115, #1a1a1a);
    text-align: center;
}

/* 2) Tarjetas: color base */
.precios-seccion .precio-item {
    background-color: #141822;
    border-color: rgba(255,255,255,0.08); 
    color: #e6e6e6;                        
}


.precios-seccion h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #f39c12;
}

.precios-seccion p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ffffff;
}

.precios-lista {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px; /* Más espacio entre cajas */
}

.precio-item {
    flex: 1 1 320px; /* Más ancho mínimo */
    max-width: 340px; /* Más ancho máximo */
    background-color: #312a00;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 32px 24px; /* Más padding */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative; /* Para la etiqueta */
}

.precio-item h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #f39c12; 
}

.precio-item .precio {
    font-size: 32px;
    margin-bottom: 20px;
}

.precio-item ul {
    font-size: 18px;
    margin-bottom: 20px;
}

.precio-item ul li {
    margin-bottom: 12px;
    color: #ffffff;
}


/* Estilo para el plan destacado */
.precio-item.destacado {
    border: 2px solid #f39c12;
    background-color: #312a00;
}

/* Etiqueta RECOMENDADO */
.etiqueta-recomendado {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #2d2dff;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 6px 18px;
    border-radius: 16px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(44,44,255,0.15);
    z-index: 2;
    text-transform: uppercase;
}

/*   ===Botón de WhatsApp flotante===  */

.whatsapp-float {
    --closed-size: 70px;   /* tamaño del círculo cerrado */
    --open-width: 260px;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: var(--closed-size);
    height: var(--closed-size);
    background: #1a1a1a;
    color: #f39c12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0,0,0,.75);
    transition: width .3s ease, border-radius .3s ease;
    z-index: 1000;
}

/* Ícono WhatsApp */
.whatsapp-float i {
    font-size: 30px;  /* ajusta el tamaño del logo */
    min-width: 30px;  /* asegura que siempre quede visible */
    text-align: center;
}

/* Texto oculto al inicio */
.whatsapp-float span {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width .3s ease, opacity .2s ease .1s, margin-left .3s ease;
    margin-left: 0;
    font: 600 15px/1.1 system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Al pasar el cursor */
.whatsapp-float:hover {
    width: var(--open-width);
    border-radius: 26px;
    justify-content: flex-start;
    padding-left: 15px;
}

.whatsapp-float:hover span {
    max-width: 160px;
    opacity: 1;
    margin-left: 8px;
}












/*   === FOOTER ===   */

.footer-principal{
    background:#18191a;
    color:#fff;
    padding:48px 0 16px;
    margin-top:48px;
    font-family:'Montserrat', Arial, sans-serif;
}

.footer-container{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:flex-start;
    gap:32px;
    padding:0 24px;
}

.footer-logo{ 
    width:15rem; 
    height:auto;
}

.footer-logo img{
    width:8rem;
    height:auto;
    display:block;
    object-fit:contain;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:12px;
}
.footer-links a{
    color:#fff;
    text-decoration:none;
    font-size:1rem;
    transition:color .2s ease;
}
.footer-links a:hover{
    color:#f39c12;
}

.footer-contacto p{
    margin:0 0 6px 0;
    font-size:1rem;
}

.footer-principal .footer-redes{
    display:flex;
    justify-content:flex-start;
    align-items:center;
    gap:16px;
    margin-top:6px;
    text-align:center;
}
.footer-principal .footer-redes a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    line-height:1;            /* evita desalineaciones verticales */
    font-size:22px;           /* base (móvil) */
    color:#fff;
    text-decoration:none;
    background:none;          /* quita el cuadro naranja de hover global */
    border:0;
    padding:0;
    transition:color .2s ease, transform .2s ease;
}

.footer-principal .footer-redes a:hover{
    color:#f39c12;
    background:none;
}

/* Copy */
.footer-copy{
    text-align:center;
    color:#bbb;
    font-size:.95rem;
    margin-top:32px;
    border-top:1px solid #222;
    padding-top:12px;
}

/* ===== Responsive ===== */

@media (min-width:768px){
    .footer-principal .footer-redes a{
        font-size:28px;
    }
}
@media (min-width:1200px){
    .footer-principal .footer-redes a{
        font-size:34px;
    }
}

@media (min-width:992px){
    .footer-container{
        display:grid;
        grid-template-columns:1fr 1fr 1fr;
        align-items:center;
    }
}

/* Mobile layout */
@media (max-width:700px){
    .footer-container{
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:24px;
    }
    .footer-logo{
        display:flex;
        justify-content:center; }
    .footer-logo img{
        width:8rem; }
    .footer-principal .footer-redes{
    justify-content:center;
    gap:14px;
    }
}

@media (max-width:420px){
    .footer-principal .footer-redes a{ 
        font-size:18px;
    }
    .footer-principal .footer-redes{
        gap:12px;
    }
    .footer-logo img{
        width:6rem; }
}











/*   ===RESPOSIVE INDEX.HTML===   */


/* Animación de las imágenes */
@keyframes flotar {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* --- Media Queries para Responsividad --- */

/* Para pantallas más pequeñas (hasta 992px) */
@media (max-width: 992px) {
    .beneficios-lista {
        gap: 30px;
    }

    .beneficio-item {
        flex-basis: calc(50% - 15px);
        padding: 30px;
    }

    .beneficio-item h3 {
        font-size: 20px;
    }
}

/* Media query para pantallas entre 501px y 900px */
@media (max-width: 900px) and (min-width: 501px) {
    .presentacion-contenido {
        display: block; /* Cambia a diseño de bloque */
        text-align: center; /* Centra el texto */
        padding: 0 20px; /* Añade espacio lateral */
        margin: 0 auto; /* Centra el contenedor */
        box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
    }

    .presentacion-texto {
        width: 100%; /* Asegura que el texto ocupe todo el ancho disponible */
        margin: 0 auto; /* Centra el texto */
        line-height: 1.6; /* Mejora la legibilidad */
    }

    .presentacion-texto h2 {
        font-size: 24px; /* Ajusta el tamaño del título */
        margin-bottom: 15px; /* Espacio inferior */
    }

    .presentacion-texto p,
    .presentacion-texto ul {
        font-size: 16px; /* Ajusta el tamaño del texto */
    }

    .presentacion-texto ul {
        padding-left: 20px; /* Añade espacio para las listas */
        text-align: left; /* Alinea las listas a la izquierda */
    }

    .presentacion-texto a.boton-cta {
        display: inline-block;
        margin-top: 20px; /* Espacio superior */
        padding: 10px 20px;
        font-size: 16px;
        text-decoration: none;
        background-color: #007bff; /* Color del botón */
        color: #fff; /* Color del texto */
        border-radius: 5px;
    }

    .presentacion-texto a.boton-cta:hover {
        background-color: #0056b3; /* Color al pasar el mouse */
    }
}

/* Estilos para el menú responsive */
@media (max-width: 800px) {
    /* Mostrar el botón de menú hamburguesa */
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        cursor: pointer;
        z-index: 110;
        margin-left: 20px;
    }

    /* Animación para el icono hamburguesa cuando está activo */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);

    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Estilo para el menú móvil */
    .main-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 70%;
        height: calc(100vh - 80px);
        background-color: #121212;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    /* Mostrar el menú cuando está activo */
    .main-nav.active .main-menu {
        right: 0;
    }

    /* Estilo para los elementos del menú */
    .main-menu li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    .main-menu a {
        display: block;
        padding: 10px 0;
        font-size: 16px;
    }

    /* Eliminar el efecto de subrayado en móvil */
    .main-menu a::after {
        display: none;
    }
}

/* Para pantallas medianas (hasta 768px) */
@media (max-width: 768px) {
    .beneficios-seccion {
        padding: 40px 15px;
    }

    .beneficios-seccion h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .beneficios-lista {
        flex-direction: column;
        gap: 20px;
    }

    .beneficio-item {
        flex-basis: 100%;
        padding: 25px;
    }

    .beneficio-item h3 {
        font-size: 18px;
    }

    .beneficios-cta {
        font-size: 16px;
    }
}

/* Para pantallas pequeñas (hasta 480px) */
@media (max-width: 480px) {
    .main-menu {
        width: 100%;
    }
}

/* Estilos básicos para el contenido para que no quede debajo del header fijo */
.content {
    margin-top: 80px; /* Ajuste para la altura del header en escritorio */
    padding: 20px;
}

@media (max-width: 768px) {
    .content {
        margin-top: auto; /* Se ajustará según la altura del header en móvil */
    }
}









/*   ===SERVICIOS.HTML===   */

.hero-animado {
    position: relative;
    min-height: 62vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
    radial-gradient(1200px 600px at 10% 10%, rgba(45,45,255,0.16), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(243,156,18,0.18), transparent 60%),
    radial-gradient(1000px 700px at 50% 100%, rgba(111,66,193,0.18), transparent 60%),
    #0f1115;
    animation: bgShift 18s ease-in-out infinite alternate;
}

@keyframes bgShift {
    0%   { background-position: 10% 10%, 90% 20%, 50% 100%; }
    100% { background-position: 20% 30%, 80% 10%, 55% 90%; }
}

.hero-animado .decor {
    position: absolute;
    width: 46vmin;
    height: 46vmin;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(28px);
    opacity: 0.55;
    mix-blend-mode: screen;
    will-change: transform, border-radius;
}

.hero-animado .decor-1 {
    top: -10vmin; left: -6vmin;
    background: linear-gradient(135deg, #2d2dff 0%, #7c5cff 100%);
    animation: morph 16s ease-in-out infinite, floatY 12s ease-in-out infinite;
}
.hero-animado .decor-2 {
    bottom: -12vmin; right: -6vmin;
    background: linear-gradient(135deg, #f39c12 0%, #ffd166 100%);
    animation: morph 18s ease-in-out infinite reverse, floatX 14s ease-in-out infinite;
}
.hero-animado .decor-3 {
    top: 20%; right: 20%;
    background: linear-gradient(135deg, #00d8ff 0%, #2dd4bf 100%);
    animation: morph 20s ease-in-out infinite alternate, floatXY 16s ease-in-out infinite;
}

@keyframes morph {
    0%   { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(0deg) scale(1); }
    50%  { border-radius: 58% 42% 35% 65% / 46% 54% 46% 54%; transform: rotate(10deg) scale(1.05); }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(0deg) scale(1); }
}
@keyframes floatY { from { transform: translateY(0); } to { transform: translateY(14px); } }
@keyframes floatX { from { transform: translateX(0); } to { transform: translateX(16px); } }
@keyframes floatXY {
    0%   { transform: translate(0,0); }
    50%  { transform: translate(-10px, 12px); }
    100% { transform: translate(0,0); }
}

.hero-animado .hero-contenido {
    position: relative;
    text-align: center;
    z-index: 1;
    padding: 56px 20px;
    color: #eaeefb;
}

.hero-animado h2 {
    margin: 0 0 12px 0;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
}

.hero-animado{
    padding-top: calc(var(--header-h) + 16px);
    padding-top: calc(var(--header-h) + 16px + env(safe-area-inset-top, 0px));
}

.hero-animado .gradiente-texto{
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-weight: 800;
    text-shadow: none;
}

/* Estela de color visible sobre texto blanco */
.hero-animado .gradiente-texto::after{
    content: attr(data-text);
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg,transparent 0%,transparent 30%,#FFD700 38%,#FF6B00 46%,#FF2D95 54%,#C77DFF 62%,transparent 70%,transparent 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    mix-blend-mode: normal;
    opacity: 1;
    font: inherit;
    animation: colorTrail 12s linear infinite;
    pointer-events: none;
}

@keyframes colorTrail{
    0%   { background-position: -180% 0; }
    100% { background-position: 180% 0; }
}

.hero-animado::before {
    background: rgba(0,0,0,0.28); 
}

.hero-animado .sub {
    margin: 6px auto 22px;
    max-width: 52ch;
    opacity: 0.9;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
}

.hero-animado .btn-cta {
    display: inline-block;
    background: #f39c12;
    color: #0f1115;
    padding: 12px 22px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: .3px;
    box-shadow: 0 8px 30px rgba(243,156,18,0.35);
    transition: transform .18s ease, box-shadow .18s ease;
}
.hero-animado .btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 34px rgba(243,156,18,0.48);
}

@media (max-width: 720px) {
    .hero-animado{
        min-height: 58vh;
    }
    .hero-animado .decor{
        width: 56vmin; height: 56vmin; filter: blur(24px);
    }
}

@media (max-width: 480px){
    :root {
        --header-h: 72px;
    }
    .hero-animado{
        padding-top: calc(var(--header-h) + 20px + env(safe-area-inset-top, 0px));
        min-height: 64vh;
    }
    .hero-animado .hero-contenido{ 
        padding-top: 8px; 
    }
}

/* ESTILOS DE SERVICIOS */
.services-section {
    padding: 4rem 2rem;
    text-align: center;
}

.services-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #f39c12;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.service-card {
    background-color: #333;
    border-radius: 20px;
    width: 280px;
    padding: 2rem 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card .description {
    color: #555;
}

.service-card .overlay {
    position: absolute;
    inset: 0;
    background-color: #f39c12;
    color: white;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    transform: translateY(100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    text-align: center;
    border-radius: 0 0 20px 20px;
}

.service-card:hover .overlay {
    transform: translateY(0);
}


.overlay .btn {
    margin-top: 1rem;
    display: inline-block;
    background-color: white;
    color: #f39c12;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
}

/* ===== BENEFICIOS SUELTOS (RESPONSIVE, 5 ÍTEMS OK) ===== */

.beneficios-sueltos {
    padding: 70px 0 40px 0;
    background: #18191a;
}

.beneficios-sueltos-titulo {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 56px;
    letter-spacing: -1px;
}

/* Usamos FLEX para centrar la última fila automáticamente */
.beneficios-sueltos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: center;   /* <- esto centra la fila incompleta */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Tarjeta */
.beneficio-suelto {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 300px;    
    max-width: 340px;       
    min-width: 240px;        
    transition: transform .18s;
}
.beneficio-suelto:hover { transform: translateY(-6px) scale(1.03); }

/* Icono */
.beneficio-suelto-img {
    background: linear-gradient(135deg, #2d2dff 30%, #f39c12 100%);
    color: #fff;
    border-radius: 18px;
    width: 74px; height: 74px;
    display: grid; place-items: center;
    font-size: 2.1rem;
    margin-bottom: 18px;
    box-shadow: 0 4px 18px rgba(44,44,255,0.10);
}

.beneficio-suelto h3 {
    font-size: 1.2rem;
    color: #f39c12;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.beneficio-suelto p {
    color: #b9c7f7;
    font-size: 1.03rem;
    margin: 0;
    line-height: 1.6;
    max-width: 36ch;
}

/* ===== Breakpoints ===== */

/* 📌 Escritorio ancho: 3 arriba + 2 abajo (porque cada card ≈300px) */
@media (min-width: 1100px) {
    .beneficio-suelto { flex-basis: 300px; }
}

/* 📌 Escritorio/Tablet mediano: 2 arriba + 3 abajo */
@media (min-width: 900px) and (max-width: 1099px) {
    .beneficio-suelto { flex-basis: calc(50% - 36px); } /* 2 por fila */
}

/* 📌 Tablet chica / móvil grande: 2 por fila */
@media (min-width: 600px) and (max-width: 899px) {
    .beneficio-suelto { flex-basis: calc(50% - 36px); }
}

/* 📌 Móvil: 1 por fila */
@media (max-width: 599px) {
    .beneficio-suelto { flex-basis: 100%; max-width: 520px; }
    .beneficios-sueltos-grid { padding: 0 16px; gap: 28px; }
    .beneficios-sueltos-titulo { font-size: 1.6rem; margin-bottom: 28px; }
    .beneficio-suelto-img { width: 58px; height: 58px; font-size: 1.6rem; }
    .beneficio-suelto h3 { font-size: 1.05rem; }
    .beneficio-suelto p { font-size: 0.98rem; }
}











/*   ===PORQUE-ELEGIRNOS==   */

.ventajas-servicio {
    background-color: #121218;
    color: #ffffff;
    padding: 60px 20px;
}

.ventajas-servicio .contenedor-ventajas {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.titulo-ventajas {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ff7a00;
}

.descripcion-ventajas {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #cccccc;
}

.puntos-ventajas {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ventaja h3 {
    color: #ff7a00;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.ventaja p {
    font-size: 1rem;
    color: #bbbbbb;
line-height: 1.6;
}

@media (min-width: 768px) {
.puntos-ventajas {
    flex-direction: row;
    justify-content: space-between;
}

.ventaja {
    width: 30%;
    text-align: left;
}
}


.web-con-alma {
    background: linear-gradient(135deg, #0d0d0d, #1a1a1a);
    color: #fff;
    padding: 80px 20px;
}

.contenedor-web {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

.texto-web {
    flex: 1 1 500px;
    max-width: 600px;
}

.texto-web h2 {
    font-size: 2.2rem;
    color: #0062cc;
    margin-bottom: 20px;
}

.texto-web p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.texto-web .llamado-accion {
    font-weight: bold;
    color: #ff7a00;
    margin-top: 10px;
    font-size: 1.1rem;
}

.imagen-web {
    flex: 1 1 300px;
    display: flex;
    justify-content: center;
}

.imagen-interactiva {
    max-width: 500px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: flotando 3s ease-in-out infinite;
    will-change: transform;
    display: block;
    margin: 0 auto;
    filter: brightness(1);
    perspective: 1000px;
}

/* Flotación suave */
@keyframes flotando {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hover adicional */
.imagen-interactiva:hover {
    filter: brightness(1.1);
    box-shadow: 0 15px 30px rgba(0, 98, 204, 0.3);
}

.impulsa-presencia {
    background: linear-gradient(to right, #0f0f0f, #1a1a1a);
    color: #fff;
    padding: 5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contenedor-impulso {
    max-width: 1100px;
    margin: 0 auto;
    }

.titulo-impulso {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(90deg, #0062cc, #ff7a00);
    -webkit-background-clip: text;   /* soporte para Chrome/Safari */
    background-clip: text;           /* soporte estándar */
    -webkit-text-fill-color: transparent; /* hace visible el degradado */
    color: transparent;              /* fallback */
}


.subtitulo-impulso {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

.bloques-impulso {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}


.bloque {
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 98, 204, 0.3); /* borde azul sutil */
    transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
}

.bloque:hover {
    transform: translateY(-5px);
    background: rgba(0, 98, 204, 0.08);
    border: 1px solid rgba(0, 98, 204, 0.6);
}

.bloque h3 {
    font-size: 1.3rem;
    color: #ff7a00;
    margin-bottom: 0.8rem;
}

.bloque p {
    font-size: 1rem;
    color: #bbbbbb;
}

.cta-impulso .boton-impulso {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    border: 2px solid #0062cc;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-impulso .boton-impulso:hover {
    background-color: #0062cc;
    color: #fff;
    border-color: #005bb5;
}










/*   ===CONTACTO===   */
.contact-split{
    position: relative;
    isolation: isolate;
    color: #fff;
    margin-top: 5rem;
    background:
    radial-gradient(900px 600px at 6% 0%, rgba(45,45,255,0.16), transparent 60%),
    radial-gradient(900px 600px at 96% 12%, rgba(243,156,18,0.16), transparent 60%),
    #0f1115;
    padding: clamp(48px, 8vw, 96px) 20px;
    overflow: hidden;
}

.contact-split__wrap{
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
}

/* ----- Texto ----- */
.contact-split__text .eyebrow{
    display: inline-block;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .85rem;
    color: #b9c7f7;
    opacity: .9;
}

.contact-split__text h2{
    margin: 8px 0 10px;
    font-weight: 900;
    font-size: clamp(1.8rem, 4.8vw, 2.6rem);
    letter-spacing: -0.5px;
    line-height: 1.1;
    text-wrap: balance;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,.35));
}

.contact-split__text .lead{
    margin: 0 0 14px;
    color: #eaeefb;
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    max-width: 62ch;
}

.contact-split .points{
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    padding: 0; margin: 10px 0 0;
    list-style: none;
    color: #c7d2fe;
    font-weight: 600;
}

.contact-split .points li{
    position: relative;
    padding-left: 18px;
}
.contact-split .points li::before{
    content: "";
    position: absolute;
    left: 0; top: .6em;
    width: 8px; height: 8px;
    border-radius: 999px;
    background: #f39c12;         /* acento */
    box-shadow: 0 0 0 4px rgba(243,156,18,.18);
}


.contact-split__media{
    position: relative;
}

.device-mock{
    position: relative;
    margin: 0;
    border-radius: 22px;
    background:
    radial-gradient(80% 100% at 10% 10%, rgba(111,66,193,.18), transparent 60%),
    radial-gradient(80% 120% at 80% 80%, rgba(45,45,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 60px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.06);
    padding: clamp(10px, 2vw, 16px);
}

.device-mock img{
    display: block;
    width: min(640px, 100%);
    height: auto;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.35);
}

/* Etiquetas decorativas (opcionales) */
.badge{
    position: absolute;
    display: inline-block;
    white-space: nowrap;
    font-size: .78rem;
    font-weight: 700;
    color: #0f1115;
    background: #f39c12;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(243,156,18,.35);
}
.badge--top  { 
    top: -10px; 
    left: 18px; 
}
.badge--left { 
    bottom: -12px; 
    left: 12px; 
}
.badge--right{ 
    bottom: -12px; 
    right: 12px; 
}

/* ----- Layout de columnas (desktop) ----- */
@media (min-width: 900px){
    .contact-split__wrap{
        grid-template-columns: 1.05fr .95fr;  /* texto / imagen */
        gap: clamp(32px, 5vw, 72px);
    }
    .contact-split__text{
        order: 1; }
    .contact-split__media{
        order: 2; 
        justify-self: end; 
    }
}

/* ----- Ajustes móviles ----- */
@media (max-width: 899.98px){
    .contact-split__text{
        text-align: center;
    }
    .contact-split .points{
        justify-content: center;
    }
    .badge{
        display: none; } /* menos ruido en pantallas pequeñas */
}



.contacto-directo {
    background: #18191a;
    padding: 90px 0 70px 0;
    color: #fff;
    text-align: center;
}

.contacto-titulo {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
    letter-spacing: -1px;
}

.contacto-intro {
    font-size: 1.15rem;
    margin-bottom: 48px;
    color: #b9c7f7;
    line-height: 1.7;
}

.contacto-redes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 48px;
    max-width: 1100px;
    margin: 0 auto 38px auto;
    justify-items: center;
}

.contacto-red {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #f39c12;
    font-size: 1.13rem;
    font-weight: 600;
    transition: color 0.18s, transform 0.18s;
    padding: 0;
}

.contacto-red i {
    font-size: 2.7rem;
    color: #f39c12;
    margin-bottom: 6px;
    transition: color 0.18s, transform 0.18s;
}

.contacto-red:hover,
.contacto-red:focus {
    color: #fff;
}

.contacto-red:hover i,
.contacto-red:focus i {
    color: #fff;
    transform: scale(1.13);
}

.contacto-extra {
    margin-top: 38px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    color: #b9c7f7;
    font-size: 1.08rem;
}

.contacto-extra strong {
    color: #f39c12;
}

/* Responsive */
@media (max-width: 900px) {
    .contacto-redes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 0;
    }
}
@media (max-width: 600px) {
    .contacto-titulo {
        font-size: 1.3rem;
    }
    .contacto-intro {
        font-size: 1rem;
    }
    .contacto-redes-grid {
        grid-template-columns: 1fr;
        gap: 22px 0;
    }
    .contacto-red i {
        font-size: 2rem;
    }
    .contacto-extra {
        font-size: 0.98rem;
        gap: 16px;
    }
}










/*   ===TERMINOS Y CONDICIONES / POLITICA DE PRIVACIDAD===   */

.tc{
    --accent: #f39c12;
    --ink: #eaeefb;
    --muted: #b9c7f7;
    --bg: #0f1115;
    padding: clamp(8rem, 6vw, 64px) 20px;
    background: var(--bg);
    color: var(--ink);
}

.tc__container{
    max-width: 1000px;
    margin: 0 auto;
}

.tc h1{
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    font-weight: 900;
    letter-spacing: -0.3px;
    margin: 0 0 6px;
}
.tc__date{
    color: var(--muted);
    margin: 0 0 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 12px;
}

.tc__divider{
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
    margin: 10px 0 16px;
}

/* Texto */
.tc h2{
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin: 20px 0 8px;
    font-weight: 800;
    scroll-margin-top: calc(var(--header-h, 70px) + 16px); /* evita corte con header fijo */
}

.tc p{
    line-height: 1.7; 
    margin: 0 0 12px;
}
.tc ul{
    margin: 0 0 12px 1.2rem;
    line-height: 1.7;
}
.tc li{
    margin: 4px 0;
}

/* Botón descarga */
.tc__actions{
    margin-top: 18px;
}

.btn-descargar{
    display: inline-flex;
    align-items:center;
    gap: 10px;
    background: var(--accent);
    color: #0f1115;
    padding: 12px 18px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(243,156,18,.35);
    transition: transform .15s ease, box-shadow .15s ease;
}
.btn-descargar:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(243,156,18,.48);
}

.tc a{ color:#cfe0ff; text-decoration: underline; }
