@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-dark: #1a2a3a; /* Azul Marinho Profundo */
    --primary-medium: #2c4a5c; /* Azul Petróleo */
    --accent-gold: #b8860b; /* Dourado/Bronze Sofisticado */
    --text-dark: #333333; /* Texto Quase Preto */
    --text-light: #666666; /* Texto Cinza Escuro */
    --bg-light: #fdfdfd; /* Fundo Muito Claro */
    --bg-medium: #e9ecef; /* Fundo Cinza Claro */
    --border-color: #e0e0e0; /* Borda Suave */
    --shadow-subtle: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 20px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.8; /* Aumentar espaçamento para mais legibilidade */
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif; /* Fonte mais elegante para títulos */
    color: var(--primary-dark);
    margin-bottom: 0.8em;
}

h1 {
    font-size: 3.8em;
    font-weight: 700;
    letter-spacing: -1px;
    color: #ffffff; /* H1 no header é branco */
}

h2 {
    font-size: 2.8em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5em;
    padding-bottom: 0.5em;
    position: relative;
    color: var(--primary-dark);
}
h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-gold); /* Linha dourada sob o título */
    border-radius: 2px;
}

h3 {
    font-size: 2em;
    font-weight: 500;
    margin-top: 2.5em;
    color: var(--primary-medium);
}

header {
    background-color: var(--primary-dark);
    color: #ffffff;
    padding: 3.5rem 0;
    text-align: center;
    box-shadow: var(--shadow-medium);
}
header p {
    margin: 0.8rem 0 0;
    font-size: 1.6em;
    font-weight: 300;
}

nav {
    background-color: var(--primary-medium);
    padding: 0.6rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
nav ul li {
    margin: 0 1em;
}
nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 1.2rem 1.6rem;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    font-size: 1.05em;
}
nav a:hover {
    background-color: var(--primary-dark);
    color: var(--accent-gold);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 3.5rem auto;
    background-color: #ffffff;
    padding: 3.5rem 4.5rem;
    box-shadow: var(--shadow-medium);
    border-radius: 12px;
}
@media (max-width: 992px) {
    .container {
        padding: 2.5rem 3rem;
    }
    h1 { font-size: 3em; }
    h2 { font-size: 2.4em; }
    h3 { font-size: 1.7em; }
}
@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 2rem;
    }
    header { padding: 2.5rem 0; }
    header h1 { font-size: 2.5em; }
    header p { font-size: 1.3em; }
    h2 { font-size: 2em; margin-bottom: 1em;}
    h2::after { width: 70px; height: 2px; }
    h3 { font-size: 1.4em; margin-top: 2em;}
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        width: 100%;
        text-align: center;
        margin: 0;
    }
    nav a {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    nav ul li:last-child a {
        border-bottom: none;
    }
    .call-to-action {
        flex-direction: column;
        padding: 2rem;
    }
    .call-to-action .btn {
        margin: 0.8em 0;
        width: 100%;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }
    h1 { font-size: 2em; }
    h2 { font-size: 1.8em; }
    h3 { font-size: 1.3em; }
    .footer-info { font-size: 0.8em; }
}


.section-content {
    margin-bottom: 3rem;
    font-size: 1.1em;
    color: var(--text-light);
}
.section-content p {
    margin-bottom: 1.5em;
}
.section-content ul {
    list-style: none; /* Remover estilo padrão */
    padding: 0;
    margin-left: 0;
}
.section-content ul li {
    margin-bottom: 1em;
    padding-left: 2em;
    position: relative;
    color: var(--text-light);
}
.section-content ul li::before {
    content: '★'; /* Ícone de estrela para sofisticação */
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
    top: -2px; /* Ajuste vertical do ícone */
}

/* Remover estilos de imagem que não serão usadas */
.image-container {
    display: none; /* Esconde completamente as divs de imagem */
}

.highlight {
    background-color: var(--bg-medium); /* Fundo cinza claro */
    padding: 2rem;
    border-left: 6px solid var(--accent-gold); /* Borda dourada */
    margin: 3rem 0;
    border-radius: 10px;
    font-style: italic;
    color: var(--text-dark);
    box-shadow: var(--shadow-subtle);
}
.highlight strong {
    color: var(--primary-dark);
    font-weight: 500;
}

/* Call to Action Section */
.call-to-action {
    background-color: var(--primary-dark);
    color: #ffffff;
    text-align: center;
    padding: 3.5rem 2.5rem;
    border-radius: 12px;
    margin-top: 3.5rem;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.8em;
}
.call-to-action h3 {
    color: #ffffff;
    font-size: 2.5em;
    margin-bottom: 0.8em;
}
.call-to-action p {
    font-size: 1.3em;
    max-width: 800px;
    margin-bottom: 2em;
    color: #f0f0f0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.2em 3em;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.15em;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.btn-primary {
    background-color: var(--accent-gold);
    color: #ffffff;
    border: 2px solid var(--accent-gold);
}
.btn-primary:hover {
    background-color: #a0700a; /* Dourado um pouco mais escuro */
    border-color: #a0700a;
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    margin-left: 1.5em;
}
.btn-secondary:hover {
    background-color: #ffffff;
    color: var(--primary-dark);
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}


footer {
    background-color: var(--primary-dark);
    color: #e9ecef;
    text-align: center;
    padding: 3rem 0;
    margin-top: 4.5rem;
    font-size: 0.95em;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}
footer p {
    margin: 0.7rem 0;
}
.footer-info {
    list-style: none;
    padding: 0;
    margin: 1.8rem 0 0.8rem;
}
.footer-info li {
    margin-bottom: 0.5rem;
    font-size: 0.9em;
}
.footer-info li strong {
    color: var(--accent-gold);
    font-weight: normal;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: var(--accent-gold);
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    font-size: 1.6em;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    display: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}
.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-4px);
}