/* Reset e configuraÃ§Ã£o bÃ¡sica */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #171717;
    overflow: hidden;
    position: relative;
    height: 100vh;
}

body.v2 {
    background-color:#FF562F;
}

/* Canvas do fundo animado */
#noiseCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.3;
}

/* ConteÃºdo principal */
.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
    position: relative;
    z-index: 2;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    padding: 20px;
}

.svg-container img {
    width: 80%;
    margin-bottom: 20px;
}

/* AnimaÃ§Ã£o dos SVGs */
.animated-svg {
    opacity: 0;
    transform: scale(0.9);
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 1rem;
}

input {
    padding: 15px;
    border: none;
    outline: none;
    background-color: #333;
    color: white;
    transition: all 0.3s ease;
    font-family: courier new;
    text-transform: uppercase;
    font-size: 15px;
}

input:focus {
    background-color: #444;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

button {
    padding: 15px;
    background-color: transparent;
    color: white;
    border: none;
    font-family: courier new;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    font-size: 15px;
    border: 1px solid white;
    font-weight: bold;
}

button:hover {
    background-color: #fff;
    color: black;
}

.hidden {
    display: none;
}

#thankYouMessage {
    margin-top: 20px;
    color: #FFD93D;
    font-size: 22px;
}


.c-1,
.c-3 {
    width: 180px !important;
}

h3 {
    text-transform: uppercase;
    font-family: arial;
    letter-spacing: -1.5px;
    color: white;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #222222;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    flex-direction: column;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container.hidden {
    opacity: 1;
    visibility: hidden;
}

.loader-progress {
    width: 100%;
    height: 100%;
    background-color: #2b2b2b;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 30px;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background-color: #FF562F;
    transition: width 0.3s ease-in-out; /* Transição mais suave */
}


.percentage {
    font-size: 60px;
    color: white;
    font-weight: bold;
    position: absolute;
    bottom: 25px;
    left: 25px;
}


/* 🎨 Fundo de ruído animado */
#noiseCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* 🔧 Lista de sugestões ajustada para aparecer abaixo do input */
.suggestions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #424242;
    color: white;
    max-height: 150px;
    overflow-y: auto;
    z-index: 3;
    position: absolute;
    width: 100%;
    top: 100px; /* Aparece abaixo do input */
    left: 0;
    border-radius: 0;
    font-family: Courier New;
    text-transform: uppercase;
    text-align: left;
}

.suggestions-list li {
    padding: 15px 10px;
    cursor: pointer;
    transition: background-color 0.3s;
    border-bottom: 1px solid #cccccc45;
}

.suggestions-list li:hover {
    background-color: #ff562f;
    color: black;
}

.suggestions-list.hidden {
    display: none;
}

form {
    position: relative; /* Garante que a lista fique abaixo do input */
}

.confirma-mae {
    background-color: #FF562F !important;
}

/* 🎬 Transição entre páginas */
.transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2a2a2a;
    z-index: 9999;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}


/* ✨ Animação suave no texto do timer */
.fade-in {
    opacity: 0;
    animation: fadeInAnimation 2s forwards;
}

@keyframes fadeInAnimation {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ⏳ Estilo para o clockdown */
#countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
}

#countdown div {
    text-align: center;
    color: white;
}

#countdown span {
    font-size: 60px;
    font-weight: bold;
    display: block;
    color: #ff562f;
}


/* 🌟 Canvas para partículas interativas */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

/* ⏳ Estilo para o clockdown */
#countdown {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding: 30px 40px;
    border: 1px solid #000;
    background: white;
}

#countdown div {
    text-align: center;
    color: white;
}

#countdown p {
    color: black !important;
    font-family: "Courier New";
    text-transform: uppercase;
    font-weight: bold;
}

#countdown span {
    font-size: 40px;
    font-weight: bold;
    display: block;
    color: #ff562f;
    letter-spacing: -3px;
}

/* 🔗 Link para o WhatsApp */
.whatsapp-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.whatsapp-link:hover {
    background-color: #1ebf57;
}


/* 🔗 Link para o WhatsApp */
.whatsapp-link {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 32px;
    background-color: #25D366;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
    text-transform: lowercase;
    letter-spacing: -0.5px;
    border-radius: 0;
    color: #134726;
}

.whatsapp-link:hover {
    background-color: #1ebf57;
}

/* 🔔 Estilo para Toast */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FF562F;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    z-index: 10000;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}
