/* ─── VARIÁVEIS ─── */
:root {
    --navy:       #1E2D4A;
    --navy-light: #263650;
    --navy-dark:  #14203A;
    --gold:       #9A7B3C;
    --gold-light: #B8964A;
    --gold-pale:  #F5EDD8;
    --white:      #FFFFFF;
    --light:      #F5F7FA;
    --light-2:    #EEF1F6;
    --border:     #DDE2EA;
    --text:       #1E2D4A;
    --text-body:  #4A5568;
    --text-muted: #8A96A8;
    --font-h:     'Montserrat', sans-serif;
    --font-b:     'Open Sans', sans-serif;
    --radius:     8px;
    --t:          0.3s ease;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background-color: var(--white);
    color: var(--text-body);
    font-family: var(--font-b);
    line-height: 1.7;
    font-size: 16px;
}
h1, h2, h3, h4 { font-family: var(--font-h); line-height: 1.2; color: var(--navy); }
a { text-decoration: none; }
img { display: block; max-width: 100%; }
.gold  { color: var(--gold); }
.navy  { color: var(--navy); }

/* ─── CONTAINER ─── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ─── BOTÕES ─── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--gold);
    color: #fff;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: background-color var(--t), transform var(--t);
    letter-spacing: 0.4px;
}
.btn-primary:hover { background-color: var(--gold-light); transform: translateY(-2px); }

.btn-navy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--navy);
    color: #fff;
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: background-color var(--t), transform var(--t);
}
.btn-navy:hover { background-color: var(--navy-light); transform: translateY(-2px); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--border);
    color: var(--text-body);
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius);
    transition: all var(--t);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius);
    transition: all var(--t);
}
.btn-outline-white:hover { border-color: #fff; background-color: rgba(255,255,255,0.1); }

/* ─── SECTION TAG ─── */
.section-tag {
    display: inline-block;
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}
.section-tag--light { color: rgba(201,162,85,0.9); }

/* ─── SECTION HEADER ─── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(26px, 4vw, 40px); margin-bottom: 16px; }
.section-header p  { color: var(--text-muted); font-size: 17px; }
.section-header--light h2 { color: #fff; }
.section-header--light p  { color: rgba(255,255,255,0.7); }

/* ─── MARCA D'ÁGUA TEXTO ─── */
.section-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-h);
    font-size: clamp(70px, 13vw, 160px);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(30, 45, 74, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}
.section-watermark--light {
    color: rgba(255,255,255,0.05);
}

/* ═══════════════════════════════
   HEADER
═══════════════════════════════ */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background-color: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 12px rgba(30,45,74,0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 16px;
}
.logo { height: 56px; width: auto; object-fit: contain; }

.nav { display: flex; gap: 22px; }
.nav a {
    color: var(--text-body);
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color var(--t);
    white-space: nowrap;
}
.nav a:hover { color: var(--gold); }

.btn-whatsapp-header {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--navy);
    color: #fff;
    font-family: var(--font-h);
    font-size: 12px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: var(--radius);
    transition: all var(--t);
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-whatsapp-header:hover { background-color: var(--navy-light); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--navy);
    border-radius: 2px;
    transition: all var(--t);
}

/* ═══════════════════════════════
   HERO — fundo navy escuro
═══════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #2A3D5F 100%);
}

/* Marca d'água da logo no hero */
.hero-watermark {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 600px;
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
    filter: grayscale(1) brightness(3);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding-top: 48px;
    padding-bottom: 80px;
}

.hero-tag {
    display: inline-block;
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    padding: 6px 16px;
    border: 1px solid rgba(154,123,60,0.5);
    border-radius: 20px;
}

.hero-title {
    font-size: clamp(38px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.07;
    margin-bottom: 24px;
    color: #fff;
}
.hero-title .gold { color: var(--gold-light); }

.hero-subtitle {
    font-size: clamp(16px, 2vw, 19px);
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin-bottom: 44px;
    line-height: 1.65;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.4);
    font-size: 18px;
    animation: bounce 2.2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(9px); }
}

