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

/* GENERAL */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(135deg,#0f172a,#020617);
    color: #eaeaea;
    background:linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7))
    ,url("img/fondo.png");

    background-size: cover;
    background-position: center center;
    background-attachment: fixed;

    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* evita scroll horizontal */
    background-repeat: no-repeat;
  
}



/* ENCABEZADO */
/* --- NAVEGACIÓN ESTILO IMAGEN --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(2, 6, 23, 0.8); /* Fondo oscuro traslúcido */
    backdrop-filter: blur(10px);    /* Efecto desenfoque (Glassmorphism) */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
}

/* Logo y Nombre */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: 40px;
    width: auto;
    border-radius: 50%;
    border: 1px solid #2dd4bf;
}

.nav-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

/* Menú de enlaces */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    color: #cbd5f5;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2dd4bf;
}

/* Botón Contactar resaltado */
.nav-btn-contact {
    background: #0ea5e9; /* Azul vibrante de la imagen */
    color: #fff;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.nav-btn-contact:hover {
    background: #0284c7;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

/* --- RESPONSIVE --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

@media (max-width: 850px) {
    .menu-toggle { display: flex; }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #020617;
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
        display: none; /* Se activa con JS */
    }

    .nav-menu.active { display: flex; }
}

/* SALUDO */
/* --- ESTILOS DE LA SECCIÓN HERO --- */

/* --- NUEVO HERO (ESTILO IMAGEN) --- */
.hero-main {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
    background: #020617; /* Fondo oscuro base */
    background-image: 
        radial-gradient(circle at center, rgba(15, 23, 42, 0.7) 0%, #020617 100%),
        url('img/fondo.png'); /* Aquí va tu imagen de red/nodos */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
}

.hero-logo-center img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid #2dd4bf;
    box-shadow: 0 0 25px rgba(45, 212, 191, 0.4);
    margin-bottom: 30px;
}

