/* Configuração geral do fundo da página com camada suave */
body {
    background-image: linear-gradient(rgba(247, 245, 240, 0.90), rgba(247, 245, 240, 0.90)), url('fundo-site.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #F7F5F0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 20px 0;
}

/* Container e Cartões para destacar o conteúdo sobre o fundo */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.card {
    background: rgba(255, 255, 255, 0.90); /* Fundo branco com leve transparência */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 25px;
}

/* Cabeçalho com destaque azul elegante */
header {
    background-color: #2C3E50;
    color: #FFFFFF;
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

header h1 {
    color: #FFFFFF;
    margin-bottom: 5px;
}

header h2 {
    color: #E2D3C1;
    font-size: 1.1em;
    font-weight: normal;
}

/* Seção de foto e perfil */
.profile-section {
    display: flex;
    gap: 25px;
    align-items: center;
}

.profile-img-container {
    flex-shrink: 0;
}

.profile-img {
    width: 150px;
    height: 147px; /* Ajustado proporcionalmente para a sua foto */
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Grid de modalidades */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.feature-box {
    background: #FAFAFA;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #A07855;
}

/* Espaço do vídeo */
.video-placeholder {
    background: #F0EDE6;
    border: 2px dashed #A07855;
    padding: 30px;
    text-align: center;
    border-radius: 6px;
    color: #666;
    margin-top: 15px;
}

/* FAQ */
.faq-item {
    margin-bottom: 15px;
}

.faq-item h4 {
    color: #2C3E50;
    margin-bottom: 5px;
}

/* --- BANNER DE COOKIES DESTACADO COM BLOQUEIO DE TELA --- */
#cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 9998;
    display: flex;
    justify-content: center;
    align-items: center;
}

#cookie-banner {
    background: #ffffff;
    color: #333;
    padding: 30px;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    text-align: center;
    font-size: 15px;
}

#cookie-banner h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #2C3E50;
    font-size: 18px;
}

#cookie-banner p {
    margin-bottom: 20px;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
}

#cookie-banner button {
    background: #25d366;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    width: 100%;
    transition: background 0.3s;
}

#cookie-banner button:hover {
    background: #20ba5a;
}

