@font-face {
    font-display: swap;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 400;
    src: url('../../fonts/space-grotesk-v21-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 700;
    src: url('../../fonts/space-grotesk-v21-latin-700.woff2') format('woff2');
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #02050C;
    color: #F1F0F0;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

.survey-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

.step-card {
    display: none;
    opacity: 0;
    transform: translateY(30px);
}

.step-card.active {
    display: block;
}

.nps-btn {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.05);
}

/* Color intensities for NPS */
.nps-btn[data-score="0"],
.nps-btn[data-score="1"],
.nps-btn[data-score="2"],
.nps-btn[data-score="3"] {
    border-color: rgba(255, 255, 255, 0.1);
}

.nps-btn[data-score="4"],
.nps-btn[data-score="5"],
.nps-btn[data-score="6"] {
    border-color: rgba(255, 51, 51, 0.2);
}

.nps-btn[data-score="7"],
.nps-btn[data-score="8"] {
    border-color: rgba(255, 51, 51, 0.4);
}

.nps-btn[data-score="9"],
.nps-btn[data-score="10"] {
    border-color: rgba(255, 51, 51, 0.8);
}

.nps-btn:hover {
    transform: scale(1.2) translateY(-5px);
    background-color: #FF3333;
    color: #02050C;
    box-shadow: 0 10px 25px rgba(255, 51, 51, 0.5);
    border-color: #FF3333;
}

.nps-btn.selected {
    background-color: #FF3333;
    color: #02050C;
    transform: scale(1.3);
    box-shadow: 0 0 35px rgba(255, 51, 51, 0.9);
    border-color: #FF3333;
    z-index: 10;
}

.progress-bar-inner {
    transition: width 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.glass-card-survey {
    background: rgba(10, 13, 20, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 51, 51, 0.15);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
}

.vendedor-option {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.vendedor-option:hover {
    background: rgba(255, 51, 51, 0.08);
    border-color: rgba(255, 51, 51, 0.4);
    transform: translateX(8px);
}

.vendedor-option.selected {
    background: rgba(255, 51, 51, 0.15);
    border-color: #FF3333;
    padding-right: 50px;
}

.vendedor-option.selected::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    color: #FF3333;
    font-size: 1.2rem;
    animation: popIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.bg-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 51, 51, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }

    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

.floating {
    animation: float 15s ease-in-out infinite;
}

.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    pointer-events: none;
    z-index: 999;
}

.btn-primary-survey {
    background: #FF3333;
    color: #F1F0F0;
    padding: 1rem 2rem;
    border-radius: 99px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 51, 51, 0.2);
    border: none;
    cursor: pointer;
}

.btn-primary-survey:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 51, 51, 0.4);
    filter: brightness(1.1);
}

.btn-primary-survey:active:not(:disabled) {
    transform: translateY(-1px);
}

.btn-primary-survey:disabled {
    background: #1a1a1a;
    color: #444;
    cursor: not-allowed;
    box-shadow: none;
}

/* Vendedor Buttons */
.vendedor-btn {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.vendedor-btn.selected {
    background-color: rgba(255, 51, 51, 0.15) !important;
    border-color: #FF3333 !important;
    color: #F1F0F0;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
}

.vendedor-btn.selected::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
    color: #FF3333;
}
