* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================== */
/* BASE */
/* ===================== */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #000;
    color: #fff;
}

/* ===================== */
/* HEADER */
/* ===================== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.85);
    border-bottom: 1px solid #111;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* TEXTO DEBAJO DE BLACKAPPLE */
.logo-texto {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    /* 🔥 compacta el texto */
}

.logo-texto h2 {
    margin: 0;
    font-size: 16px;
}

.logo-box img {
    height: 50px;
}

.logo-texto span {
    margin-top: -2px;
    margin: 0;
    font-size: 12px;
    color: #aaa;
}

/* NAV CENTRADO */
.nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav a {
    margin: 0 5px;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.nav a:hover {
    color: #25D366;
}

.btn-wsp {
    background: #25D366;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}

/* ===================== */
/* HERO */
/* ===================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    /* 🔥 ROTACION */
    animation: fondoHero 40s infinite;
    background-size: cover;
    background-position: center;
}

/* DEGRADADO */
.hero::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.7) 40%,
            rgba(0, 0, 0, 0.2) 70%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* CONTENIDO */
.hero .overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    padding: 20px;
}

/* TEXTO */
.titulo {
    font-size: 50px;
}

.descripcion {
    color: #ccc;
}

/* STATS */
.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stats h3 {
    color: #25D366;
    margin: 0;
}

/* BOTON */
.btn {
    background: #25D366;
    padding: 12px 20px;
    border-radius: 25px;
    color: #000;
    text-decoration: none;
    display: inline-block;
    margin-top: 15px;
}

/* 🔥 ANIMACION 10 IMAGENES */
@keyframes fondoHero {
    0% {
        background-image: url("../img/1.jpg");
    }

    10% {
        background-image: url("../img/2.jpg");
    }

    20% {
        background-image: url("../img/3.jpg");
    }

    30% {
        background-image: url("../img/4.jpg");
    }

    40% {
        background-image: url("../img/5.jpg");
    }

    50% {
        background-image: url("../img/6.jpg");
    }

    60% {
        background-image: url("../img/7.jpg");
    }

    70% {
        background-image: url("../img/8.jpg");
    }

    80% {
        background-image: url("../img/9.jpg");
    }

    90% {
        background-image: url("../img/10.jpg");
    }

    100% {
        background-image: url("../img/1.jpg");
    }
}

/* ===================== */
/* TABS */
/* ===================== */
.tabs {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.tab {
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid #333;
    background: #111;
    color: #aaa;
    cursor: pointer;
    transition: 0.3s;
}

.tab:hover {
    border-color: #00ff88;
    color: #00ff88;
}

.tab.active {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.4);
}

.bloque {
    display: none;
    background: #111;
    padding: 20px;
    border-radius: 15px;
    margin-top: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.bloque.activo {
    display: block;
}

.bloque h3 {
    color: #00ff88;

    text-shadow:
        0 0 5px rgba(0, 255, 136, 0.5),
        0 0 10px rgba(0, 255, 136, 0.3);

    margin-bottom: 15px;
}

/* ===================== */
/* SERVICIOS */
/* ===================== */
.servicios {
    padding: 80px 20px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: #111;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #222;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: #25D366;
}

/* ===================== */
/* TRABAJOS */
/* ===================== */
.trabajos {
    padding: 80px 20px;
    text-align: center;
}

.trabajos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.trabajo-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
}

.trabajo-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* overlay SOLO para trabajos */
.trabajo-card .overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 15px;
}

/* ===================== */
/* WHATSAPP */
/* ===================== */
.whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding: 15px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
}

/* ===================== */
/* FOOTER */
/* ===================== */
.footer {
    background: #0a0a0a;
    padding: 40px;
    text-align: center;
    color: #aaa;
}

/* ===================== */
/* TOPBAR FIX */
/* ===================== */

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 25px;
    background: rgba(0, 0, 0, 0.85);
    font-size: 13px;
    color: #ccc;
    border-bottom: 1px solid #111;
}

/* IZQUIERDA */
.topbar-left {
    display: flex;
    gap: 20px;
}

