/* =============================================
   RESET E VARIÁVEIS
   ============================================= */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --verde:        #5f7d4a;
    --verde-escuro: #3d5c2e;
    --verde-claro:  #8aab6e;
    --bege:         #f5f0e8;
    --bege-escuro:  #e8e0d0;
    --branco:       #ffffff;
    --cinza-texto:  #444444;
    --cinza-suave:  #888888;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Jost', sans-serif;
    color: var(--cinza-texto);
    background: var(--branco);
    overflow-x: hidden;
}

/* =============================================
   HEADER
   ============================================= */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--bege-escuro);
    padding: 0.8rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-nome {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
    color: var(--verde-escuro);
    letter-spacing: 0.02em;
}

nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

nav a {
    text-decoration: none;
    color: var(--cinza-texto);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}

nav a:hover { color: var(--verde); }

.btn-sistema {
    background: var(--verde) !important;
    color: var(--branco) !important;
    padding: 0.55rem 1.4rem !important;
    border-radius: 50px !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.06em !important;
    transition: background 0.2s !important;
    text-transform: none !important;
}

.btn-sistema:hover {
    background: var(--verde-escuro) !important;
    color: var(--branco) !important;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    background: var(--bege);
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem 5rem 5rem;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: 1.2rem;
}

.hero-titulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.2rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--verde-escuro);
    margin-bottom: 1.5rem;
}

.hero-titulo em {
    font-style: italic;
    font-weight: 400;
    color: var(--verde);
}

.hero-subtitulo {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--cinza-suave);
    max-width: 420px;
    margin-bottom: 2.5rem;
}

.hero-acoes {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.btn-primario {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--verde);
    color: var(--branco);
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all 0.2s;
}

.btn-primario:hover {
    background: var(--verde-escuro);
    transform: translateY(-2px);
}

.btn-secundario {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--verde);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid var(--verde);
    padding-bottom: 2px;
    transition: all 0.2s;
}

.btn-secundario:hover { color: var(--verde-escuro); }

.hero-right {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-circulo {
    position: absolute;
    width: 520px;
    height: 520px;
    background: var(--verde);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    opacity: 0.15;
}

.hero-foto {
    position: relative;
    z-index: 2;
    height: 85vh;
    max-height: 700px;
    width: auto;
    object-fit: contain;
    object-position: bottom;
}

/* =============================================
   SOBRE
   ============================================= */
.sobre {
    padding: 7rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    background: var(--branco);
}

.sobre-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: 1rem;
}

.sobre-titulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    line-height: 1.2;
    color: var(--verde-escuro);
    margin-bottom: 1.5rem;
}

.sobre-texto {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--cinza-suave);
    margin-bottom: 1.5rem;
}

.sobre-formacao {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.formacao-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.formacao-ano {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--verde);
    letter-spacing: 0.1em;
    min-width: 40px;
    margin-top: 3px;
}

.formacao-desc strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--cinza-texto);
}

.formacao-desc span {
    font-size: 0.82rem;
    color: var(--cinza-suave);
}

.sobre-card-verde {
    background: var(--verde);
    border-radius: 20px;
    padding: 3rem;
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

.sobre-card-verde::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -60px;
    right: -60px;
}

.sobre-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.sobre-cro {
    font-size: 0.8rem;
    opacity: 0.8;
    letter-spacing: 0.1em;
}

/* =============================================
   SERVIÇOS
   ============================================= */
.servicos {
    padding: 7rem 5rem;
    background: var(--bege);
}

.secao-header {
    text-align: center;
    margin-bottom: 4rem;
}

.secao-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: 0.8rem;
}

.secao-titulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--verde-escuro);
    line-height: 1.2;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.servico-card {
    background: var(--branco);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.servico-card:hover {
    border-color: var(--verde-claro);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(95,125,74,0.12);
}

.servico-icone {
    width: 52px;
    height: 52px;
    background: var(--bege);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.servico-nome {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--verde-escuro);
    margin-bottom: 0.6rem;
}

.servico-desc {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--cinza-suave);
}

/* =============================================
   CONVÊNIOS
   ============================================= */
.convenios {
    padding: 5rem;
    background: var(--branco);
    text-align: center;
}

.convenios-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.convenio-card {
    background: var(--branco);
    border: 1px solid var(--bege-escuro);
    border-radius: 16px;
    padding: 1.8rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 240px;
    min-height: 150px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.convenio-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--verde-claro);
}

.convenio-card img {
    max-width: 180px;
    max-height: 80px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.golden-cross-img {
    max-width: 220px !important;
    max-height: 100px !important;
}

.convenio-nome {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--cinza-suave);
    letter-spacing: 0.04em;
    text-align: center;
}

/* =============================================
   LOCALIZAÇÃO
   ============================================= */
.localizacao {
    padding: 7rem 5rem;
    background: var(--bege);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.localizacao-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.localizacao-icone {
    width: 44px;
    height: 44px;
    background: var(--verde);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 1rem;
    flex-shrink: 0;
}

.localizacao-texto strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--verde-escuro);
    margin-bottom: 0.3rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.localizacao-texto span {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--cinza-suave);
    line-height: 1.6;
}

.localizacao-mapa {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    height: 380px;
}

.localizacao-mapa iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* =============================================
   CONTATO
   ============================================= */
.contato {
    padding: 5rem;
    background: var(--verde-escuro);
    text-align: center;
    color: var(--branco);
}

.contato-titulo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 0.8rem;
}

.contato-subtitulo {
    font-size: 0.95rem;
    font-weight: 300;
    opacity: 0.8;
    margin-bottom: 2.5rem;
}

.contato-acoes {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25D366;
    color: var(--branco);
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--branco);
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    transition: all 0.2s;
}

.btn-instagram:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: var(--verde-escuro);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 2rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo-texto {
    display: flex;
    flex-direction: column;
}

.footer-nome {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.02em;
}

.footer-especialidade {
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
}

.footer-dev {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    text-align: right;
}

.footer-dev strong {
    color: rgba(255,255,255,0.6);
}

/* =============================================
   WHATSAPP FIXO
   ============================================= */
.whatsapp-fixo {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: all 0.2s;
}

.whatsapp-fixo:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* =============================================
   RESPONSIVO
   ============================================= */
@media (max-width: 900px) {
    header { padding: 0.8rem 1.5rem; }
    nav { gap: 1rem; }
    nav a { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 6rem 2rem 2rem; }
    .hero-titulo { font-size: 2.8rem; }
    .hero-right { height: 50vh; }
    .hero-foto { height: 100%; }
    .sobre { grid-template-columns: 1fr; padding: 4rem 2rem; gap: 3rem; }
    .servicos { padding: 4rem 2rem; }
    .servicos-grid { grid-template-columns: 1fr; }
    .convenios { padding: 3rem 2rem; }
    .localizacao { grid-template-columns: 1fr; padding: 4rem 2rem; }
    .contato { padding: 4rem 2rem; }
    footer { flex-direction: column; gap: 1rem; padding: 2rem; text-align: center; }
}
