/* Reset e estilos globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
    background-color: #003580; /* Fundo azul */
    color: #fff;
    overflow-x: hidden;
}

/* Cabeçalho fixo */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #003580; /* Fundo azul escuro */
    color: #fff;
    padding: 10px 0;
    text-align: center;
    z-index: 1000;
    border-bottom: 2px solid #002a66; /* Remove linha branca entre header e body */
}

header a {
    color: #ffd700;
    text-decoration: none;
}

header a:hover {
    text-decoration: underline;
}

/* Adicionar margem no conteúdo para evitar sobreposição do cabeçalho */
.wrapper {
    margin: 60px 0 40px; /* Espaço para o cabeçalho e rodapé */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 100px); /* Ajusta para cabeçalho e rodapé fixos */
}

/* Container principal */
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 20px;
    width: 100%;
}

/* Seção da imagem */
.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
}

.image-section img {
    width: 100%;
    max-width: 700px; /* Amplia a imagem */
    height: auto;
    border-radius: 10px;
}

/* Seção de texto */
.text-section {
    flex: 1;
    max-width: 50%;
    text-align: center;
    background-color: #004aad;
    padding: 20px;
    border-radius: 10px;
}

.text-section h1 {
    font-size: 2.5rem; /* Aumenta o tamanho do título */
    margin-bottom: 15px;
}

.text-section p {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px; /* Ajusta o tamanho dos botões */
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.5), inset 0 -6px 12px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.buttons .btn img {
    width: 24px; /* Ajusta o tamanho dos ícones */
    height: 24px;
}

.buttons .btn.chat {
    background-color: #ffc107;
}

.buttons .btn.chat:hover {
    background-color: #e0a800;
    transform: translateY(-4px); /* Efeito 3D mais intenso no hover */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.7), inset 0 -8px 15px rgba(255, 255, 255, 0.3);
}

.buttons .btn.telegram {
    background-color: #0078ff;
}

.buttons .btn.telegram:hover {
    background-color: #005bb5;
    transform: translateY(-4px); /* Efeito 3D mais intenso no hover */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.7), inset 0 -8px 15px rgba(255, 255, 255, 0.3);
}

/* Rodapé fixo */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #003580;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
    border-top: 2px solid #002a66; /* Remove linha branca entre footer e body */
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Ajustes responsivos */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .image-section, .text-section {
        max-width: 100%;
    }

    .image-section img {
        max-width: 90%; /* Amplia a imagem em telas menores */
    }

    .text-section {
        margin-top: 20px;
    }
}

