/* 
   Website Institucional - Psicóloga Maristela Lage
   Identidade Visual: Moderna, Elegante, Acolhedora, Minimalista
   Paleta: Branco, Off-White, Azul Suave, Cinza e detalhes em Rosa (derivado do logotipo)
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Custom Properties --- */
:root {
    --font-primary: 'Inter', sans-serif;
    
    /* Cores da Paleta */
    --bg-white: #ffffff;
    --bg-offwhite: #f8f8f8;
    --bg-card: #ffffff;
    --primary: #4f7ea8;
    --primary-hover: #3b668d;
    --primary-light: #f0f5fa;
    --accent-pink: #e85b85;
    --accent-pink-hover: #cf4770;
    --accent-pink-light: #fdf2f5;
    --text-primary: #2c3e50; /* Cinza azulado escuro para alto contraste e sofisticação */
    --text-secondary: #5c5c5c;
    --border-color: #ececec;
    
    /* Sombras e Bordas */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 30px rgba(79, 126, 168, 0.08);
    --shadow-lg: 0 20px 40px rgba(79, 126, 168, 0.12);
    
    /* Layout */
    --container-width: 1200px;
    --header-height: 80px;
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
}

h1 {
    font-size: 2.25rem; /* 36px */
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
}

h2 {
    font-size: 1.875rem; /* 30px */
    letter-spacing: -0.01em;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
}

/* Detalhe elegante embaixo de h2 */
h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.375rem; /* 22px */
    margin-bottom: 0.75rem;
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

p.lead {
    font-size: 1.125rem;
    line-height: 1.7;
}

/* --- Layout Utility --- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.bg-light {
    background-color: var(--bg-offwhite);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 50px;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn svg,
.btn img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(79, 126, 168, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 126, 168, 0.3);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: #1ebd57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-pink {
    background-color: var(--accent-pink);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(232, 91, 133, 0.2);
}

.btn-pink:hover {
    background-color: var(--accent-pink-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 91, 133, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: none;
    border: none;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 50%;
    z-index: 999;
    transition: var(--transition);
    overflow: hidden;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1010;
    transition: var(--transition);
}

.header.scrolled {
    height: 70px;
    box-shadow: var(--shadow-sm);
}

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 44px;
}

/* Navigation Links */
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.75rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
}

.header-cta .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    z-index: 1010;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 5rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at 90% 10%, rgba(79, 126, 168, 0.05) 0%, rgba(255, 255, 255, 0) 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
    aspect-ratio: 3/4;
    object-fit: cover;
    position: relative;
    z-index: 2;
}

/* Frame decorativo no Hero */
.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-lg);
    z-index: 1;
}

/* --- Section: Sobre --- */
.sobre-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: start;
}

.sobre-info {
    font-size: 1rem;
}

.sobre-crp {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: -1.5rem;
    margin-bottom: 2rem;
}

.sobre-text p {
    margin-bottom: 1.5rem;
}

.sobre-parental-card {
    background-color: var(--accent-pink-light);
    border-left: 4px solid var(--accent-pink);
    padding: 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 2rem 0;
}

.sobre-parental-card h4 {
    color: var(--accent-pink-hover);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sobre-parental-card h4 svg {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.sobre-parental-card p {
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 0;
}

/* Galeria do consultório no Sobre */
.gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gallery-main-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.gallery-sub-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-sub-img:hover, .gallery-main-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* --- Section: Objetivo do Trabalho --- */
.objetivo-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

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

.objetivo-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.objetivo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.objetivo-card-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.objetivo-card-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

.objetivo-card.pink-theme .objetivo-card-icon {
    background-color: var(--accent-pink-light);
    color: var(--accent-pink);
}

.objetivo-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0;
}

/* --- Section: Atendimento --- */
.atendimento-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3.5rem;
}

.atendimento-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.atendimento-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.atendimento-card-header {
    margin-bottom: 2rem;
}

.atendimento-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.atendimento-icon svg {
    width: 40px;
    height: 40px;
    display: block;
}

.atendimento-card.accent-pink-theme .atendimento-icon {
    color: var(--accent-pink);
}

.atendimento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.atendimento-card p {
    margin-bottom: 0;
}

.atendimento-card-bullets {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.atendimento-card-bullets li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.atendimento-card-bullets li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    flex-shrink: 0;
}

.atendimento-card.accent-pink-theme .atendimento-card-bullets li::before {
    color: var(--accent-pink);
}

.atendimento-info-box {
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px dashed var(--primary);
}

.atendimento-info-box p {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0;
}

