/* --- GERAL --- */
:root {
    --azul-royal: #00529B;
    --dourado: #D4AF37;
    --branco: #FFFFFF;
    --cinza-claro: #f4f4f4;
    --cinza-escuro: #333;
    --font-principal: 'Poppins', sans-serif;
    --font-secundaria: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secundaria);
    color: var(--cinza-escuro);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    padding: 0 2rem;
}

.team-container {
    max-width: 1430px; /* 1100px * 1.3 */
    margin: auto;
    padding: 0 2rem;
}

h1, h2, h3, h4 {
    font-family: var(--font-principal);
    font-weight: 600;
    color: var(--azul-royal);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

section {
    padding: 4rem 0;
}

section:nth-of-type(even) {
    background-color: var(--cinza-claro);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* --- CABEÇALHO E NAVEGAÇÃO --- */
header {
    background: var(--branco);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo-container .logo {
    height: 65px;
    transition: height 0.3s ease;
}

header ul {
    display: flex;
    list-style: none;
}

header ul li {
    margin-left: 2rem;
}

header a {
    text-decoration: none;
    color: var(--cinza-escuro);
    font-weight: 600;
    font-family: var(--font-principal);
    transition: color 0.3s ease;
}

header a:hover, header a.active {
    color: var(--dourado);
}

/* --- BOTÕES --- */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--dourado);
    color: var(--branco);
    border-color: var(--dourado);
}

.btn-primary:hover {
    background-color: #c09d2e;
    border-color: #c09d2e;
}

.btn-secondary {
    background-color: transparent;
    color: var(--azul-royal);
    border-color: var(--azul-royal);
}

.btn-secondary:hover {
    background-color: var(--azul-royal);
    color: var(--branco);
}

.btn-large {
    font-size: 1.2rem;
    padding: 1rem 2rem;
}

/* --- SEÇÃO HERO (HOME) --- */
.hero {
    background: linear-gradient(rgba(0, 82, 155, 0.5), rgba(0, 82, 155, 0.5)), url('img/hero1.jpg') no-repeat center center/cover;
    height: 100vh;
    color: var(--branco);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 60px; /* Offset for fixed header */
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--branco);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons .btn {
    margin: 0 0.5rem;
}

.hero .btn-secondary {
    background-color: var(--branco);
    color: var(--azul-royal);
    border-color: var(--branco);
}

.hero .btn-secondary:hover {
    background-color: transparent;
    color: var(--branco);
    border-color: var(--branco);
}

/* --- QUEM SOMOS --- */
.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.about-text ul {
    list-style: none;
}
.about-text ul li {
    margin-bottom: 0.5rem;
}
.about-text i {
    color: var(--dourado);
    margin-right: 0.5rem;
}

.section-title-center {
    text-align: center;
    font-size: 1.8rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.value-card {
    background: var(--branco);
    padding: 2rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--cinza-claro);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 82, 155, 0.1);
    border-color: var(--dourado);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--dourado);
    margin-bottom: 1rem;
}

.value-card h4 {
    font-size: 1.1rem;
    color: var(--azul-royal);
    margin: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.team-member {
    background: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: none;
}

.team-member:hover {
    transform: none;
    box-shadow: none;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    object-fit: cover;
    border: none;
}

.team-member h4 {
    margin-top: 1rem;
}

/* --- ESPECIALIDADES --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--branco);
    padding: 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-card i {
    font-size: 3rem;
    color: var(--dourado);
    margin-bottom: 1rem;
}

/* --- AGENDAMENTO --- */
#agendamento {
    background: var(--azul-royal);
    color: var(--branco);
}
#agendamento h2, #agendamento .section-subtitle {
    color: var(--branco);
}
.agendamento-info {
    margin-top: 1.5rem;
}

/* --- CONVÊNIOS --- */
.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.logos-grid img {
    height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.logos-grid img:hover {
    filter: grayscale(0);
    opacity: 1;
}
.convenio-info {
    text-align: center;
    margin-top: 2rem;
}

/* --- CONTATO --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.contact-info i {
    color: var(--dourado);
    margin-right: 1rem;
}
.contact-info a {
    color: var(--azul-royal);
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
.contact-map iframe {
    border-radius: 10px;
}

/* --- BLOG --- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.blog-post {
    background: var(--branco);
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.blog-post a {
    color: var(--dourado);
    font-weight: 600;
    text-decoration: none;
}

/* --- FOOTER --- */
footer {
    background: var(--cinza-escuro);
    color: var(--branco);
    text-align: center;
    padding: 2rem 0;
}
footer i {
    color: var(--dourado);
}

/* --- ESTILOS PÁGINA DE BLOG POST (SIMPLES) --- */
.article-section {
    padding: 6rem 0 4rem 0;
}

.article-section h1 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
}

.article-meta {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 3rem;
}

.article-content {
    max-width: 750px;
    margin: 0 auto;
}

.article-content h2 {
    font-size: 1.8rem;
    text-align: left;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-section .back-link {
    display: block;
    max-width: 750px;
    margin: 3rem auto 0 auto;
    color: var(--azul-royal);
    text-decoration: none;
    font-weight: 600;
}

.article-section .back-link:hover {
    color: var(--dourado);
}

.article-section .back-link i {
    margin-right: 0.5rem;
}

/* --- RESPONSIVIDADE --- */
.menu-toggle {
    display: none; /* Hide by default */
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--azul-royal);
    cursor: pointer;
    z-index: 1100;
}


/* Tablet - 992px */
@media (max-width: 992px) {
    header nav {
        padding: 1rem;
    }

    #nav-links {
        display: none; 
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(5px);
        justify-content: center;
        align-items: center;
        text-align: center;
        transition: transform 0.3s ease-in-out;
        transform: translateX(100%);
    }

    #nav-links.nav-active {
        display: flex;
        transform: translateX(0);
    }

    #nav-links li {
        margin: 1.5rem 0;
    }
    
    #nav-links a {
        font-size: 1.5rem;
    }

    .menu-toggle {
        display: block;
    }
    
    .header-action-button {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* Mobile - 768px */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
    }

    section {
        padding: 2.5rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        margin: 0.5rem 0;
        width: 80%;
    }

    .about-content,
    .contact-grid,
    .blog-grid,
    .values-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        margin-top: 2rem;
    }

    .about-content {
        gap: 1.5rem;
    }
} 