/* Base tweaks */
:root {
    --lime: #CCFF00;
    --lime2: #DFFF00;
    --pink: #FF007F;
    --white: #FFFFFF;
    --black: #000000;
}

/* Neon blobs (background) */
.neon-blob-green {
    background: radial-gradient(closest-side, rgba(204, 255, 0, .18), transparent 70%);
    filter: blur(40px);
}

.neon-blob-pink {
    background: radial-gradient(closest-side, rgba(255, 0, 127, .18), transparent 70%);
    filter: blur(40px);
}

.animate-pulse-slow {
    animation: pulseSlow 3.8s ease-in-out infinite;
}

@keyframes pulseSlow {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Headings */
.section-pad {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}

.section-title {
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    font-weight: 800;
}

.section-sub {
    color: rgba(255, 255, 255, .65);
}

/* Links & buttons */
.nav-link {
    color: rgba(255, 255, 255, .7);
    transition: .2s;
}

.nav-link:hover {
    color: var(--white);
    text-shadow: 0 0 8px rgba(255, 255, 255, .25);
}

.btn-ghost {
    padding: .7rem 1rem;
    border-radius: .9rem;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    background: transparent;
    transition: .25s;
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, .35);
    box-shadow: 0 0 18px rgba(255, 255, 255, .12);
}

.btn-neon-lime,
.btn-neon-fucsia,
.btn-neon-lime-sm,
.btn-neon-fucsia-sm {
    color: #000;
    font-weight: 700;
    border-radius: 1rem;
    transition: .25s;
    letter-spacing: .2px;
    box-shadow: 0 0 0 transparent;
}

.btn-neon-lime {
    padding: .8rem 1.15rem;
    background: linear-gradient(90deg, var(--lime), var(--lime2));
}

.btn-neon-fucsia {
    padding: .8rem 1.15rem;
    background: linear-gradient(90deg, var(--pink), #ff4aa2);
    color: #fff;
}

.btn-neon-lime-sm {
    padding: .5rem .9rem;
    background: linear-gradient(90deg, var(--lime), var(--lime2));
}

.btn-neon-fucsia-sm {
    padding: .5rem .9rem;
    background: linear-gradient(90deg, var(--pink), #ff4aa2);
    color: #fff;
}

.btn-neon-lime:hover {
    box-shadow: 0 0 20px var(--lime);
    transform: translateY(-1px);
}

.btn-neon-fucsia:hover {
    box-shadow: 0 0 20px var(--pink);
    transform: translateY(-1px);
}

.btn-neon-lime-sm:hover {
    box-shadow: 0 0 14px var(--lime);
}

.btn-neon-fucsia-sm:hover {
    box-shadow: 0 0 14px var(--pink);
}

/* Neon text accent */
.neon-text {
    background: linear-gradient(90deg, var(--pink), var(--lime));
    -webkit-background-clip: text;
    background-clip: text;
}

/* Dots */
.dot {
    display: inline-block;
    width: .5rem;
    height: .5rem;
    border-radius: 999px;
    box-shadow: 0 0 10px currentColor;
}

.dot-lime {
    color: var(--lime);
    background: var(--lime);
}

.dot-pink {
    color: var(--pink);
    background: var(--pink);
}

/* Cards */
.card-neon {
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1.1rem;
    padding: 1.1rem;
    transition: .25s;
    position: relative;
    overflow: hidden;
}

.card-neon::after {
    content: "";
    position: absolute;
    inset: auto -30% -30% auto;
    width: 80%;
    height: 60%;
    background: radial-gradient(closest-side, rgba(255, 0, 127, .12), transparent 70%);
    transform: rotate(-18deg);
}

.card-neon:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 22px rgba(255, 0, 127, .18), 0 0 22px rgba(204, 255, 0, .18);
    border-color: rgba(255, 255, 255, .18);
}

.icon-wrap {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: .6rem;
}

.icon-neon {
    width: 26px;
    height: 26px;
    color: var(--lime);
    filter: drop-shadow(0 0 8px rgba(204, 255, 0, .45));
}

.card-title {
    font-weight: 800;
    font-size: 1.05rem;
    margin: .15rem 0 .35rem;
}

.card-text {
    color: rgba(255, 255, 255, .75);
    font-size: .95rem;
}

.card-img {
    width: 100%;
    border-radius: .8rem;
    border: 1px solid rgba(255, 255, 255, .08);
    margin-top: .6rem;
}

.card-cta {
    display: flex;
    gap: .5rem;
    margin-top: .7rem;
}

/* List check */
.li-check {
    display: flex;
    gap: .6rem;
    align-items: flex-start;
}

.li-check::before {
    content: "";
    width: .65rem;
    height: .65rem;
    margin-top: .35rem;
    border-radius: 999px;
    background: var(--lime);
    box-shadow: 0 0 10px var(--lime);
}

/* Floating icons around image */
.floating-icon {
    position: absolute;
}

.icon-float {
    width: 36px;
    height: 36px;
    color: var(--pink);
    filter: drop-shadow(0 0 10px rgba(255, 0, 127, .6));
    animation: float 4.5s ease-in-out infinite;
}

.floating-icon.delay-200 .icon-float {
    animation-delay: .2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Shadow helper */
.shadow-neon {
    box-shadow: 0 0 24px rgba(255, 0, 127, .2), 0 0 24px rgba(204, 255, 0, .18);
}

/* Inputs */
.label {
    display: block;
    font-size: .9rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .35rem;
}

.input-neon {
    width: 100%;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    border-radius: .9rem;
    padding: .7rem .9rem;
    outline: none;
    transition: .2s;
}

.input-neon:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(255, 0, 127, .15);
}

/* Ajuste específico para <select> con clase .input-neon */
select.input-neon {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: rgba(255, 255, 255, 0.03);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .12);
    padding: .7rem .9rem;
    border-radius: .9rem;
    width: 100%;
    font-family: inherit;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l5 5 5-5H5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1rem;
    cursor: pointer;
}

