@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('/assets/fonts/poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

:root {
    --font-roboto: 'Roboto', sans-serif;
    --font-comfortaa: 'Comfortaa', cursive;
    --font-noto: 'Noto Sans', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
    --color-bg: #0b1e28;
    --color-text: #ffffff;
    --color-primary: #2b6cb0;
    --color-gradient-start: #c084fc;
    --color-gradient-end: #38bdf8;
    --color-button-hover: color-mix(in srgb, #0085c0, transparent 15%);
}

html,
body {
    overflow: hidden;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-poppins);
    overflow-x: hidden;
}

p {
    font-size: 1.4rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slide {
    display: none;
    animation: fade 0.6s ease-in-out;
}

.slide.active {
    display: flex;
    animation: fade 0.6s ease-in-out;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background-color: var(--color-primary);
    border: none;
    padding: 15px 60px;
    font-size: 1.4rem;
    font-weight: 500;
}

.btn-outline-light {
    border-color: white;
    color: white;
    width: 70px;
}

input.form-control {
    width: 100%;
    height: 60px;
    border-radius: 45px;
    background: #fff;
    color: #3a3939;
    padding: 30px;
    font-size: 1.2rem;
}

input.form-control::placeholder {
    color: #3a3939;
    opacity: 1;
}

input.form-control:focus {
    background: #fff;
    border-color: #ffffff14;
    box-shadow: 0 0 0 .25rem rgb(255 255 255 / 25%);
    color: #3a3939;
}

#info {
    height: 120px;
    overflow: hidden;
    position: relative;
}

.info-content {
    display: inline-block;
    animation: scroll-down 120s linear infinite;
}

.info-content h3 {
    padding: 15px 0px 0px 0px;
    font-size: 1.275rem;
    text-align: left;
}

@keyframes scroll-down {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-100%);
    }
}

#info:hover .info-content {
    animation-play-state: paused;
}

.prev-next {
    background: var(--color-button-hover);
}

.prev-next:hover {
    background: linear-gradient(to right, var(--color-gradient-start), var(--color-gradient-end));
}

.prev-slide:hover {
    background-color: #c3c3c3;
    border-color: #c3c3c3;
}

.btn-whatsapp {
    color: #ffffff;
    background: #3bc58d;
    font-weight: 500;
    font-size: 1.5rem;
    letter-spacing: 1px;
    display: inline-block;
    padding: 16px 85px;
    border-radius: 50px;
    transition: 0.5s;
    /* margin: 30px; */
    animation: fadeInUp 1s both 0.4s;
    text-decoration: none;
    width: 400px;
}

div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background-color: var(--color-button-hover) !important;
}

@keyframes bounce-down {

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

    50% {
        transform: translateY(10px);
    }
}

.bounce-down {
    animation: bounce-down 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

    20% {
        transform: scale(1.1);
        opacity: 1;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }

    40% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    }

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

.pulse-animation {
    animation: pulse 3s ease-in-out infinite;
}


.logo {
    position: absolute;
    padding-left: 2.7rem;
    bottom: 1.5rem;
    height: 60px;
}

.logo img {
    width: 235px;
}

.step-indicator {
    position: fixed;
    bottom: 1.5rem;
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: end;
    padding: 20px 0 10px;
    z-index: 1000;
    gap: 60px;
    padding-left: 3.5rem;
    padding-right: 3.5rem;
}

.step-indicator {
    position: fixed;
    bottom: 1.5rem;
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: end;
    padding: 20px 0 10px;
    z-index: 1000;
    gap: 60px;
    padding-right: 3.2rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: self-start;
}

.step .number {
    color: #888;
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 6px;
}

.step .line {
    width: 100px;
    height: 2px;
    background: #555;
    transition: all 0.3s ease;
}

.step.active .number {
    color: #fff;
}

.step.active .line {
    width: 200px;
    background: #fff;
}


/* Estilos para telas menores que 768px (mobile) */
@media (max-width: 768px) {

    #slide-2{
        margin-top: 2vh;
    }
    p {
        font-size: 1.2rem;
    }

    #info {
        height: 35px;
    }

    .btn-primary {
        background-color: var(--color-primary);
        border: none;
        padding: 15px 40px;
        font-size: 1.2rem;
        font-weight: 500;
        width: 100%;
    }

    .btn-outline-light {
        border-color: white;
        color: white;
        width: 70px;
    }

    .logo {
        top: 1rem;
    }

    .logo img {
        width: 195px;
        height: auto;
    }

    .step .line {
        width: 32px;
    }

    .step.active .line {
        width: 44px;
    }

    .step .number {
        font-size: 0.85rem;
    }

    .step-indicator {
        gap: 44px;
    }

    .slide.active {
        height: 90VH;

    }

    .step.active .line {
        width: 44px;
    }

    .step .line {
        width: 44px;
    }
    .btn-whatsapp {
    font-size: 1rem;
    width: 230px;
}
}