/*Reset*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*BODY*/

body{
    font-family: "inter", sans-serif;
    background: #111;
    color: white;
    scroll-behavior: smooth;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/*HEADER ESTILO APPLE*/

.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 40px;

    background: rgba(15,15,15,0.6);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    z-index: 1000;
}

/*LOGO*/

.logo-container{
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon{
    height: 40px;
    width: auto;
}

.logo-text{
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-sub{
    font-size: 10px;
    font-weight: 600;
    opacity: 0.7;
    letter-spacing: 2px;
    margin-top: 3px;
}

/*MENU HAMBURGUEZA */

.menu-toggle{
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.menu-toggle span{
    width: 26px;
    height: 2px;
    background: white;
    display: block;
    border-radius: 10px;
    transition: 0.3s;
}

/* Nav desktop */

.header-nav{
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a{
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.25s ease;
}

.header-nav a::after{
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6e8cff;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.header-nav a:hover{
    color: #fff;
}

.header-nav a:hover::after{
    width: 100%;
}

/*HERO*/

.hero{

    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 120px 40px 80px;
    background: radial-gradient(circle at 50% 0%, rgba(79,124,255,0.25), transparent 60%), radial-gradient(circle at 20% 40%, rgba(79,124,255,0.15), transparent 50%), #0f0f0f;
}

.hero-logo{
    width: 140px;
    margin-bottom: 20%;
    /*opacity: 0.95;*/
    display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 5px 15px rgba(79,124,255,0.25));
}

.hero-content{
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
}

.hero h1{
    font-size: 52px;

    margin-bottom: 20px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -1px;

}

.hero-content p {
    margin-bottom: 24px;
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.6;
}

.hero-button {
    margin-top: 8px;
}

.hero-button{
    display: inline-block;

    padding: 16px 34px;

    background: linear-gradient(135deg, #4f7dff, #6e8cff);

    color: white;

    text-decoration: none;

    border-radius: 999px;

    font-weight: 600;

    transition: all 0.3s ease;

}

.hero-button:hover{

    background: #365fd6;

}

/*HOVER*/

.hero-button:hover{
    background: #365fd6;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(79,124,255,0.45);
}

/*MENU OVERLAY ESTILO APPLE*/

.mobile-menu{
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    max-width: 90%;
    height: 100vh;
    background: #121212;
    box-shadow: -10px 0 40px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    padding: 40px;
    transition: 0.55s cubic-bezier(0.77, 0, 0.81, 1);
    z-index: 2000;
}

.mobile-menu.active{
    right: 0;
}

.mobile-menu.active .mobile-nav a{
    opacity: 1;
    transform: translateX(0);
}

/*NAV MENU*/

.mobile-nav{
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.mobile-nav a{
    font-size: 30px;
    font-weight: 500;
    text-decoration: none;
    color: white;
    letter-spacing: -0.5px;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.5s ease;
}

.mobile-nav a:nth-child(1){transition-delay: 0.1s;}
.mobile-nav a:nth-child(2){transition-delay: 0.15s;}
.mobile-nav a:nth-child(3){transition-delay: 0.2s;}
.mobile-nav a:nth-child(4){transition-delay: 0.25s;}
.mobile-nav a:nth-child(5){transition-delay: 0.3s;}
.mobile-nav a:nth-child(6){transition-delay: 0.35s;}
.mobile-nav a:nth-child(7){transition-delay: 0.4s;}
.mobile-nav a:nth-child(8){transition-delay: 0.45s;}

/*HOVER ESTILO APPLE*/

.mobile-nav a:hover{
    color: #4f7cff;
    transform: translateX(8px);

}

/*ANIMACION HAMBURGUEZA A X*/

.menu-toggle.active span:nth-child(1){
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity: 0;
}

.menu-toggle.active span:nth-child(3){
    transform: translateY(-8px) rotate(-45deg);
}

.menu-close{
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 28px;
    cursor: pointer;
    color: white;
    transition: 0.3s;
}

.menu-close:hover{
    transform: rotate(90deg);
}

/*OVERLAY FONDO*/

.menu-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
    z-index: 1500;
}

.menu-overlay.active{
    opacity: 1;
    pointer-events: auto;
}

/*SECCION SERVICIOS*/

.services{
    padding: 120px 40px;
    background: #0f0f0f;
    display: flex;
    justify-content: center;
}

.services-container{
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 40px;
    width: 100%;
}

/*TARJETAS*/

.service-card{
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

/*EFECTO HOVER*/

.service-card:hover{
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 40px rgba(79,124,255,0.25);
    border-color: #4f7cff;
}

/*TITULOS*/

.service-card h2{
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/*TEXTO*/

.service-card p{
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 30px;
}

/*LISTA*/

.service-card ul{
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.service-card li{
    position: relative;
    padding-left: 20px;
    opacity: 0.9;
}

.service-card li::before{
    content: "----";
    position: absolute;
    left: 0;
    color: #4f7cff;
}

/*LINK*/

.service-link{
    text-decoration: none;
    color: #4f7cff;
    font-weight: 500;
    transition: 0.3s;
}

.service-link:hover{
    letter-spacing: 1px;
}

/*ANIMACION CARDS*/

.left-card{
    opacity: 0;
    transform: translateX(-150px);
}

.right-card{
    opacity: 0;
    transform: translateX(150px);
}

/*CUANDO APARECEN*/

.service-card.show{
    opacity: 1;
    transform: translateX(0);
    transition: all 0.9s ease;
}

/* BORDE TECNOLOGICO*/

.service-card::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(120deg, transparent, rgba(79,124,255,0.6), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover::before{
    opacity: 1;
}

/*GLOW SUAVE*/

.service-card::after{
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(79,124,255,0.25), transparent 70%);
    top: -120px;
    right: -120px;
    opacity: 0;
    transition: 0.5s;
}

.service-card:hover::after{
    opacity: 1;
}

/*=========================================
SECCION: WHY US / RAZONES
Descripción: sección persuasiva qie explica
por qué elegir nuestro sitio web
=========================================*/

.why-us{
    padding: 100px 20px;
    background-color: #F5F7FF;
}

/*Contenedor central del sitio*/

.why-us .container {
    max-width: 900px;
    margin: 0 auto;
}

/*Título principal de la sección*/

.why-us .section-title{
    font-size: 36px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 60px;
    color: #111;
    line-height: 1.3;
}

/*Contenedor de razones*/

.why-us .reasons {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/*Cada bloque de razón*/

.why-us .reason{
    position: relative;
    padding-left: 40px;
}

/*Línea decorativa estilo minimalista*/

.why-us .reason .line{
    position: absolute;
    left: 0;
    top: 12px;
    width: 24px;
    height: 2px;
    background-color: #111;
}

/*Título de cada razón*/

.why-us .reason h3{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

/*Texto descriptivo*/

.why-us .reason p{
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    max-width: 700px;
}

/*=========================================
ANIMACION SCROLL ESTILO APPLE
Sección: WHY US
==========================================*/

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/*Estado visible*/

.reveal.show{
    opacity: 1;
    transform: translateY(0);
}

/*Animacion de la línea*/

.reason .line{
    width: 0;
    transition: width 0.6s ease;
}

.reveal.show .line{
    width: 24px;
}

/*=========================================
SECCIÓN PROCESO / TIMELINE
==========================================*/

.process {
    background: #0f0f0f;
    color: #fff;
    padding: 100px 20px;
}

/* Contenedor */

.process .container {
    max-width: 900px;
    margin: 0 auto;
}

/* Título */

.process-title {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.process-title span {
    color: #6e8cff;
}

/* Texto introductorio */

.process-intro {
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 60px;
    text-align: center;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid de pasos */

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.process-steps .process-step:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
    text-align: center;
}

/* Cada paso */

.process-step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 30px 28px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.process-step:hover {
    border-color: rgba(110, 140, 255, 0.3);
    transform: translateY(-4px);
}

/* Número del paso */

.step-number {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #6e8cff;
    letter-spacing: 1px;
    margin-bottom: 14px;
    background: rgba(110, 140, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Título del paso */

.process-step h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #f1f5f9;
}

/* Descripción del paso */

.process-step p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 15px;
}

/* Botón CTA */

.process-cta {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background: #6e8cff;
    color: white;
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.process-cta:hover {
    background: #4f7cff;
    transform: translateY(-2px);
}

/* Responsive - pasos en columna */

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-steps .process-step:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: 100%;
    }

    .process-title {
        font-size: 28px;
    }

    .process-cta {
        width: 100%;
        text-align: center;
    }
}

/*=========================================
SECCION: PROYECTOS / PORTFOLIO
==========================================*/

.projects{
    padding: 100px 0;
    background: #0f0f0f;
    overflow: hidden;
}

.projects-title{
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin: 0 40px 20px;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.projects-subtitle{
    max-width: 620px;
    margin: 0 auto 60px;
    padding: 0 40px;
    font-size: 15px;
    line-height: 1.7;
    color: #999;
    text-align: center;
}

/* Carrusel infinito */

.carousel-wrapper{
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

/* Fade gradient en los bordes */
.carousel-wrapper::before,
.carousel-wrapper::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.carousel-wrapper::before{
    left: 0;
    background: linear-gradient(to right, #0f0f0f, transparent);
}

.carousel-wrapper::after{
    right: 0;
    background: linear-gradient(to left, #0f0f0f, transparent);
}

.carousel-track{
    display: flex;
    gap: 28px;
    animation: carouselScroll 45s linear infinite;
    width: max-content;
    will-change: transform;
}

.carousel-track:hover{
    animation-play-state: paused;
}

/* Cada tarjeta */

.carousel-card{
    flex: 0 0 340px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.carousel-track:hover .carousel-card{
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

.carousel-track:hover .carousel-card:hover{
    opacity: 1;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 30px rgba(79,124,255,0.2);
    border-color: #4f7cff;
}

.carousel-card a{
    display: block;
    overflow: hidden;
}

.carousel-card img{
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.carousel-card:hover img{
    transform: scale(1.06);
}

.card-desc{
    padding: 18px 20px 22px;
}

.card-desc h3{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.card-desc p{
    font-size: 13px;
    line-height: 1.6;
    color: #888;
}

/* Animacion carrusel infinita — mueve exactamente el 50% del ancho */

@keyframes carouselScroll{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-50%);
    }
}

/*=========================================
SECCION: FAQ
==========================================*/

.faq{
    padding: 100px 20px;
    background: #0f0f0f;
}

.faq .container{
    max-width: 780px;
    margin: 0 auto;
}

.faq-title{
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -1.2px;
}

.faq-subtitle{
    text-align: center;
    font-size: 15px;
    color: #888;
    margin-bottom: 50px;
}

.faq-list{
    display: flex;
    flex-direction: column;
}

.faq-item{
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.faq-item:first-child{
    border-top: 1px solid rgba(255,255,255,0.07);
}

.faq-question{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    color: #eee;
    line-height: 1.5;
    gap: 16px;
    transition: color 0.25s ease;
}

.faq-question:hover{
    color: #4f7cff;
}

.faq-question .faq-icon{
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: #666;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), color 0.35s ease;
}

.faq-question.active .faq-icon{
    transform: rotate(180deg);
    color: #4f7cff;
}

.faq-question.active{
    color: #4f7cff;
}

.faq-answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    opacity: 0;
}

.faq-answer.open{
    max-height: 500px;
    opacity: 1;
}

.faq-answer p{
    padding-bottom: 22px;
    font-size: 14px;
    line-height: 1.75;
    color: #999;
}

/*=========================================
SECCION: TESTIMONIOS
==========================================*/

.testimonials {
    padding: 100px 20px;
    background: #0f0f0f;
}

.testimonials .container {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.testimonials-subtitle {
    text-align: center;
    color: #999;
    font-size: 15px;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 28px 24px;
    transition: border-color 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.testimonial-card:hover {
    border-color: rgba(110, 140, 255, 0.3);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 16px;
    letter-spacing: 2px;
}

.testimonial-card > p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.7;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f7cff, #6e8cff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.author-info strong {
    display: block;
    font-size: 14px;
    color: #f1f5f9;
}

.author-info span {
    font-size: 12px;
    color: #64748b;
}

/* Formulario de testimonios */

.testimonial-form-wrapper {
    max-width: 560px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
}

.testimonial-form-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.testimonial-form-hint {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 24px;
}

.testimonial-form {
    text-align: left;
}

.testimonial-form .form-group {
    margin-bottom: 18px;
}

.testimonial-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.testimonial-form input,
.testimonial-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.testimonial-form input:focus,
.testimonial-form textarea:focus {
    border-color: #4f7cff;
}

.testimonial-form input::placeholder,
.testimonial-form textarea::placeholder {
    color: #4b5563;
}

/* Star rating */

.star-rating {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 8px;
}

.star-rating .star {
    font-size: 28px;
    color: #334155;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    user-select: none;
}

.star-rating .star:hover,
.star-rating .star.active {
    color: #fbbf24;
}

.star-rating .star:hover {
    transform: scale(1.15);
}

.testimonial-form .form-button {
    width: 100%;
    background: #6e8cff;
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.testimonial-form .form-button:hover {
    background: #4f7cff;
    transform: translateY(-2px);
}

.testimonial-form .form-button svg {
    width: 16px;
    height: 16px;
}

.testimonial-error {
    text-align: center;
    color: #f87171;
    font-size: 13px;
    margin-top: 12px;
    min-height: 20px;
}

/*=========================================
SECCION: PLANES
==========================================*/

.plans {
    padding: 100px 20px;
    background: #111;
}

.plans .container {
    max-width: 1100px;
    margin: 0 auto;
}

.plans-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.plans-subtitle {
    text-align: center;
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 60px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.plan-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.plan-card:hover {
    border-color: rgba(110, 140, 255, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.plan-card.popular {
    border-color: rgba(110, 140, 255, 0.4);
    background: rgba(110, 140, 255, 0.05);
    transform: scale(1.04);
}

.plan-card.popular:hover {
    transform: scale(1.04) translateY(-6px);
}

.plan-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #4f7cff, #6e8cff);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 20px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.plan-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #f1f5f9;
}

.plan-duration {
    font-size: 13px;
    color: #64748b;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 12px;
    border-radius: 20px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.plan-currency {
    font-size: 18px;
    font-weight: 600;
    color: #6e8cff;
}

.plan-amount {
    font-size: 38px;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: -1px;
}

.plan-period {
    font-size: 14px;
    color: #64748b;
    margin-left: 4px;
}

.plan-total {
    font-size: 13px;
    color: #94a3b8;
    margin-top: -8px;
}

.plan-desc {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    flex-grow: 1;
}

.plan-button {
    width: 100%;
    padding: 14px;
    border: 2px solid rgba(110, 140, 255, 0.4);
    background: transparent;
    color: #6e8cff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: #6e8cff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(110, 140, 255, 0.35);
}

.plan-button.featured {
    background: linear-gradient(135deg, #4f7cff, #6e8cff);
    color: #fff;
    border-color: transparent;
}

.plan-button.featured:hover {
    background: linear-gradient(135deg, #365fd6, #5570e0);
    box-shadow: 0 12px 30px rgba(79, 124, 255, 0.5);
}

/* Responsive planes */
@media (max-width: 768px) {
    .plans {
        padding: 60px 20px;
    }

    .plans-title {
        font-size: 30px;
    }

    .plans-subtitle {
        margin-bottom: 40px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 400px;
        margin: 0 auto;
    }

    .plan-card.popular {
        transform: none;
    }

    .plan-card.popular:hover {
        transform: translateY(-6px);
    }
}

/* Registro page */

.register-body {
    background: #0f0f0f;
    color: #fff;
}

.register-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: radial-gradient(circle at 50% 0%, rgba(79, 124, 255, 0.2), transparent 55%), #0f0f0f;
}

.register-wrapper {
    width: 100%;
    max-width: 460px;
}

.register-back {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 28px;
    transition: color 0.2s;
}

.register-back:hover {
    color: #6e8cff;
}

.register-back svg {
    width: 16px;
    height: 16px;
}

.register-header {
    text-align: center;
    margin-bottom: 32px;
}

.register-logo {
    width: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px rgba(79, 124, 255, 0.25));
}

.register-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.register-header p {
    color: #94a3b8;
    font-size: 14px;
}

.register-plan-info {
    background: rgba(110, 140, 255, 0.08);
    border: 1px solid rgba(110, 140, 255, 0.2);
    border-radius: 10px;
    padding: 14px 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.register-plan-name {
    font-weight: 600;
    text-transform: capitalize;
    color: #f1f5f9;
}

.register-plan-price {
    color: #6e8cff;
    font-weight: 700;
    font-size: 16px;
}

.register-form .form-group {
    margin-bottom: 16px;
}

.register-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 6px;
}

.register-form label span {
    color: #64748b;
}

.register-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    color: #fff;
    outline: none;
    transition: border-color 0.3s;
}

.register-form input:focus {
    border-color: #4f7cff;
    box-shadow: 0 0 0 3px rgba(79, 124, 255, 0.12);
}

.register-form input::placeholder {
    color: #4b5563;
}

.password-input-wrap {
    position: relative;
}

.password-input-wrap input {
    padding-right: 44px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
    display: flex;
    padding: 2px;
    transition: color 0.2s;
}

.toggle-password:hover {
    color: #94a3b8;
}

.toggle-password svg {
    width: 18px;
    height: 18px;
}

.toggle-password .eye-closed {
    display: none;
}

.toggle-password.show-password .eye-open {
    display: none;
}

.toggle-password.show-password .eye-closed {
    display: block;
}

.password-strength {
    display: flex;
    gap: 4px;
    align-items: center;
    margin-top: 8px;
}

.strength-bar {
    flex: 1;
    height: 4px;
    background: #1e293b;
    border-radius: 4px;
    overflow: hidden;
}

.strength-bar span {
    display: block;
    height: 100%;
    width: 0;
    background: #ef4444;
    border-radius: 4px;
    transition: width 0.3s, background 0.3s;
}

.strength-label {
    font-size: 11px;
    color: #64748b;
    min-width: 60px;
    margin-left: 6px;
}

.register-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: linear-gradient(135deg, #4f7cff, #6e8cff);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.register-submit:hover {
    background: linear-gradient(135deg, #365fd6, #5570e0);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(79, 124, 255, 0.45);
}

.register-submit svg {
    width: 18px;
    height: 18px;
}

.register-agree {
    text-align: center;
    font-size: 12px;
    color: #64748b;
    margin-top: 14px;
}

.register-agree a {
    color: #6e8cff;
    text-decoration: underline;
}

.register-already {
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 10px;
    margin-bottom: 0;
}

.register-already a {
    color: #6e8cff;
    text-decoration: underline;
    font-weight: 600;
}

.register-error {
    color: #f87171;
    font-size: 13px;
    text-align: center;
    min-height: 20px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .register-header h1 {
        font-size: 24px;
    }

    .register-page {
        padding: 30px 16px;
    }
}

/* Responsive testimonios */
@media (max-width: 768px) {
    .testimonials-title {
        font-size: 30px;
    }

    .testimonials-subtitle {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-form-wrapper {
        padding: 24px 18px;
    }

    .testimonials {
        padding: 60px 20px;
    }
}

/*=========================================
RESPONSIVE
==========================================*/

@media (max-width: 768px) {
    .hero {
        padding: 100px 20px 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-button {
        padding: 14px 28px;
        font-size: 15px;
    }

    .services {
        padding: 60px 20px;
    }

    .services-container {
        gap: 20px;
    }

    .service-card {
        padding: 24px;
    }

    .service-card h2 {
        font-size: 22px;
    }

    .service-card p {
        font-size: 14px;
    }

    .service-card li {
        font-size: 14px;
    }

    .mobile-menu {
        width: 80vw;
    }

    .header-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
        gap: 5px;
    }

    .menu-toggle span {
        width: 22px;
        height: 2px;
    }

    .why-us{
        padding: 80px 20px;
    }

    .why-us .section-title{
        font-size: 30px;
        margin-bottom: 50px;
    }

    .why-us .reason h3{
        font-size: 18px;
    }

    .why-us .reason p{
        font-size: 15px;
    }

    .projects{
        padding: 80px 0;
    }

    .projects-title{
        font-size: 34px;
        margin: 0 20px 16px;
    }

    .projects-subtitle{
        font-size: 14px;
        margin: 0 auto 40px;
        padding: 0 20px;
    }

    .carousel-card{
        flex: 0 0 280px;
    }

    .carousel-card img{
        height: 170px;
    }

    .card-desc{
        padding: 14px 16px 18px;
    }

    .card-desc h3{
        font-size: 16px;
    }

    .card-desc p{
        font-size: 12px;
    }

    .carousel-wrapper::before,
    .carousel-wrapper::after{
        width: 60px;
    }

    .carousel-track{
        gap: 20px;
    }

    .faq{
        padding: 80px 20px;
    }

    .faq-title{
        font-size: 32px;
    }

    .faq-subtitle{
        font-size: 14px;
        margin-bottom: 36px;
    }

    .faq-question{
        font-size: 15px;
        padding: 18px 0;
    }

    .faq-answer p{
        font-size: 13px;
        padding-bottom: 18px;
    }

    .contact{
        padding: 80px 20px;
    }

    .contact-content{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-title{
        font-size: 30px;
    }

    .contact-text{
        font-size: 14px;
    }

    .contact-form{
        padding: 24px;
        gap: 20px;
    }

    .form-button{
        padding: 14px 24px;
        font-size: 14px;
    }

    .whatsapp-btn{
        width: 52px;
        height: 52px;
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-btn svg{
        width: 24px;
        height: 24px;
    }
}

/*=========================================
SECCION: CONTACTO / CTA FINAL
==========================================*/

.contact{
    padding: 120px 20px;
    background: radial-gradient(circle at 50% 100%, rgba(79,124,255,0.12), transparent 55%), #0f0f0f;
}

.contact .container{
    max-width: 1100px;
    margin: 0 auto;
}

.contact-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info{
    padding-top: 20px;
}

.contact-title{
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1.2px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-text{
    font-size: 15px;
    line-height: 1.7;
    color: #999;
    margin-bottom: 36px;
}

.contact-methods{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method{
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 15px;
}

.contact-method svg{
    width: 20px;
    height: 20px;
    color: #4f7cff;
    flex-shrink: 0;
}

/* FORMULARIO */

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 36px;
}

.form-group label{
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ddd;
    letter-spacing: 0.2px;
}

.form-group label span{
    font-weight: 400;
    color: #777;
}

.form-group input,
.form-group select,
.form-group textarea{
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #eee;
    font-size: 14px;
    font-family: "inter", sans-serif;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color: #666;
}

.form-group select{
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.form-group select option{
    background: #1a1a1a;
    color: #eee;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color: #4f7cff;
    box-shadow: 0 0 0 3px rgba(79,124,255,0.15);
}

.form-group textarea{
    resize: vertical;
    min-height: 100px;
}

.form-button{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #4f7cff, #6e8cff);
    color: white;
    border: none;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    font-family: "inter", sans-serif;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-button:hover{
    background: #365fd6;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(79,124,255,0.4);
}

.form-button svg{
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.form-button:hover svg{
    transform: translateX(4px);
}

.form-note{
    text-align: center;
    font-size: 12px;
    color: #666;
    margin: -8px 0 0;
}

/* BOTÓN FLOTANTE WHATSAPP */

.whatsapp-btn{
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn svg{
    width: 28px;
    height: 28px;
    color: white;
}

.whatsapp-btn:hover{
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}

/*=========================================
FOOTER
==========================================*/

.footer {
    background: #0a0a0a;
    padding-top: 80px;
    padding-bottom: 30px;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(110, 140, 255, 0.25), transparent);
    margin-bottom: 60px;
}

.footer .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Brand */

.footer-logo {
    width: 100px;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px rgba(79, 124, 255, 0.15));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-brand-text {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 13px;
}

.footer-location svg {
    width: 16px;
    height: 16px;
    color: #6e8cff;
    flex-shrink: 0;
}

/* Navegación */

.footer-middle h4,
.footer-social h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f1f5f9;
    margin-bottom: 20px;
}

.footer-middle ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-middle a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease, padding-left 0.3s ease;
    position: relative;
}

.footer-middle a:hover {
    color: #6e8cff;
    padding-left: 6px;
}

/* Social */

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    border-color: rgba(110, 140, 255, 0.4);
    background: rgba(110, 140, 255, 0.1);
    color: #6e8cff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(110, 140, 255, 0.2);
}

.social-icon:hover svg {
    transform: scale(1.15);
}

.social-icon.facebook:hover {
    border-color: rgba(24, 119, 242, 0.5);
    background: rgba(24, 119, 242, 0.1);
    color: #1877f2;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.2);
}

.social-icon.instagram-icon:hover {
    border-color: rgba(225, 48, 108, 0.5);
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.15), rgba(225, 48, 108, 0.15));
    color: #e1306c;
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.2);
}

/* Copyright */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: #475569;
    font-size: 13px;
    margin: 0;
}

/* Responsive footer */

@media (max-width: 768px) {
    .footer {
        padding-top: 50px;
        padding-bottom: 24px;
    }

    .footer-divider {
        margin-bottom: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-location {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-middle ul {
        align-items: center;
    }
}

/*=========================================
PANEL DE USUARIO
==========================================*/

.panel-body { background: #0f0f0f; color: #fff; }

.panel-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 32px;
    background: rgba(15,15,15,0.6);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky; top: 0; z-index: 100;
}

.panel-header-left { display: flex; align-items: center; gap: 12px; }

.panel-logo-link {
    display: flex; align-items: center; gap: 12px; text-decoration: none;
}

.panel-logo {
    width: 36px;
    filter: drop-shadow(0 2px 6px rgba(79,124,255,0.2));
}

.panel-logo-text { font-size: 18px; font-weight: 700; color: #f1f5f9; }

.panel-header-right { display: flex; align-items: center; gap: 20px; }
.panel-welcome { font-size: 14px; color: #94a3b8; font-weight: 500; }

.logout-btn {
    display: flex; align-items: center; gap: 6px;
    background: none; border: 1px solid rgba(255,255,255,0.1);
    color: #cbd5e1; font-size: 13px; font-weight: 500;
    padding: 8px 16px; border-radius: 8px;
    cursor: pointer; font-family: "Inter", sans-serif;
    transition: all 0.2s ease;
}
.logout-btn svg { width: 16px; height: 16px; }
.logout-btn:hover {
    border-color: #ef4444; color: #ef4444;
    background: rgba(239,68,68,0.06);
}

.panel-menu-toggle { display: none; background: none; border: none; color: #94a3b8; cursor: pointer; padding: 4px; }
.panel-menu-toggle svg { width: 24px; height: 24px; }

.panel-main {
    padding: 40px 20px 60px;
    background: radial-gradient(circle at 50% 0%, rgba(79,124,255,0.08), transparent 55%), #0f0f0f;
}

.panel-container { max-width: 1000px; margin: 0 auto; }

.panel-welcome-section { margin-bottom: 48px; }
.panel-welcome-section h1 {
    font-size: 32px; font-weight: 700; margin-bottom: 8px;
    background: linear-gradient(135deg, #f1f5f9, #6e8cff);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.panel-welcome-section p { color: #64748b; font-size: 15px; }

.panel-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; align-items: start;
}

.panel-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px; padding: 28px 24px;
    display: flex; flex-direction: column; gap: 18px;
}

.panel-card-icon {
    display: flex; align-items: center; justify-content: center;
    width: 42px; height: 42px; border-radius: 12px;
    background: rgba(110,140,255,0.1); color: #6e8cff;
}
.panel-card-icon svg { width: 20px; height: 20px; }
.panel-card h2 { font-size: 17px; font-weight: 600; color: #f1f5f9; }

.panel-plan-card { display: none; flex-direction: column; gap: 14px; }
.panel-plan-card.active { display: flex; }

.plan-detail {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.plan-label { font-size: 13px; color: #64748b; font-weight: 500; }
.plan-value { font-size: 15px; font-weight: 600; color: #f1f5f9; text-transform: capitalize; }

.panel-empty { display: none; }
.panel-empty.show { display: block; }
.panel-empty p { color: #64748b; font-size: 14px; }
.panel-empty a { color: #6e8cff; text-decoration: underline; }

.panel-data { display: flex; flex-direction: column; gap: 12px; }

.data-row {
    display: flex; flex-direction: column; gap: 2px;
    padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.data-label { font-size: 12px; color: #64748b; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.data-value { font-size: 14px; color: #f1f5f9; word-break: break-word; }

.panel-actions { display: flex; flex-direction: column; gap: 10px; }

.action-btn {
    display: flex; align-items: center; gap: 10px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px; color: #cbd5e1; text-decoration: none;
    font-size: 13px; font-weight: 500;
    transition: all 0.3s ease;
}
.action-btn:hover {
    border-color: rgba(110,140,255,0.3); background: rgba(110,140,255,0.06);
    color: #fff; transform: translateX(4px);
}
.action-btn svg { flex-shrink: 0; }

.panel-status { margin-top: 32px; display: flex; justify-content: center; }

.status-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 20px;
    background: rgba(34,197,94,0.06); border: 1px solid rgba(34,197,94,0.15);
    border-radius: 30px; font-size: 12px; color: #4ade80; font-weight: 500;
}
.status-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px rgba(74,222,128,0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse { 0%,100%{ opacity:1; transform:scale(1); } 50%{ opacity:0.5; transform:scale(1.2); } }

/* Responsive panel */
@media (max-width: 768px) {
    .panel-header { padding: 14px 16px; }
    .panel-logo { width: 28px; }
    .panel-logo-text { font-size: 14px; }
    .panel-welcome { display: none; }
    .panel-main { padding: 24px 16px 40px; }
    .panel-welcome-section h1 { font-size: 24px; }
    .panel-grid { grid-template-columns: 1fr; gap: 16px; }
    .panel-card { padding: 22px 18px; }
}

/*ANIMACION*/

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }

    to{
        opacity: 1;
        transform: translateY(0);
    }
}