select.input-neon:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 4px rgba(255, 0, 127, .15);
    outline: none;
}

/* Opcional: asegurar que las opciones también tengan buen contraste */
select.input-neon option {
    background-color: #000;
    /* mismo fondo oscuro */
    color: #fff;
    /* texto blanco */
}

/* Mobile nav */
.nav-mobile {
    display: block;
    padding: .7rem 1rem;
    border-radius: .7rem;
    border: 1px solid rgba(255, 255, 255, .1);
    color: #fff;
    background: rgba(255, 255, 255, .02);
}

/* SPA views */
.view {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: .35s;
}

.view.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.view.hidden {
    display: none;
}

/* Hero mockups */
.mock {
    display: block;
    max-width: 100%;
    height: auto;
}

.mock.main {
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .6));
}

.mock.phone {
    position: absolute;
    right: -20px;
    bottom: -18px;
    width: 42%;
    filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .6));
}

.mock.vamp {
    position: absolute;
    left: -24px;
    top: -30px;
    width: 36%;
    opacity: .95;
}

/* Parallax */
.parallax-layer {
    position: relative;
    will-change: transform;
}

/* Carousel */
.carousel {
    min-height: 170px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 10px;
}

.t-item {
    max-width: 48ch;
    margin-inline: auto;
    color: #fff;
}

.t-quote {
    font-size: clamp(1.1rem, 2.1vw, 1.35rem);
    font-weight: 700;
}

.t-meta {
    margin-top: .6rem;
    font-size: .9rem;
    color: rgba(255, 255, 255, .75)
}

.dot-btn {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .5);
}

.dot-btn.active {
    background: var(--pink);
    box-shadow: 0 0 12px var(--pink);
}

/* Wizard (cotización) */
.wizard-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5rem;
}

