﻿@import url('https://fonts.googleapis.com/css2?family=Archia:wght@400;700&display=swap');

/* Modal */
.modal-agradecimento {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.modal-content-agradecimento {
    background-color: #fff;
    width: 90%;
    max-width: 420px;
    padding: 20px 20px 10px 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow-y: auto;
    max-height: 98vh;
}

    .modal-content-agradecimento::-webkit-scrollbar {
        width: 0px;
        background: transparent;
    }

/* Cabeçalho */
.header-agradecimento h1 {
    color: #D33E21;
    font-family: 'Archia', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Texto Informativo */
.info-text-agradecimento {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Archia', sans-serif;
    color: #64100A;
}

    .info-text-agradecimento .texto-login,
    .info-text-agradecimento .texto-senha {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 15px;
        text-align: center;
    }

    /* Imagem */
    .info-text-agradecimento img {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

/* Vídeo responsivo */
.video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #000;
    margin-bottom: 15px;
}

    .video-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* Senha Provisória */
.senha-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .senha-container h6 {
        color: #D33E21;
        font-family: 'Archia', sans-serif;
        font-size: 16px;
        font-weight: 700;
    }

.texto-copiar {
    font-size: 12px;
    color: #64100A;
    margin-top: -10px;
    margin-bottom: 10px;
}

.senha-destaque {
    font-size: 0.9rem;
    font-weight: bold;
    color: #D33E21;
    background: #FFF3E0;
    padding: 5px 10px;
    border-radius: 10px;
    border: 2px solid #D33E21;
    display: inline-block;
    margin: 15px auto;
}

/* Ícone de copiar */
.bi-clipboard, .bi-check2 {
    font-size: 0.9rem;
    color: #D33E21;
    cursor: pointer;
    transition: color 0.3s ease;
}

    .bi-clipboard:hover, .bi-check2:hover {
        color: #A62A17;
    }

/* Botão de login */
.botao-inscreva-se {
    display: inline-block;
    width: 100%;
    max-width: 200px;
    height: 45px;
    background-color: #D33E21;
    color: white;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    font-size: 14px;
    line-height: 45px;
    transition: background 0.3s ease-in-out;
}

    .botao-inscreva-se:hover {
        background-color: #b92e18;
    }

/* Responsivo */
@media (max-width: 430px) {
    .modal-content-agradecimento {
        width: 95%;
        max-height: 85vh;
    }

    .header-agradecimento h1 {
        font-size: 20px;
    }

    .info-text-agradecimento .texto-login,
    .info-text-agradecimento .texto-senha {
        font-size: 12px;
    }

    .botao-inscreva-se {
        max-width: 180px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .modal-content-agradecimento {
        padding: 15px;
        max-height: 80vh;
    }

    .header-agradecimento h1 {
        font-size: 18px;
    }

    .botao-inscreva-se {
        max-width: 160px;
        height: 40px;
        font-size: 12px;
    }
}

/* Travar o scroll ao abrir modal */
body.modal-active {
    overflow: hidden;
}