.topbar-left a {
    color: #ccc;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.topbar-left a:hover {
    color: #25D366;
}

/* DERECHA (ICONOS) */
.topbar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.topbar-right a {
    color: #ccc;
    font-size: 18px;
    transition: 0.2s;
}

.topbar-right a:hover {
    color: #25D366;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

/* ===================== */
/* CONTADORES PRO */
/* ===================== */

.stats div h3 {
    font-size: 28px;
    font-weight: bold;

    /* COLOR BASE */
    color: #25D366;

    /* 🔥 BRILLO */
    text-shadow:
        0 0 5px rgba(37, 211, 102, 0.5),
        0 0 10px rgba(37, 211, 102, 0.4),
        0 0 20px rgba(37, 211, 102, 0.3);

    /* SUAVIDAD */
    transition: 0.3s;
}

/* TEXTO ABAJO */
.stats div p {
    color: #aaa;
    font-size: 13px;
    margin-top: 5px;
}

/* ✨ EFECTO HOVER (queda PRO) */
.stats div:hover h3 {
    color: #4dffb8;

    text-shadow:
        0 0 10px rgba(37, 211, 102, 0.8),
        0 0 20px rgba(37, 211, 102, 0.6),
        0 0 30px rgba(37, 211, 102, 0.4);
}

/* 💎 CAJITA SUAVE (opcional pero queda MUY bien) */
.stats div {
    padding: 10px 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(4px);
    transition: 0.3s;
}

.stats div:hover {
    background: rgba(37, 211, 102, 0.08);
}

.marca {
    margin: 0;
}

.badge {
    margin-bottom: 1px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 50px;
    /* 💜 VIOLETA SUAVE (EL BUENO) */
    background: linear-gradient(135deg,
            rgba(123, 47, 247, 0.15),
            rgba(241, 7, 163, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 10px;
    font-weight: 500;

    /* glow suave */
    box-shadow: 0 0 10px rgba(123, 47, 247, 0.15);

    backdrop-filter: blur(6px);
    transition: 0.3s;
}

/* ICONOS */
.badge i {
    font-size: 20px;
    /* no tan grande que rompe */
}

.badge:hover {
    transform: scale(1.05);

    box-shadow:
        0 0 15px rgba(123, 47, 247, 0.3);
}

.marca {
    color: #25D366;

    text-shadow:
        0 0 5px rgba(37, 211, 102, 0.6),
        0 0 15px rgba(37, 211, 102, 0.4);
}

.marca {
    font-size: 40px;
    /* 👈 más grande */
    font-weight: 600;
    letter-spacing: 1px;
    color: #eaeaea;

    /* glow suave */
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.15);
}

.marca span {
    color: #25D366;

    text-shadow:
        0 0 10px rgba(37, 211, 102, 0.6),
        0 0 20px rgba(37, 211, 102, 0.3);
}

/* ===================== */
/* SOBRE NOSOTROS LAYOUT */
/* ===================== */

.sobre {
    padding: 80px 0;
}

.sobre-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 0 20px;
}

/* IZQUIERDA */
.sobre-img {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.celular {
    width: 300px;
    z-index: 1;
    max-width: 100%;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.6));
}

/* CHAT SOBRE EL CELULAR */
.chat {
    position: absolute;
    top: 91px;
    width: 240px;

    display: flex;
    flex-direction: column;
    gap: 8px;

    z-index: 2;
}

/* DERECHA */
.sobre-contenido {
    flex: 1;
    max-width: 500px;

}

/* TEXTO */
.titulo-sobre {
    font-size: 32px;
    margin-bottom: 15px;
}

.texto-sobre {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* RESPONSIVE (MUY IMPORTANTE) */
@media (max-width: 900px) {
    .sobre-container {
        flex-direction: column;
        text-align: center;
    }

    .sobre-contenido {
        max-width: 100%;
    }
}

.titulo-sobre span {
    color: #00ff88;

    text-shadow:
        0 0 5px rgba(0, 255, 136, 0.5),
        0 0 10px rgba(0, 255, 136, 0.3);

    font-weight: 600;
}

.lista {
    list-style: none;
    padding-left: 0;
}

.lista li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #ccc;
}