/* --- Section: Diferenciais --- */
.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.diferencial-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.diferencial-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.diferencial-icon svg {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

.diferencial-card.pink-theme .diferencial-icon {
    background-color: var(--accent-pink-light);
    color: var(--accent-pink);
}

.diferencial-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.diferencial-card p {
    font-size: 0.925rem;
    margin-bottom: 0;
}

/* --- Section: FAQ --- */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-item.active {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.faq-item.active .faq-question {
    color: var(--primary);
    border-bottom: 1px solid var(--border-color);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--accent-pink);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: var(--bg-offwhite);
}

.faq-answer-inner {
    padding: 1.5rem 2rem;
    font-size: 0.975rem;
    color: var(--text-secondary);
}

.faq-answer-inner p {
    margin-bottom: 0;
}

/* --- Section: Localização e Contato --- */
.localizacao-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: stretch;
}

.contato-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contato-header {
    margin-bottom: 2rem;
}

.contato-crp {
    font-size: 0.9rem;
    color: var(--accent-pink);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.contato-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

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

.contato-item-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contato-item-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.contato-item-text h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contato-item-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contato-actions {
    display: flex;
    gap: 1rem;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
    border: 1px solid var(--border-color);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* --- CTA Final --- */
.cta-final {
    background-color: var(--primary-light);
    background-image: radial-gradient(circle at 10% 10%, rgba(79, 126, 168, 0.06) 0%, rgba(255, 255, 255, 0) 80%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    padding: 6rem 0;
}

.cta-final-content {
    max-width: 650px;
    margin: 0 auto;
}

.cta-final-logo {
    width: 70px;
    height: auto;
    margin: 0 auto 1.5rem;
    display: block;
}

.cta-final h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-final h2::after {
    display: none;
}

.cta-final p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

.cta-final .btn {
    padding: 1.125rem 3rem;
    font-size: 1.05rem;
}

/* --- Privacy Page Styles --- */
.privacy-body {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 5rem;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-content h2 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.privacy-content h2::after {
    bottom: -4px;
    width: 30px;
    height: 2px;
}

.privacy-content p, .privacy-content ul {
    margin-bottom: 1.25rem;
    font-size: 0.975rem;
    color: var(--text-secondary);
}

.privacy-content ul {
    padding-left: 1.5rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

/* --- Footer --- */
.footer {
    background-color: #1e2a38; /* Fundo escuro premium para contraste com a paleta clara */
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
    font-size: 0.9rem;
    border-top: 4px solid var(--primary);
}

.footer h3, .footer h4 {
    color: var(--bg-white);
}

.footer h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 25px;
    height: 2px;
    background-color: var(--primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col-brand h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.footer-crp {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-col-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--bg-white);
    padding-left: 4px;
}

.footer-contatos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contato-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.footer-contato-item svg,
.footer-contato-item img {
    margin-top: 3px;
    color: var(--primary);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    display: block;
}

.footer-contato-item p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.footer-social-btn svg,
.footer-social-btn img {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

.footer-social-btn:hover {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.footer-social-btn.instagram-btn:hover {
    background-color: var(--accent-pink);
}

.footer-social-btn.whatsapp-btn:hover {
    background-color: #25d366;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4); /* soft neutral color */
}

.footer-bottom a.ulocal-link {
    color: rgba(255, 255, 255, 0.4); /* neutral color for ULOCAL link */
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.footer-bottom a.ulocal-link:hover {
    color: rgba(255, 255, 255, 0.8); /* hover color for ULOCAL link */
}

/* --- Responsive Styles (Mobile First / Media Queries) --- */

@media (max-width: 1024px) {
    .hero-grid {
        gap: 2.5rem;
    }
    
    .sobre-grid {
        gap: 2.5rem;
    }
    
    .objetivo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Typo */
    h1 {
        font-size: 1.85rem;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    /* Header & Navigation */
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #ffffff !important;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.08);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2.5rem 3rem;
        gap: 3rem;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1005;
    }
    
    .nav.open {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 1.1rem;
        display: block;
        width: 100%;
        padding: 0.5rem 0;
    }
    
    .header-cta {
        width: 100%;
    }
    
    .header-cta .btn {
        width: 100%;
        padding: 0.875rem;
    }
    
    /* Active menu state toggle animation */
    .menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Overlay background when menu open */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(44, 62, 80, 0.4);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1001;
        backdrop-filter: blur(4px);
    }
    
    .menu-overlay.open {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hero */
    .hero {
        padding-top: calc(var(--header-height) + 1.5rem);
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        order: 2;
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* Sobre */
    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-wrapper {
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
    
    /* Atendimento */
    .atendimento-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .atendimento-card {
        padding: 2.5rem 1.75rem;
    }
    
    /* Localização e Contato */
    .localizacao-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .map-wrapper {
        height: 350px;
    }
    
    .contato-actions {
        flex-direction: column;
    }
    
    .contato-actions .btn {
        width: 100%;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 600px) {
    .hero-actions .btn {
        width: 100%;
    }
    
    .objetivo-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .diferenciais-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .cta-final h2 {
        font-size: 1.75rem;
    }
}

/* --- Scroll Animation Classes --- */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    visibility: hidden;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}