/* ═══════════════════════════════
   PILARES — fundo claro
═══════════════════════════════ */
.pilares {
    background-color: var(--light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pilares-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.pilar-card {
    text-align: center;
    padding: 52px 36px;
    border-right: 1px solid var(--border);
    background-color: var(--white);
    transition: background-color var(--t);
}
.pilar-card:last-child { border-right: none; }
.pilar-card:hover { background-color: var(--gold-pale); }
.pilar-icon { font-size: 38px; color: var(--gold); margin-bottom: 20px; }
.pilar-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.pilar-card p  { color: var(--text-muted); font-size: 15px; line-height: 1.65; }

/* ═══════════════════════════════
   SOBRE — fundo branco
═══════════════════════════════ */
.sobre { padding: 100px 0; background-color: var(--white); }
.sobre-grid { display: grid; grid-template-columns: 360px 1fr; gap: 72px; align-items: center; }

.foto-placeholder {
    aspect-ratio: 4/5;
    background-color: var(--light-2);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
}
.foto-placeholder i    { font-size: 72px; color: var(--border); }
.foto-placeholder span { font-size: 13px; font-family: var(--font-h); letter-spacing: 0.5px; }

/* Quando tiver foto real, substitua o .foto-placeholder por:
   <img src="foto-reginaldo.jpg" alt="Reginaldo dos Reis Sobrinho"
        style="width:100%;aspect-ratio:4/5;object-fit:cover;border-radius:8px;">
*/

.sobre-texto h2 { font-size: clamp(26px, 3.5vw, 36px); margin: 10px 0 24px; }
.sobre-texto > p { color: var(--text-body); font-size: 16px; margin-bottom: 16px; }

.sobre-missao { margin: 32px 0; display: flex; flex-direction: column; gap: 16px; }
.missao-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background-color: var(--light);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
}
.missao-item i { font-size: 20px; color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.missao-item strong {
    display: block;
    font-family: var(--font-h);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--navy);
    margin-bottom: 6px;
}
.missao-item p { color: var(--text-body); font-size: 14px; line-height: 1.6; margin: 0; }

.formacao {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
    padding-top: 20px;
    margin-top: 4px;
}
.formacao i { color: var(--gold); }

/* ═══════════════════════════════
   PROFISSIONAIS / QUEM ATENDEMOS
═══════════════════════════════ */
.profissionais {
    padding: 100px 0;
    background-color: var(--navy);
    position: relative;
    overflow: hidden;
}

.profissionais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.prof-card {
    border-radius: var(--radius);
    overflow: hidden;
    background-color: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform var(--t), box-shadow var(--t);
}
.prof-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.prof-foto {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    position: relative;
}
.prof-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
    display: block;
}
.prof-card:hover .prof-foto img { transform: scale(1.05); }

.prof-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(20,32,58,0.95) 0%, transparent 100%);
}

.prof-info {
    padding: 20px;
}
.prof-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.prof-info p {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}
.prof-tag {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--font-h);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-light);
    border-top: 1px solid rgba(154,123,60,0.35);
    padding-top: 10px;
    width: 100%;
}

/* ═══════════════════════════════
   SERVIÇOS — fundo claro
═══════════════════════════════ */
.servicos {
    padding: 100px 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}
.servico-card {
    background-color: var(--white);
    padding: 32px 24px;
    transition: background-color var(--t);
}
.servico-card:hover { background-color: var(--gold-pale); }
.servico-icon { font-size: 30px; color: var(--gold); margin-bottom: 16px; }
.servico-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; color: var(--navy); }
.servico-card p  { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.servicos-cta { text-align: center; position: relative; z-index: 1; }

/* ═══════════════════════════════
   CASES — fundo branco
═══════════════════════════════ */
.cases { padding: 100px 0; background-color: var(--white); }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.case-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, var(--gold), var(--navy));
    transition: height 0.4s ease;
}
.case-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(30,45,74,0.1); }
.case-card:hover::before { height: 100%; }
.case-icon { font-size: 30px; color: var(--gold); margin-bottom: 16px; }
.case-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: var(--navy); }
.case-card p  { color: var(--text-body); font-size: 14px; line-height: 1.6; }