.lista li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00ff88;

    text-shadow:
        0 0 5px rgba(0, 255, 136, 0.5),
        0 0 10px rgba(0, 255, 136, 0.3);
}

.mini-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .mini-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ICONO */
.mini-card .icon {
    font-size: 28px;
    color: #00ff88;

    text-shadow:
        0 0 5px rgba(0, 255, 136, 0.5),
        0 0 10px rgba(0, 255, 136, 0.3);
}

/* TITULO */
.mini-card h4 {
    margin: 5px 0;
    font-size: 16px;
}

/* TEXTO */
.mini-card span {
    color: #aaa;
    font-size: 13px;
}

/* HOVER PRO */
.mini-card:hover {
    transform: translateY(-5px);

    border-color: #00ff88;

    box-shadow:
        0 0 10px rgba(0, 255, 136, 0.2),
        0 0 20px rgba(0, 255, 136, 0.1);
}

.chat .typing,
.chat .mensaje {
    opacity: 0;
    transform: translateY(10px);
    animation-fill-mode: forwards;
}

@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* typing cliente */
.typing.cliente {
    animation: aparecer 0.5s ease forwards;
    animation-delay: 0.5s;
}

.mensaje {
    padding: 10px 14px;
    border-radius: 16px;
    max-width: 90%;
    font-size: 15px;
}

/* mensaje cliente */
.mensaje.cliente {
    animation: aparecer 0.5s ease forwards;
    animation-delay: 2s;
    background: #111;
    color: #fff;
    align-self: flex-start;
}

.typing {
    padding: 8px 12px;
    border-radius: 12px;
    background: #111;
    align-self: flex-start;
}

/* typing tuyo */
.typing.yo {
    animation: aparecer 0.5s ease forwards;
    animation-delay: 3.5s;
}

/* mensaje tuyo */
.mensaje.yo {
    animation: aparecer 0.5s ease forwards;
    animation-delay: 5s;
    background: #00ff88;
    color: #000;
    align-self: flex-end;
    font-weight: 500;
}

.typing span {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 2px;
    background: #aaa;
    border-radius: 50%;
    animation: blink 1.4s infinite;
}

.typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {

    0%,
    80%,
    100% {
        opacity: 0.2;
    }

    40% {
        opacity: 1;
    }
}

/* EFECTO PREMIUM CELULAR */
.sobre-img {
    position: relative;
}

/* glow atrás */
.sobre-img::before {
    content: "";
    position: absolute;

    width: 260px;
    height: 260px;

    background: radial-gradient(circle, rgba(0, 255, 136, 0.25), transparent 70%);

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    filter: blur(40px);

    z-index: 0;
}

.sobre-top .badge {
    font-size: 18px !important;
    padding: 10px 20px !important;
}

/* ===================== */
/* SERVICIOS 2 */
/* ===================== */

.servicios2 {
    font-size: 20px;
    padding: 80px 20px;
    text-align: center;
    margin-top: -100px;
}

/* TITULO */
.servicios2 h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.servicios2 h2 span {
    color: #00ff88;
}

/* SUBTITULO */
.subtitulo {
    color: #aaa;
    margin-bottom: 40px;
}

/* GRID */
.grid-servicios {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARDS */
.card-serv {
    background: #111;
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

/* HOVER */
.card-serv:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
}

/* TITULO CARD */
.card-serv h3 {
    margin-bottom: 10px;
}

/* TEXTO */
.card-serv p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
}

/* DESTACADO */
.card-serv.destacado {
    border: 1px solid #00ff88;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .grid-servicios {
        grid-template-columns: 1fr;
    }
}

.servicios2 .badge {
    font-size: 18px;
    padding: 8px 20px;
    margin-bottom: 0px;
    display: inline-block;
}

/* ===================== */
/* POR QUÉ ELEGIRNOS */
/* ===================== */

.servicios {
    margin-top: -50px;
    padding: 40px 20px;
    text-align: center;
}

