:root {
    --c-cyan: #00aeef;
    --c-magenta: #ec008c;
    --c-yellow: #fff200;
    --c-black: #1a1a1a;
    --font-head: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

body,
html {
    height: 100%;
    margin: 0;
    overflow: hidden;
    font-family: var(--font-body);
    background-color: var(--c-black);
}

/* --- LOGO PEGATINA (STICKER) --- */
.logo-sticker {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 500;
    display: inline-block;
    background: white;
    padding: 15px 30px;
    border-radius: 15px;
    /* Bordes redondeados pero no circular completo */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    /* Sombra 3D */
    transform: rotate(-5deg);
    /* Efecto pegado "chueco" */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid white;
    /* Borde extra */
}

.logo-sticker img {
    height: 70px;
    /* Tamaño generoso */
    display: block;
}

.logo-sticker:hover {
    transform: rotate(0deg) scale(1.1);
    /* Se endereza al pasar mouse */
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

/* --- SOCIAL BUTTONS (CIRCULARES) --- */
.sticky-socials {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-circle {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-circle:hover {
    transform: scale(1.2);
    background: white;
}

.social-circle.instagram:hover {
    color: #E1306C;
    box-shadow: 0 0 25px rgba(225, 48, 108, 0.7);
}

.social-circle.facebook:hover {
    color: #1877F2;
    box-shadow: 0 0 25px rgba(24, 119, 242, 0.7);
}

/* --- TEXTO DINÁMICO CMYK (Arcoíris) --- */
.cmyk-text .txt {
    background: linear-gradient(90deg, var(--c-cyan), var(--c-magenta), var(--c-yellow), var(--c-cyan));
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: rainbowText 4s linear infinite;
    font-weight: 900;
}

@keyframes rainbowText {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.txt-type {
    border-right: 0.1em solid #fff;
    padding-right: 5px;
    animation: blinkCursor 0.7s infinite;
}

@keyframes blinkCursor {
    0% {
        border-right-color: rgba(255, 255, 255, 1);
    }

    50% {
        border-right-color: rgba(255, 255, 255, 0);
    }

    100% {
        border-right-color: rgba(255, 255, 255, 1);
    }
}

/* --- CINTA MARQUESINA --- */
.brand-tape {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #ffffff;
    z-index: 1000;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    border-top: 3px solid var(--c-magenta);
}

.brand-tape:hover .tape-track {
    animation-play-state: paused;
}

.tape-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scrollLoop 40s linear infinite;
    white-space: nowrap;
    padding-left: 50px;
}

.tape-logo {
    height: 45px;
    width: auto;
    transition: transform 0.3s;
    cursor: pointer;
}

.tape-logo:hover {
    transform: scale(1.15) rotate(-2deg);
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- ELEMENTOS GENERALES --- */
#bgCarousel,
.carousel-inner,
.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenBurns 25s infinite alternate linear;
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.2);
    }
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.main-content-wrapper {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 60px;
}

h1 {
    font-family: var(--font-head);
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.fw-black {
    font-weight: 900;
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.glass-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.text-yellow {
    color: var(--c-yellow);
}

.btn-glass-primary,
.btn-glass-whatsapp {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-head);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-glass-primary:hover {
    background: var(--c-magenta);
    border-color: var(--c-magenta);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(236, 0, 140, 0.6);
}

.btn-glass-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

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

/* MODAL & INPUTS */
.glass-modal {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
    border-radius: 25px;
}

.btn-close-white-custom {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    opacity: 0.8;
}

.btn-close-white-custom:hover {
    opacity: 1;
    transform: rotate(90deg);
    transition: 0.3s;
}

.glass-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white !important;
    border-radius: 15px;
    padding: 12px 15px;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--c-cyan);
    box-shadow: 0 0 15px rgba(0, 174, 239, 0.4);
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-floating label {
    color: rgba(255, 255, 255, 0.7);
}

.glass-input option {
    background-color: #222;
    color: white;
}

.btn-action-submit {
    background: linear-gradient(90deg, var(--c-cyan), var(--c-magenta));
    border: none;
    color: white;
    transition: 0.3s;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.btn-action-submit:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.6);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .logo-sticker {
        top: 15px;
        left: 15px;
        padding: 10px 20px;
    }

    .logo-sticker img {
        height: 50px;
    }

    .brand-tape {
        height: 60px;
    }

    .tape-logo {
        height: 35px;
        gap: 40px;
    }

    .cta-group {
        width: 100%;
        padding: 0 10px;
    }

    .btn-glass-primary,
    .btn-glass-whatsapp {
        padding: 15px;
        width: 100%;
        justify-content: center;
    }

    .sticky-socials {
        top: auto;
        bottom: 100px;
        right: 15px;
        transform: none;
        flex-direction: row;
    }

    /* En movil abajo a la derecha */
}