html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

#modalPoliticaDados {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

#modalPoliticaDados .modal-content {
    background: #fff;
    width: 95%;
    max-width: 800px;
    height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 6px;
    padding: 0; /* remove o espaço interno */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

#modalPoliticaDados .card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: none;
    margin: 0;
}
#modalPoliticaDados .card-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
}
#modalPoliticaDados .card-header,
#modalPoliticaDados .card-footer {
    padding: 12px 16px;
}

#modalPoliticaDados .card-footer {
    border-top: 1px solid #ddd;
    text-align: right;
    background-color: #f8f9fa;
}



.g-recaptcha {
    width: 100% !important;
    display: flex;
    justify-content: center;
}

.mensagem-feedback {
    font-size: 0.95rem;
    margin-top: 10px;
    padding: 10px 40px 10px 10px;
    border-radius: 6px;
    display: none;
    position: relative;
    text-align: left;
}

.mensagem-feedback.sucesso {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.mensagem-feedback.erro {
    background-color: #f9c7cb;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.fechar-mensagem {
    position: absolute;
    top: 4px;
    right: 10px;
    cursor: pointer;
    font-weight: bold;
    font-size: 20px;
    line-height: 1;
}


body {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

main {
    flex: 1 0 auto;
    width: 100%;
    position: relative;
}

footer {
    background-color: #1b263b;
    color: #fff;
    text-align: center;
    padding: 20px 10px 10px;
    font-size: 13px;
}

footer b {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

footer small {
    display: block;
    margin-top: 10px;
    font-size: 12px;
    color: #ccc;
}

header {
    background: linear-gradient(90deg, #fcd400, #ff9900);
    padding: 60px 20px 40px;
    text-align: center;
    color: #000;
}

.header-img {
    width: 200px;
    margin-bottom: 15px;
    cursor: pointer;
}

header h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

header p {
    font-size: 1rem;
    margin: 0 auto 20px;
}

.botoes-superiores {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.botoes-superiores button {
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    border: none;
}

.botoes-superiores .desconto {
    background-color: #ffcc00;
}

.botoes-superiores .desconto:hover {
    background-color: #e6b800;
}

.botoes-superiores .whatsapp {
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

section {
    padding: 20px;
    max-width: 960px;
    margin: auto;
}

section h2 {
    text-align: center;
}

section .servicos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.servico-item {
    text-align: center;
    cursor: pointer;
}

.servico-item img {
    max-width: 60px;
    height: auto;
}

.depoimento {
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    margin: 20px auto;
    max-width: 90%;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.4;
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

.depoimento small {
    font-size: 11px;
    color: #666;
    display: block;
    margin-top: 10px;
}

#cookieBanner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1b263b;
    color: #fff;
    text-align: center;
    padding: 15px;
    z-index: 10000;
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

#cookieBanner button {
    margin-left: 10px;
    padding: 8px 16px;
    background: #ffcc00;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

#modalCookies.modal {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

#modalCookies .modal-content {
    background: #1b263b;
    padding: 20px;
    border-radius: 8px;
    text-align: justify;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(6px);
    /* efeito de desfoque */
    background-color: rgba(0, 0, 0, 0.4);
    /* leve escurecimento */
    z-index: 9999;
}

.modal.show {
    display: flex;
}


.modal.fade-out {
    opacity: 0;
    pointer-events: none;
}

.modal-content {
    background: #1b263b;
    padding: 30px;
    border-radius: 10px;
    color: #fff;
    max-width: 450px;
    width: 90%;
    position: relative;
    animation: slideIn 0.4s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

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

.modal-content h3 {
    color: #ffcc00;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.alerta {
    background: #0f3460;
    border-left: 5px solid #ffcc00;
    padding: 10px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.modal-content input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
}

.modal-content button {
    background-color: #ffcc00;
    color: #000;
    border: none;
    padding: 12px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-weight: 700;
}

.modal-content .nota {
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
    color: #ccc;
}

@media (max-width: 600px) {
    .header-img {
        width: 200px;
    }

    .botoes-superiores button {
        font-size: 13px;
        padding: 8px;
    }
}