/* ═══════════════════════════════
   VALORES — fundo navy
═══════════════════════════════ */
.valores {
    padding: 80px 0;
    background-color: var(--navy);
    position: relative;
    overflow: hidden;
}
.valores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; z-index: 1; }
.valor-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    transition: background-color var(--t), border-color var(--t);
}
.valor-item:hover { background-color: rgba(255,255,255,0.09); border-color: rgba(154,123,60,0.4); }
.valor-item i    { font-size: 22px; color: var(--gold-light); flex-shrink: 0; }
.valor-item span { font-family: var(--font-h); font-size: 14px; font-weight: 600; color: #fff; line-height: 1.35; }

/* ═══════════════════════════════
   BLOG — fundo claro
═══════════════════════════════ */
.blog {
    padding: 100px 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}
.blog-card {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.blog-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(30,45,74,0.1); }

.blog-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
}
.blog-thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-2) 0%, var(--light) 100%);
    border-bottom: 1px solid var(--border);
}
.blog-thumb--placeholder i { font-size: 48px; color: var(--border); }
.blog-thumb--2 { background: linear-gradient(135deg, #eef2f5 0%, #e8edf2 100%) !important; }
.blog-thumb--3 { background: linear-gradient(135deg, #f0ede8 0%, #ece8e0 100%) !important; }

.blog-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background-color: var(--gold);
    color: #fff;
    font-family: var(--font-h);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}
.blog-body { padding: 24px; }
.blog-title { font-size: 16px; font-weight: 700; line-height: 1.4; margin-bottom: 12px; color: var(--navy); transition: color var(--t); }
.blog-card:hover .blog-title { color: var(--gold); }
.blog-excerpt { color: var(--text-muted); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.blog-date { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.blog-link { font-family: var(--font-h); font-size: 12px; font-weight: 700; color: var(--gold); display: flex; align-items: center; gap: 6px; transition: gap var(--t); }
.blog-link:hover { gap: 10px; }
.content-cta { text-align: center; position: relative; z-index: 1; }

/* ═══════════════════════════════
   VÍDEOS — fundo branco
═══════════════════════════════ */
.videos {
    padding: 100px 0;
    background-color: var(--white);
    border-top: 1px solid var(--border);
}
.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.video-card {
    background-color: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}
.video-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(30,45,74,0.1); }

.video-thumb {
    width: 100%;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.video-embed { width: 100%; aspect-ratio: 16/9; position: relative; }
.video-embed iframe { width: 100%; height: 100%; border: none; display: block; }

.video-thumb--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
    border-bottom: 1px solid var(--border);
}
.video-thumb--2 { background: linear-gradient(145deg, #1a2a40 0%, #223352 100%) !important; }
.video-thumb--3 { background: linear-gradient(145deg, #1e3040 0%, #263d52 100%) !important; }

.video-play-btn {
    width: 64px;
    height: 64px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t);
}
.video-play-btn i { font-size: 22px; color: #fff; margin-left: 4px; }
.video-card:hover .video-play-btn { background-color: var(--gold-light); transform: scale(1.08); }

.video-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background-color: rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.8);
    font-family: var(--font-h);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}
.video-info { padding: 24px; }
.video-cat  { font-family: var(--font-h); font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
.video-info h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; color: var(--navy); }
.video-info p  { color: var(--text-muted); font-size: 13px; line-height: 1.6; }

/* ═══════════════════════════════
   GALERIA — fundo claro
═══════════════════════════════ */
.galeria {
    padding: 100px 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 48px;
    position: relative;
    z-index: 1;
}
.thumb-card { display: flex; flex-direction: column; gap: 8px; }
.thumb-img {
    aspect-ratio: 1/1;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
    cursor: pointer;
    background-color: var(--white);
}
.thumb-img--placeholder i { font-size: 28px; color: var(--border); }
.thumb-img--2 { background-color: var(--light-2) !important; }
.thumb-img--3 { background-color: #ede8f0 !important; }
.thumb-img img { width: 100%; height: 100%; object-fit: cover; }
.thumb-img:hover { border-color: var(--gold); transform: scale(1.04); box-shadow: 0 4px 16px rgba(30,45,74,0.12); }
.thumb-label { font-family: var(--font-h); font-size: 10px; font-weight: 600; letter-spacing: 0.5px; color: var(--text-muted); text-align: center; }

/* ═══════════════════════════════
   CONTATO — fundo navy
═══════════════════════════════ */
.contato {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.contato-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }
.contato-inner h2 { font-size: clamp(26px, 4vw, 40px); margin: 16px 0 20px; color: #fff; }
.contato-inner > p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 48px; }

.btn-whatsapp-grande {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background-color: #25D366;
    color: white;
    padding: 20px 40px;
    border-radius: var(--radius);
    font-family: var(--font-h);
    font-weight: 700;
    font-size: 17px;
    transition: all var(--t);
    line-height: 1.3;
}
.btn-whatsapp-grande:hover {
    background-color: #1ebf59;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,211,102,0.4);
}
.btn-whatsapp-grande i     { font-size: 36px; flex-shrink: 0; }
.btn-whatsapp-grande small { display: block; font-weight: 400; font-size: 13px; opacity: 0.85; margin-top: 3px; }

/* ═══════════════════════════════
   FOOTER — fundo navy escuro
═══════════════════════════════ */
.footer {
    background-color: var(--navy-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 48px 0 32px;
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.footer-logo  { height: 60px; width: auto; object-fit: contain; }
.footer-info p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }
.footer-links  { display: flex; gap: 28px; }
.footer-links a { color: rgba(255,255,255,0.4); font-family: var(--font-h); font-size: 12px; font-weight: 600; letter-spacing: 0.5px; transition: color var(--t); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,0.25); font-size: 12px; margin-top: 8px; }

/* ═══════════════════════════════
   WHATSAPP FLUTUANTE
═══════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 58px;
    height: 58px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: all var(--t);
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }

/* ═══════════════════════════════
   RESPONSIVO — TABLET (1024px)
═══════════════════════════════ */
@media (max-width: 1024px) {
    .sobre-grid         { grid-template-columns: 280px 1fr; gap: 48px; }
    .profissionais-grid { grid-template-columns: repeat(2, 1fr); }
    .servicos-grid      { grid-template-columns: repeat(2, 1fr); }
    .cases-grid         { grid-template-columns: repeat(2, 1fr); }
    .valores-grid       { grid-template-columns: repeat(2, 1fr); }
    .blog-grid          { grid-template-columns: repeat(2, 1fr); }
    .videos-grid        { grid-template-columns: repeat(2, 1fr); }
    .galeria-grid       { grid-template-columns: repeat(4, 1fr); }
}

/* ═══════════════════════════════
   RESPONSIVO — MOBILE (768px)
═══════════════════════════════ */
@media (max-width: 768px) {
    .nav {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background-color: var(--white);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 24px rgba(30,45,74,0.1);
    }
    .nav.open { display: flex; }
    .nav a    { padding: 16px 24px; border-bottom: 1px solid var(--border); font-size: 13px; color: var(--navy); }
    .btn-whatsapp-header { display: none; }
    .menu-toggle { display: flex; }

    .hero-watermark     { width: 90%; right: -25%; opacity: 0.04; }
    .hero-btns          { flex-direction: column; }

    .pilares-grid { grid-template-columns: 1fr; }
    .pilar-card   { border-right: none; border-bottom: 1px solid var(--border); }
    .pilar-card:last-child { border-bottom: none; }

    .sobre-grid         { grid-template-columns: 1fr; gap: 40px; }
    .sobre-foto         { max-width: 240px; margin: 0 auto; }
    .profissionais-grid { grid-template-columns: repeat(2, 1fr); }
    .servicos-grid      { grid-template-columns: 1fr; }
    .cases-grid         { grid-template-columns: 1fr; }
    .valores-grid       { grid-template-columns: 1fr; }
    .blog-grid          { grid-template-columns: 1fr; }
    .videos-grid        { grid-template-columns: 1fr; }
    .galeria-grid       { grid-template-columns: repeat(3, 1fr); }

    .btn-whatsapp-grande { padding: 18px 24px; font-size: 15px; gap: 14px; }
    .btn-whatsapp-grande i { font-size: 28px; }
}

@media (max-width: 480px) {
    .profissionais-grid { grid-template-columns: 1fr; }
    .galeria-grid       { grid-template-columns: repeat(2, 1fr); }
    .section-watermark  { font-size: 50px; }
}
