/*
Theme Name: Global Administradora
Theme URI: https://grupoglobal.com.br
Author: Global Administradora de Condomínios
Author URI: https://grupoglobal.com.br
Description: Tema oficial da Global Administradora de Condomínios - Gestão profissional desde 2010
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: global-administradora
Tags: business, responsive, custom-menu, featured-images
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-primary:    #1a2e5a;
    --color-primary-dark: #0f1e3d;
    --color-secondary:  #2563eb;
    --color-secondary-light: #3b82f6;
    --color-accent:     #1d4ed8;
    --color-white:      #ffffff;
    --color-light:      #f4f7fc;
    --color-gray:       #6b7280;
    --color-gray-light: #e5e7eb;
    --color-text:       #1f2937;
    --color-text-light: #374151;
    --font-main:        'Inter', 'Segoe UI', Arial, sans-serif;
    --radius:           8px;
    --radius-lg:        12px;
    --shadow:           0 2px 12px rgba(26,46,90,0.10);
    --shadow-lg:        0 8px 32px rgba(26,46,90,0.18);
    --transition:       0.25s ease;
    --max-width:        1200px;
    --header-height:    72px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

.section-padding-sm {
    padding: 60px 0;
}

/* ============================================================
   TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white p {
    color: var(--color-white);
}

.section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-gray);
    max-width: 600px;
    line-height: 1.7;
}

.highlight {
    color: var(--color-secondary);
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.btn-primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,99,235,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

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

.btn-outline-dark {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
}

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

.btn-whatsapp {
    background: #25d366;
    color: var(--color-white);
    border-color: #25d366;
}

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

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* ============================================================
   HEADER / NAVEGAÇÃO
   ============================================================ */
#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    box-shadow: 0 2px 16px rgba(26,46,90,0.10);
    height: var(--header-height);
    transition: all var(--transition);
}

/* Ajuste para a barra de administração do WordPress */
.admin-bar #site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar #site-header {
        top: 46px;
    }
}

@media screen and (max-width: 600px) {
    .admin-bar #site-header {
        top: 0; /* No mobile pequeno a barra do WP não é fixa */
    }
}

#site-header.scrolled {
    box-shadow: 0 4px 24px rgba(26,46,90,0.18);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 24px;
}

.site-logo img {
    height: 62px;
    width: auto;
}

.site-logo {
    flex-shrink: 0;
}

/* Navegação principal */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius);
    transition: all var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-secondary);
    background: rgba(37,99,235,0.07);
}

.main-nav a.nav-highlight {
    color: var(--color-secondary);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-actions .btn {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.whatsapp-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #25d366;
    border-radius: 50%;
    color: white;
    transition: all var(--transition);
    flex-shrink: 0;
}

.whatsapp-header:hover {
    background: #1ebe5d;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
}

.whatsapp-header svg {
    width: 22px;
    height: 22px;
}

/* Menu hamburger mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

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

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-white);
    z-index: 999;
    padding: 24px;
    overflow-y: auto;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav.open {
    display: flex;
}

.mobile-nav a {
    display: block;
    padding: 14px 16px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius);
    border-bottom: 1px solid var(--color-gray-light);
    transition: all var(--transition);
}

.mobile-nav a:hover {
    color: var(--color-secondary);
    background: rgba(37,99,235,0.05);
}

.mobile-nav .btn {
    margin-top: 16px;
    justify-content: center;
    width: 100%;
}

/* ============================================================
   HERO - SEÇÃO 1
   ============================================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, #1e3a8a 100%);
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,30,61,0.92) 0%, rgba(26,46,90,0.85) 60%, rgba(30,58,138,0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37,99,235,0.25);
    border: 1px solid rgba(59,130,246,0.4);
    color: #93c5fd;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #60a5fa;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

#hero h1 {
    color: var(--color-white);
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 800;
}

#hero h1 .highlight {
    color: #60a5fa;
}

.hero-subtitle {
    color: #bfdbfe;
    font-size: clamp(1rem, 2vw, 1.15rem);
    margin-bottom: 16px;
    line-height: 1.6;
    font-weight: 500;
}

.hero-text {
    color: #93c5fd;
    font-size: 0.95rem;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.hero-stat {
    text-align: left;
}

.hero-stat .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1;
}

.hero-stat .label {
    font-size: 0.8rem;
    color: #93c5fd;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    animation: bounce 2s infinite;
}

.hero-scroll svg {
    width: 20px;
    height: 20px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SEÇÃO 2 - PROBLEMAS
   ============================================================ */
#problemas {
    background: var(--color-light);
}

.problemas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.problemas-content .section-title {
    margin-bottom: 16px;
}

.problemas-content .section-subtitle {
    margin-bottom: 32px;
}

.problemas-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.problema-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--color-secondary);
    transition: all var(--transition);
}

.problema-item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.problema-icon {
    width: 40px;
    height: 40px;
    background: rgba(37,99,235,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-secondary);
}

.problema-icon svg {
    width: 20px;
    height: 20px;
}

.problema-item span {
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
}

.problemas-visual {
    position: relative;
}