.w-step {
    text-align: center;
    padding: .6rem;
    border-radius: .7rem;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(255, 255, 255, .02);
    color: rgba(255, 255, 255, .7);
    font-weight: 700;
    letter-spacing: .2px;
}

.w-step.active {
    border-color: var(--pink);
    box-shadow: 0 0 16px rgba(255, 0, 127, .25);
    color: #fff;
}

.w-panel {
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, .02);
}

.chk {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem .7rem;
    border-radius: .6rem;
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .08);
}

.chk input {
    accent-color: var(--pink);
}

/* Calendar (demo) */
.calendar {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: .5rem;
    margin-top: .5rem;
}

.day {
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: .7rem;
    padding: .8rem .4rem;
    text-align: center;
    background: rgba(255, 255, 255, .02);
    cursor: pointer;
    transition: .2s;
}

.day:hover {
    border-color: var(--pink);
    box-shadow: 0 0 12px rgba(255, 0, 127, .25);
}

.day.selected {
    outline: 3px solid rgba(204, 255, 0, .35);
    border-color: var(--lime);
    box-shadow: 0 0 18px rgba(204, 255, 0, .35);
}

/* Links */
.link {
    color: rgba(255, 255, 255, .75);
}

.link:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, .25);
}

.social.neon {
    color: #fff;
    padding: .45rem .75rem;
    border-radius: .6rem;
    border: 1px solid rgba(255, 255, 255, .12);
}

.social.neon:hover {
    border-color: rgba(255, 255, 255, .3);
    box-shadow: 0 0 14px rgba(255, 255, 255, .18);
}

/* Utility */
.ring-ghost {
    box-shadow: 0 0 0 1px rgba(255, 255, 255, .08) inset;
}

.neon-outline {
    box-shadow: 0 0 0 2px rgba(255, 0, 127, .25), 0 0 22px rgba(255, 0, 127, .25);
}

/* ============= NUESTRO EQUIPO ============= */
/* Contenedor general */
#equipo {
    background: transparent;
    text-align: center;
}

/* Contenedor de cada miembro */
.equipo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

/* Contenedor circular de la imagen */
.equipo-img-wrapper {
    position: relative;
    display: flex;
    /* Centrar contenido */
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    background-color: #000;
    /* Fondo para evitar transparencias */
}

/* Imagen circular */
.equipo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 18px rgba(255, 0, 127, 0.35),
        0 0 22px rgba(204, 255, 0, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover en escritorio */
.equipo-item:hover .equipo-img {
    transform: scale(1.05);
    box-shadow: 0 0 28px rgba(255, 0, 127, 0.5),
        0 0 30px rgba(204, 255, 0, 0.35);
}

/* Imagen de Nosferatu oculta */
.equipo-img.nosferatu {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter: blur(2px);
    transition: opacity 0.3s ease-in-out;
}

/* Capa de estática */
.static-overlay {
    position: absolute;
    inset: 0;
    background: url("https://media.giphy.com/media/oEI9uBYSzLpBK/giphy.gif");
    background-size: cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s;
    z-index: 10;
    border-radius: 50%;
}

/* Mostrar Nosferatu después del efecto */
.equipo-item.show-nosferatu .equipo-img.normal {
    opacity: 0;
}

.equipo-item.show-nosferatu .equipo-img.nosferatu {
    opacity: 1;
}

/* Mostrar la estática */
.equipo-item.static-on .static-overlay {
    opacity: 0.6;
}

/* Nombre del miembro */
.equipo-nombre {
    font-weight: 700;
    margin-top: 0.6rem;
    font-size: 1.1rem;
    color: var(--white);
}

/* Puesto del miembro */
.equipo-puesto {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

/* Ajuste responsive */
@media (max-width: 640px) {
    .equipo-img-wrapper {
        width: 120px;
        height: 120px;
    }

    .equipo-img {
        width: 120px;
        height: 120px;
    }
}