/* BADGE */
.badge-servicios {
    display: inline-block;
    font-size: 18px;
    padding: 8px 20px;
    border-radius: 50px;

    background: linear-gradient(135deg, rgba(123, 47, 247, 0.15),
            rgba(241, 7, 163, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;

    transition: 0.3s;
    cursor: pointer;
    margin-bottom: 50px;
}

/* EFECTO HOVER */
.badge-servicios:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 15px rgba(123, 47, 247, 0.5),
        0 0 30px rgba(241, 7, 163, 0.3);
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARDS */
.card {
    background: #111;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    cursor: pointer;
}

/* EFECTO HOVER (SELECCIÓN) */
.card:hover {
    transform: translateY(-6px) scale(1.02);
    border: 1px solid #00ff88;

    box-shadow:
        0 0 20px rgba(0, 255, 136, 0.3),
        0 0 40px rgba(0, 255, 136, 0.1);
}

/* TEXTO */
.card h3 {
    margin-bottom: 10px;
}

.card p {
    color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

/* ===================== */
/* TRABAJAMOS */
/* ===================== */

.trabajamos {
    padding: 80px 20px;
    text-align: center;
}

/* TITULO */
.trabajamos h2 {
    font-size: 32px;
    margin-bottom: 10px;
    margin-top: -60px;
}

.trabajamos h2 span {
    color: #00ff88;
}

/* TEXTO */
.trabajamos p {
    color: #aaa;
    margin-bottom: 40px;
}

/* CONTENEDOR */
.plataformas {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* CARDS */
.plataforma {
    background: #111;
    padding: 18px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);

    font-size: 15px;
    font-weight: 500;
    color: #fff;

    transition: 0.3s;
    cursor: pointer;
}

/* HOVER (igual que tus otras cards) */
.plataforma:hover {
    transform: translateY(-5px) scale(1.05);

    border: 1px solid #00ff88;

    box-shadow:
        0 0 20px rgba(0, 255, 136, 0.3),
        0 0 40px rgba(0, 255, 136, 0.1);
}

/* ===================== */
/* TRABAJOS (AISLADO) */
/* ===================== */

.trabajos .grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
    align-items: stretch;
}

@media (max-width: 900px) {
    .trabajos .grid {
        grid-template-columns: 1fr;
    }
}

.trabajos .card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: transparent;
    border: none;
    max-width: 100%;
    transition: 0.3s;
}

.trabajos .card img {
    width: 100%;
    height: 400px;
    /* mismo alto para todas */
    object-fit: contain;
    background: #000;
    border-radius: 12px;
    display: block;
    transition: 0.3s;
    padding: 10px;
}

.trabajos .card:hover img {
    transform: scale(1.03);
    box-shadow:
        0 0 20px rgba(0, 255, 136, 0.3),
        0 0 40px rgba(0, 255, 136, 0.1);
}

.trabajos .card p {
    margin-top: 10px;
    color: #aaa;
    font-size: 14px;
    text-align: center;
}

.servicios.trabajos {
    margin-top: -80px;
}

.trabajos h2 {
    margin-bottom: 40px;
}

.btn-instagram {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #00ff88, #00c853);
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

/* ✨ GLOW BASE */
.btn-instagram {
    box-shadow:
        0 0 10px rgba(0, 255, 136, 0.5),
        0 0 20px rgba(0, 255, 136, 0.2);
}

/* 🚀 HOVER */
.btn-instagram:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 0 15px rgba(0, 255, 136, 0.8),
        0 0 30px rgba(0, 255, 136, 0.4),
        0 0 60px rgba(0, 255, 136, 0.2);
}

/* 🔥 EFECTO LUZ QUE PASA */
.btn-instagram::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transition: 0.5s;
}

.btn-instagram:hover::before {
    left: 100%;
}

/* ===================== */
/* FOOTER BLACKAPPLE */
/* ===================== */

.footer {
    background: linear-gradient(180deg, #0a0a0a, #050505);
    color: #ccc;
    padding: 60px 20px 20px;
    font-size: 14px;
}

/* ===================== */
/* CTA ARRIBA */
/* ===================== */

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
}

.footer-top h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 5px;
}

.footer-top p {
    color: #888;
}