.problemas-card {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.problemas-card .big-text {
    font-size: 3.5rem;
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 8px;
}

.problemas-card p {
    color: #bfdbfe;
    font-size: 1rem;
}

.problemas-cta {
    margin-top: 24px;
    padding: 20px;
    background: rgba(37,99,235,0.15);
    border-radius: var(--radius);
    border: 1px solid rgba(59,130,246,0.3);
    text-align: center;
}

.problemas-cta p {
    color: #93c5fd;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

/* ============================================================
   SEÇÃO 3 - DIFERENCIAIS
   ============================================================ */
#diferenciais {
    background: var(--color-white);
}

.diferenciais-header {
    text-align: center;
    margin-bottom: 56px;
}

.diferenciais-header .section-subtitle {
    margin: 0 auto;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.diferencial-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray-light);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.diferencial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.diferencial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.diferencial-card:hover::before {
    opacity: 1;
}

.diferencial-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(59,130,246,0.08));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.diferencial-icon svg {
    width: 28px;
    height: 28px;
}

.diferencial-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.diferencial-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-gray);
}

/* ============================================================
   SEÇÃO 4 - SERVIÇOS
   ============================================================ */
#servicos-home {
    background: var(--color-light);
}

.servicos-header {
    text-align: center;
    margin-bottom: 48px;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.servico-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid var(--color-gray-light);
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.servico-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.servico-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--color-white);
}

.servico-icon svg {
    width: 32px;
    height: 32px;
}

.servico-card h3 {
    font-size: 0.95rem;
    color: var(--color-primary);
    font-weight: 600;
    line-height: 1.3;
}

.servicos-cta {
    text-align: center;
}

/* ============================================================
   SEÇÃO 5 - RESULTADOS
   ============================================================ */
#resultados {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    position: relative;
    overflow: hidden;
}

#resultados::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.resultados-header {
    text-align: center;
    margin-bottom: 56px;
}

.resultados-header .section-title {
    color: var(--color-white);
}

.resultados-header .section-subtitle {
    color: #93c5fd;
    margin: 0 auto;
}

.resultados-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.resultado-item {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.resultado-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.resultado-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #60a5fa;
    line-height: 1;
    margin-bottom: 8px;
}

.resultado-label {
    font-size: 0.9rem;
    color: #bfdbfe;
    line-height: 1.4;
}

/* ============================================================
   SEÇÃO 6 - CTA FINAL
   ============================================================ */
#cta-final {
    background: var(--color-white);
    text-align: center;
}

#cta-final .section-title {
    color: var(--color-primary);
    margin-bottom: 16px;
}

#cta-final p {
    color: var(--color-gray);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
#site-footer {
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand .footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #93c5fd;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 0.8rem;
    color: #60a5fa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px !important;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #93c5fd;
    font-size: 0.9rem;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #93c5fd;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    color: var(--color-secondary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: #93c5fd;
    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: var(--color-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

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

.footer-bottom a:hover {
    color: var(--color-white);
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    transition: all var(--transition);
    animation: float-pulse 3s infinite;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    color: white;
}

@keyframes float-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
    50% { box-shadow: 0 4px 32px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ============================================================
   PAGE HERO (páginas internas)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--color-white);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 16px;
}

.page-hero p {
    color: #bfdbfe;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #93c5fd;
}

.breadcrumb a {
    color: #93c5fd;
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--color-white);
}

.breadcrumb span {
    color: rgba(255,255,255,0.4);
}

/* ============================================================
   FORMULÁRIOS
   ============================================================ */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-gray-light);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ============================================================
   CARDS GENÉRICOS
   ============================================================ */
.card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--color-gray-light);
}

.card-blue {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ============================================================
   UTILITÁRIOS
   ============================================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-4 { gap: 16px; }

/* Divisor */
.divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-light));
    border-radius: 2px;
    margin: 16px 0;
}

.divider-center {
    margin: 16px auto;
}

/* ============================================================
   ANIMAÇÕES DE ENTRADA
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
    .diferenciais-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resultados-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .main-nav,
    .header-actions .btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .problemas-grid {
        grid-template-columns: 1fr;
    }

    .problemas-visual {
        order: -1;
    }

    .diferenciais-grid {
        grid-template-columns: 1fr;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resultados-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        justify-content: center;
    }

    .hero-stats {
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .resultados-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 16px;
    }

    .hero-stat .number {
        font-size: 1.4rem;
    }
}

/* ============================================================
   GRIDS RESPONSIVOS — PÁGINAS INTERNAS
   ============================================================ */
.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-5col {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.grid-foto {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 1024px) {
    .grid-5col {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .grid-3col {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .grid-5col {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .grid-foto {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    /* Cards da área do morador */
    .morador-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px;
    }

    /* Serviços detalhados */
    .servico-detalhe {
        margin-bottom: 48px !important;
        padding-bottom: 48px !important;
    }

    /* Esconder imagens extras do mapa em mobile para leveza */
    .hide-mobile {
        display: none;
    }
}

@media (max-width: 480px) {
    .grid-foto {
        grid-template-columns: 1fr;
    }

    .grid-5col {
        grid-template-columns: 1fr 1fr;
    }

    .page-hero {
        padding: 80px 0 40px;
    }
}