.hero-title-main {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cyan-text { color: #2dd4bf; }
.blue-text { color: #3b82f6; }

.hero-subtitle-main {
    font-size: 1.3rem;
    color: #cbd5f5;
    margin-bottom: 10px;
}

.hero-description-main {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons-row {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-glow-cyan {
    padding: 14px 30px;
    background: linear-gradient(135deg, #2dd4bf, #0540ff);
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-outline-white {
    padding: 14px 30px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.3s;
}

.hero-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.stat-val { font-size: 2.2rem; font-weight: 800; color: #2dd4bf; }
.stat-symbol { color: #3b82f6; font-size: 1.2rem; }
.stat-card p { font-size: 0.75rem; color: #94a3b8; text-transform: uppercase; margin-top: 5px; }

/* --- SECCIÓN SOBRE MÍ (TU SECCIÓN ANTERIOR ADAPTADA) --- */
/* --- SECCIÓN SOBRE MÍ (ESTILO IMAGEN NUEVA) --- */
.about-new {
    padding: 100px 5%;
    background-color: #020617; /* Fondo oscuro sólido */
    color: #cbd5f5;
    overflow: hidden;
}

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

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

.about-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2dd4bf, #3b82f6);
    margin: 0 auto;
    border-radius: 2px;
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

/* Imagen con efectos */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.about-main-img {
    width: 90%;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-main-img {
    transform: scale(1.03);
}

/* Estilo de Texto */
.about-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.white-text { color: #fff; }

/* Tarjetas Misión/Visión */
.mv-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.mv-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mv-card:hover {
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-5px);
    border-color: rgba(45, 212, 191, 0.3);
}

.mv-icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.mv-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.mv-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #94a3b8;
}

/* --- TRANSICIONES DINÁMICAS (Para el scroll) --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
    .about-content-grid {
        grid-template-columns: 1fr;
    }
    .mv-cards-container {
        grid-template-columns: 1fr;
    }
}

/* Opcional: Entradas laterales */
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* --- SECCIÓN MIS VALORES --- */
.values-section {
    padding: 100px 5%;
    background-color: #020617; /* Mantiene el fondo oscuro */
}

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

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

.values-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Tarjetas de Valor */
.value-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

/* Efecto Glow al Hover */
.value-card:hover {
    background: rgba(30, 41, 59, 0.6);
    transform: translateY(-10px);
    border-color: #2dd4bf;
    box-shadow: 0 10px 30px rgba(45, 212, 191, 0.15);
}

/* Caja de Icono */
.value-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #0ea5e9);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

/* Variante para resaltar (Aprendizaje Continuo en la imagen) */
.value-icon-box.highlight {
    background: linear-gradient(135deg, #2dd4bf, #3b82f6);
    box-shadow: 0 0 20px rgba(45, 212, 191, 0.4);
}

.value-icon {
    font-size: 1.4rem;
}

.value-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .values-grid { grid-template-columns: 1fr; }
    .values-title { font-size: 2.2rem; }
}


                    /* --- boton Descargar CV --- */
.btn-cv {
    margin-top: 20px;
    margin-right: 80px;
    margin-left: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 14px 22px ;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    background: linear-gradient(135deg, #6f9af7, #0540ff);
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 132, 255, 0.35);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.texto-cv {
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Glow animado */
.btn-cv::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-cv:hover::before {
    transform: translateX(100%);
}

/* Hover */
.btn-cv:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 45px rgba(45,212,191,0.6);
}

/* Icono */
.btn-cv .icon {
    width: 20px;
    height: 20px;
    transition: transform 0.35s ease;
}

.btn-cv:hover .icon {
    transform: translateY(3px);
}

/* Click */
.btn-cv:active {
    transform: scale(0.97);
}
/* media para Descargar CV */
@media (max-width: 768px) {
    .btn-cv {
        padding: 12px 16px;
        font-size: 15px;
    }
}


                /* logo Whatsapp flotante */

.whatsapp-flotante {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background-color: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 0px 50px rgba(45,212,191,0.9);
    z-index: 1000;
    transition: transform 0.2s ease;
  }
  
  .whatsapp-flotante img {
    width: 90px;
    height: 90px;
  }
  
  .whatsapp-flotante:hover {
    transform: scale(1.1);
  }
  

/* ===== CURVA DE APRENDIZAJE ===== */

/* --- SECCIÓN HABILIDADES TÉCNICAS --- */
.skills-section {
    padding: 100px 5%;
    background: #020617;
}

.skills-title {
    font-size: 3rem;
}
.skills-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 40px;
}

/* Tabs */
.skills-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5f5;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn.active {
    background: #0ea5e9;
    color: #fff;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
    border-color: #3b82f6;
}

/* Grid de Habilidades */
.skills-content { position: relative; min-height: 400px; }

.skills-grid {
    display: none; /* Oculto */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    animation: fadeIn 0.5s ease forwards;
}

.skills-grid.active { display: grid; }

/* Tarjetas de Barra */
.skill-bar-card {
    background: rgba(15, 23, 42, 0.6);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.skill-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    color: #fff;
    font-weight: 600;
}

.skill-percentage { color: #2dd4bf; }

.progress-line {
    height: 8px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.progress-line span {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #2dd4bf);
    position: absolute;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.5s cubic-bezier(0.1, 0.5, 0.5, 1);
}

.reveal.active .progress-line span {
    transform: scaleX(1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


                /* MEDIA PARA MOVILES*/
@media (max-width: 768px) {

    /* HEADER */
    .logo-text {
        font-size: 1.5rem;
    }

    .btn {
        position: static;
        margin: 15px auto;
        display: block;
    }

    /* HERO */
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: 120px 5% 120px 5%;
        min-height: auto;
    }

    .typing {
        font-size: 2.2rem;
    }

    .about-hero {
        font-size: 16px;
    }

    .hero-img img {
        width: 240px;
    }

    /* WHATSAPP */
    .whatsapp-flotante {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-flotante img {
        width: 65px;
        height: 65px;
    }

    /* WORKS */
    .cards {
        grid-template-columns: 1fr;
    }
}

                /* MEDIA PARA TABLETS*/
@media (max-width: 1024px) {

    .hero {
        gap: 50px;
        padding: 120px 8%;
    }

    .typing {
        font-size: 2.6rem;
    }

    .hero-img img {
        width: 300px;
    }

    .cards {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* ----------------Proyectos---------------*/
.projects {
    padding: 80px 10%;
    background: linear-gradient(180deg, #050b1a, #020617);
    color: #fff;
  }
  
  .section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 50px;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .project-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(8px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  
  .project-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
  }
  
  .project-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  
  .project-desc {
    font-size: 0.95rem;
    color: #cbd5f5;
    margin-bottom: 20px;
  }
  
  .project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
  }
  
  .project-tags span {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
  }
  
  .project-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 25px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
  }

  /* Contenedor de filtros */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* Estilo base de los botones */
        .filter-btn {
            background-color: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 10px 25px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        /* Efecto Hover */
        .filter-btn:hover {
            background-color: rgba(0, 183, 255, 0.1);
            border-color: #00b7ff;
            transform: translateY(-2px);
        }

        /* Botón activo (seleccionado) */
        .filter-btn.active {
            background-color: #00b7ff; /* Color azul de tu botón Contactar */
            border-color: #00b7ff;
            color: #000;
            box-shadow: 0 4px 15px rgba(0, 183, 255, 0.4);
        }

        /* Clase para ocultar proyectos suavemente */
        .project-card.hide {
            display: none;
        }
  
/* PRIMER PROYECTO VENTAS*/
  .project-thumb {
    width: 100%;
    height: 180px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 20px;
  }
  
  .project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  /* Zoom suave al hacer hover en la card */
  .project-card:hover .project-thumb img {
    transform: scale(1.08);
  }

  
  
/* -----------------QUE NO SE DESBORDE COMPLETO BODY------------------*/
html, body {
    width: 100%;
    overflow-x: hidden;
}

/* ===============================
   SECCIÓN CONTACTO - formulario
================================ */
.contact-section {
    padding: 100px 20px;
    background: radial-gradient(circle at top, #0f172a, #020617);
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #2dd4bf;
    margin-bottom: 20px;
}

.contact-info p {
    color: #cbd5f5;
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-info ul {
    list-style: none;
}

.contact-info ul li {
    margin-bottom: 12px;
    color: #e5e7eb;
}

/* FORMULARIO */
.contact-form {
    background: rgba(15, 23, 42, 0.8);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(45, 212, 191, 0.15);
    backdrop-filter: blur(8px);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #334155;
    padding: 10px 5px;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
}

.form-group label {
    position: absolute;
    left: 5px;
    top: 10px;
    color: #94a3b8;
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.3s ease;
}

/* EFECTO FLOAT LABEL */
.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -12px;
    font-size: 0.75rem;
    color: #2dd4bf;
}

/* BOTÓN */
.contact-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2dd4bf, #22c55e);
    border: none;
    border-radius: 30px;
    color: #020617;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(45, 212, 191, 0.5);
}

/* MENSAJE DE ESTADO */
.form-status {
    margin-top: 15px;
    font-size: 0.9rem;
    text-align: center;
    color: #22c55e;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}

/* ===============================
   FOOTER
================================ */
.footer {
    background: linear-gradient(180deg, #f8f6f6c9, #0b4123e5);
    color: #e5e7eb;
    padding-top: 80px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* BRAND */
.footer-brand h3 {
    color: #2dd4bf;
    margin: 15px 0 10px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #cbd5f5;
    line-height: 1.6;
}

.footer-logo {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2dd4bf, #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #020617;
    font-size: 1.2rem;
}

/* LINKS */
.footer-links h4,
.footer-contact h4,
.footer-cta h4 {
    margin-bottom: 15px;
    color: #2dd4bf;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-links a {
    color: #cbd5f5;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #2dd4bf;
}

/* CTA */
.footer-cta p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #cbd5f5;
}

.footer-btn {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(135deg, #2dd4bf, #22c55e);
    color: #020617;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.footer-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 212, 191, 0.5);
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #1e293b;
    padding: 25px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin: auto;
    }
}