/* BOTON WHATSAPP */
.btn-whatsapp {
    background: linear-gradient(135deg, #00ff88, #00c853);
    color: #000;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}

/* ===================== */
/* COLUMNAS */
/* ===================== */

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #c084fc;
    /* violeta */
    margin-bottom: 15px;
    font-size: 16px;
    letter-spacing: 1px;
}

/* TEXTOS */
.footer-col p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* FRASE DESTACADA */
.footer-col .frase {
    color: #c084fc;
    font-style: italic;
}

/* LINKS */
.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #00ff88;
    transform: translateX(5px);
}

/* ===================== */
/* SOCIAL */
/* ===================== */

.social a {
    display: block;
    margin-top: 10px;
    color: #aaa;
    transition: 0.3s;
}

.social a:hover {
    color: #00ff88;
}

/* ===================== */
/* CONTACTO */
/* ===================== */

.footer-col i {
    margin-right: 8px;
    color: #00ff88;
}

.estado {
    font-weight: bold;
    margin-bottom: 10px;
}

/* ===================== */
/* HORARIO */
/* ===================== */

.horario p {
    margin: 3px 0;
    color: #888;
}

/* ===================== */
/* FOOTER FINAL */
/* ===================== */

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
    color: #666;
    font-size: 13px;
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 500px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ===================== */
/* HERO */
/* ===================== */

.contacto-hero {
    text-align: center;
    padding: 0px 0px 0px;
}

.contacto-hero h1 {
    font-size: 60px;
    font-weight: bold;

    color: #fff;

    text-shadow: 0 0 10px rgba(123, 47, 247, 0.5), 0 0 20px rgba(241, 7, 163, 0.3);
    margin-bottom: 10px;
}

.contacto-hero p {
    color: #aaa;
    font-size: 16px;
}

/* ===================== */
/* CONTENEDOR */
/* ===================== */

.contacto-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 60px 20px;
    max-width: 1100px;
    margin: auto;
}

/* ===================== */
/* INFO IZQUIERDA */
/* ===================== */

.contacto-info h2 {
    color: #c084fc;
    margin-bottom: 20px;
}

.item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    color: #ccc;
}

.item i {
    color: #00ff88;
    font-size: 18px;
    margin-top: 3px;
}

/* REDES */
.redes {
    margin: 20px 0;
}

.redes a {
    color: #aaa;
    font-size: 20px;
    margin-right: 15px;
    transition: 0.3s;
}

.redes a:hover {
    color: #00ff88;
}

/* BOTON WHATSAPP GRANDE */
.btn-wsp-grande {
    display: inline-block;
    margin-top: 10px;
    background: linear-gradient(135deg, #00ff88, #00c853);
    color: #000;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.btn-wsp-grande:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
}

/* ===================== */
/* FORMULARIO */
/* ===================== */

.contacto-form {
    background: #0f0f0f;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.contacto-form h2 {
    margin-bottom: 20px;
}

/* INPUTS */
.contacto-form input,
.contacto-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: none;
    background: #1a1a1a;
    color: #fff;
    outline: none;
    font-size: 14px;
}

/* EFECTO FOCUS */
.contacto-form input:focus,
.contacto-form textarea:focus {
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* TEXTAREA */
.contacto-form textarea {
    min-height: 120px;
    resize: none;
}

/* BOTON */
.contacto-form button {
    width: 100%;
    background: linear-gradient(135deg, #00ff88, #00c853);
    color: #000;
    padding: 12px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contacto-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

/* ===================== */
/* MAPA */
/* ===================== */

.mapa {
    margin-top: 40px;
    padding: 0 20px 60px;
}

.mapa iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 15px;
}

/* BOTON OCULTO EN PC */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* CELULAR */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    /* ocultamos botón verde en móvil */
    .btn-wsp {
        display: none;
    }

    .nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #000;
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .nav a {
        padding: 12px 0;
        font-size: 18px;
    }

    .nav.active {
        display: flex;
    }
}

.header {
    position: relative;
    z-index: 1000;
}

.hero {
    position: relative;
    z-index: 1;
}