/* ===== CSS Variables ===== */
:root {
    /* Colors - Design Premium */
    --color-primary: #001f3f;
    --color-secondary: #003d7a;
    --color-accent: #00d084;
    --color-text-primary: #ffffff;
    --color-text-secondary: #0a2540;
    --color-text-muted: #4a5568;
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8f9fa;
    --color-bg-dark: #001529;
    --color-shadow-blue: rgba(0, 31, 63, 0.3);
    --color-border: #e2e8f0;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Layout */
    --container-width: 1200px;
    --container-padding: 1.5rem;
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 31, 63, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 31, 63, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 31, 63, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 31, 63, 0.1);
    --shadow-title: 0 2px 10px rgba(0, 31, 63, 0.4);
}

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

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

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-secondary);
    background-color: var(--color-bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

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

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== Grid System ===== */
.grid {
    display: grid;
    gap: var(--spacing-xl);
}

/* ===== Section ===== */
.section {
    padding: var(--spacing-3xl) 0;
}

/* Hero section não herda padding da classe section */
.section.hero,
.hero.section {
    padding: calc(70px + var(--spacing-sm)) 0 0 !important;
}

.section__title {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    text-shadow: var(--shadow-title);
    text-align: center;
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

/* Títulos em seções com fundo claro */
.section:not(.hero) .section__title {
    color: var(--color-text-secondary);
    text-shadow: 0 2px 8px rgba(0, 31, 63, 0.15);
}

.section__subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-medium);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    line-height: 1.5;
}

/* Subtítulos em seções hero (fundo escuro) mantêm cor clara */
.hero .section__subtitle {
    color: rgba(255, 255, 255, 0.95);
}

/* Garantir contraste adequado em seções com fundo claro */
.bairros .section__subtitle,
.servicos .section__subtitle,
.depoimentos .section__subtitle,
.avisos .section__subtitle {
    color: var(--color-text-secondary);
}

.section__description {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05), 0 4px 24px rgba(0, 31, 63, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 208, 132, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: var(--spacing-md);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: var(--transition);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    position: relative;
}

/* Garantir contraste adequado e acessibilidade - WCAG AA/AAA */
.nav__logo:focus-visible {
    outline: 3px solid #0ea5e9;
    outline-offset: 2px;
    background-color: rgba(14, 165, 233, 0.1);
}

.nav__logo::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(14, 165, 233, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav__logo:hover {
    transform: translateY(-1px);
}

.nav__logo:hover::before {
    opacity: 1;
}

.logo-emoji {
    font-size: var(--font-size-xl);
    line-height: 1;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: pulse-emoji 2s ease-in-out infinite;
    transition: all 0.3s ease;
    /* Garantir que emoji seja sempre visível */
    opacity: 1;
    font-style: normal;
}

.nav__logo:hover .logo-emoji {
    filter: drop-shadow(0 3px 8px rgba(14, 165, 233, 0.4));
    transform: scale(1.1);
}

/* Acessibilidade: reduzir animação para quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
    .logo-emoji {
        animation: none;
    }
    
    .nav__logo:hover .logo-emoji {
        transform: none;
    }
}

@keyframes pulse-emoji {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    gap: 0;
    font-weight: var(--font-weight-bold);
}

.logo-line1,
.logo-line2 {
    display: block;
    white-space: nowrap;
    color: #001f3f; /* Azul escuro - contraste 12.6:1 com fundo branco (WCAG AAA) */
    font-size: var(--font-size-xl);
    letter-spacing: 0.8px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 1px 3px rgba(0, 31, 63, 0.1);
}

/* Gradiente apenas como aprimoramento visual - não afeta acessibilidade */
@supports (background-clip: text) or (-webkit-background-clip: text) {
    .logo-line1,
    .logo-line2 {
        background: linear-gradient(135deg, #001f3f 0%, #003d7a 30%, #0ea5e9 70%, #0284c7 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: #001f3f; /* Fallback - mantém contraste mesmo sem suporte */
    }
}

.logo-line1 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
}

.logo-line2 {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    opacity: 0.9;
    margin-top: -3px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #003d7a; /* Azul médio para linha 2 - contraste 8.2:1 (WCAG AA) */
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
    .logo-line2 {
        background: linear-gradient(135deg, #003d7a 0%, #0ea5e9 50%, #0284c7 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: #003d7a; /* Fallback */
    }
}

.nav__logo:hover .logo-line1,
.nav__logo:hover .logo-line2 {
    text-shadow: 0 2px 6px rgba(14, 165, 233, 0.3);
    transform: translateY(-1px);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
    .nav__logo:hover .logo-line1,
    .nav__logo:hover .logo-line2 {
        background: linear-gradient(135deg, #001f3f 0%, #2563eb 30%, #3b82f6 70%, #60a5fa 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .nav__logo:hover .logo-line1 {
        color: #001f3f; /* Fallback */
    }
    
    .nav__logo:hover .logo-line2 {
        color: #003d7a; /* Fallback */
    }
}

.nav__logo strong {
    color: #001f3f; /* Contraste garantido */
    font-weight: var(--font-weight-bold);
    letter-spacing: 1.5px;
    font-size: 1.1em;
    text-shadow: 0 1px 3px rgba(0, 31, 63, 0.2);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
    .nav__logo strong {
        background: linear-gradient(135deg, #001f3f 0%, #0ea5e9 50%, #0284c7 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: #001f3f; /* Fallback sempre visível */
    }
}

/* Em telas menores, manter em uma linha */
@media screen and (max-width: 968px) {
    .logo-text {
        flex-direction: row;
        gap: var(--spacing-xs);
        align-items: baseline;
    }
    
    .logo-line1::after {
        content: ' ';
    }
    
    .logo-line2 {
        display: inline;
        font-size: var(--font-size-xs);
        margin-top: 0;
        letter-spacing: 0.8px;
    }
    
    .logo-line1 {
        font-size: var(--font-size-base);
    }
    
    .logo-emoji {
        font-size: var(--font-size-lg);
    }
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav__list {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.nav__link {
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    position: relative;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    letter-spacing: 0.01em;
}

.nav__link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 208, 132, 0.08) 0%, rgba(0, 208, 132, 0.04) 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--border-radius);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 16px);
    height: 1px;
    background: #00d084;
    border-radius: 1px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    box-shadow: 0 0 4px rgba(0, 208, 132, 0.6);
}

.nav__link:hover {
    color: var(--color-primary);
    transform: translateY(-1px);
}

.nav__link:hover::before {
    opacity: 1;
}

.nav__link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav__link.active {
    color: var(--color-primary);
    font-weight: var(--font-weight-semibold);
}

.nav__link.active::before {
    opacity: 0;
}

.nav__link.active::after {
    transform: translateX(-50%) scaleX(1);
    background: #00d084;
    box-shadow: 0 0 4px rgba(0, 208, 132, 0.6);
}

.nav__close,
.nav__toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--border-radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: none;
    position: relative;
    z-index: 1001;
}

.nav__close:hover,
.nav__toggle:hover {
    color: var(--color-primary);
    background-color: rgba(0, 31, 63, 0.05);
    transform: scale(1.05);
}

.nav__close:active,
.nav__toggle:active {
    transform: scale(0.95);
}

.icon-menu::before {
    content: "☰";
}

.icon-close::before {
    content: "✕";
}

/* Status Indicator */
.status-indicator {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    background-color: var(--color-bg-secondary);
    cursor: help;
    position: relative;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-accent);
    animation: pulse 2s infinite;
}

.status-indicator.offline .status-dot {
    background-color: #ef4444;
}

.status-text {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.status-tooltip {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--border-radius);
    font-size: var(--font-size-xs);
    white-space: normal;
    max-width: 200px;
    width: max-content;
    min-width: 160px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    line-height: 1.5;
    text-align: center;
    word-wrap: break-word;
}

.status-indicator:hover .status-tooltip {
    opacity: 1;
}

.status-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-bottom-color: var(--color-bg-dark);
}

/* Garantir que o tooltip não ultrapasse as laterais */
@media screen and (max-width: 768px) {
    .status-tooltip {
        left: auto;
        right: 0;
        transform: none;
        max-width: calc(100vw - 2rem);
        min-width: auto;
    }
    
    .status-tooltip::after {
        left: auto;
        right: 20px;
        transform: none;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, #00b873 100%);
    color: var(--color-bg-primary);
    box-shadow: 0 4px 15px rgba(0, 208, 132, 0.4);
    border: none;
    font-weight: var(--font-weight-bold);
    text-shadow: none;
    position: relative;
    overflow: hidden;
    animation: btn-glow 3s ease-in-out infinite;
}

.btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
    z-index: 1;
}

.btn--primary > * {
    position: relative;
    z-index: 2;
}

.btn--primary:hover::before {
    left: 100%;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #00b873 0%, var(--color-accent) 100%);
    box-shadow: 0 6px 25px rgba(0, 208, 132, 0.7);
    transform: translateY(-3px) scale(1.02);
    animation: none;
}

@keyframes btn-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 208, 132, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(0, 208, 132, 0.6);
    }
}

.btn--outline {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-text-primary);
    border: 2px solid var(--color-text-primary);
    font-weight: var(--font-weight-bold);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-shadow: none;
}

.btn--outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.25);
    transition: width 0.4s ease;
    z-index: 0;
}

.btn--outline span,
.btn--outline {
    position: relative;
    z-index: 1;
}

.btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--color-text-secondary);
    border-color: var(--color-text-primary);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn--outline:hover::before {
    width: 100%;
}

.btn--large {
    padding: var(--spacing-md) var(--spacing-2xl);
    font-size: var(--font-size-lg);
    border-radius: var(--border-radius-lg);
    letter-spacing: 0.5px;
}

.nav__cta {
    background-color: var(--color-accent);
    color: var(--color-bg-primary);
    font-weight: var(--font-weight-bold);
    animation: nav-glow 3.5s ease-in-out infinite;
}

.nav__cta:hover {
    background-color: #00b873;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 208, 132, 0.5);
    animation: none;
}

@keyframes nav-glow {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(0, 208, 132, 0.3);
    }
    50% {
        box-shadow: 0 2px 12px rgba(0, 208, 132, 0.5);
    }
}

.whatsapp-icon {
    font-size: var(--font-size-lg);
}

/* ===== Hero Section ===== */
.hero {
    min-height: calc(100vh - 70px);
    max-height: 100vh;
    padding: calc(70px + var(--spacing-sm)) 0 0 !important;
    margin: 0 !important;
    padding-bottom: 0 !important;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-text-primary);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero__container {
    position: relative;
    z-index: 1;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-xl);
    width: 100%;
    padding: var(--spacing-md) 0 var(--spacing-xl);
}

.hero__title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    text-shadow: var(--shadow-title);
    line-height: 1.15;
    margin-bottom: var(--spacing-sm);
}

.hero__title .highlight {
    color: var(--color-accent);
}

.hero__description {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.hero__description strong {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-bold);
}

.hero__buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.hero__buttons .btn--large {
    min-width: 200px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-accent);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: var(--font-size-xs);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
}

.hero__image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

/* Otimização para notebooks - hero completo na tela */
@media screen and (min-width: 769px) and (max-width: 1366px) {
    .hero {
        min-height: calc(100vh - 70px);
        max-height: 100vh;
        padding: calc(70px + var(--spacing-xs)) 0 0;
        overflow: hidden;
    }
    
    .hero__container {
        gap: var(--spacing-md);
        padding: var(--spacing-xs) 0 var(--spacing-lg);
        align-items: center;
    }
    
    .hero__title {
        font-size: var(--font-size-3xl);
        margin-bottom: var(--spacing-xs);
        line-height: 1.2;
    }
    
    .hero__description {
        font-size: var(--font-size-sm);
        margin-bottom: var(--spacing-xs);
        line-height: 1.4;
    }
    
    .hero__buttons {
        margin-bottom: var(--spacing-xs);
        gap: var(--spacing-sm);
    }
    
    .hero__buttons .btn--large {
        min-width: 180px;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    .hero__image img {
        max-height: 65vh;
        width: 100%;
    }
    
    .hero__stats {
        gap: var(--spacing-xs);
        margin-top: var(--spacing-xs);
    }
    
    .stat-number {
        font-size: var(--font-size-xl);
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
}

/* Otimização para desktops grandes - imagem maior e hero completo */
@media screen and (min-width: 1367px) {
    .hero {
        min-height: calc(100vh - 70px);
        max-height: 100vh;
        padding: calc(70px + var(--spacing-sm)) 0 0;
        overflow: hidden;
    }
    
    .hero__container {
        gap: var(--spacing-xl);
        padding: var(--spacing-sm) 0 var(--spacing-xl);
    }
    
    .hero__image img {
        max-height: 75vh;
        width: 100%;
    }
}

/* ===== Bairros Section ===== */
.bairros {
    background: linear-gradient(135deg, #e8f2f8 0%, #d0e5f1 100%);
    position: relative;
}

.bairros::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid-blue1" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,31,63,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid-blue1)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.bairros > .container {
    position: relative;
    z-index: 1;
}

.bairros__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.bairro-card {
    background-color: var(--color-bg-primary);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--color-border);
}

.bairro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent);
}

.bairro-card h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.bairro-card p {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

/* ===== Sobre Section ===== */
.sobre {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7fc 100%);
    position: relative;
}

.sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid-blue2" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,61,122,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid-blue2)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.sobre > .container {
    position: relative;
    z-index: 1;
}

.sobre__container {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--spacing-3xl);
}

.sobre__subtitle {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
}

.sobre__description {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.sobre__description strong {
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-bold);
}

.sobre__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.stat-card {
    background-color: #ffffff;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 2px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.stat-card__number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-bold);
    color: #008a57;
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}

.stat-card__label {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
}

.sobre__image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: auto;
}

/* ===== Serviços Section ===== */
.servicos {
    background: linear-gradient(135deg, #d9ecf5 0%, #c4e0f0 100%);
    position: relative;
}

.servicos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid-blue3" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,31,63,0.04)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid-blue3)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.servicos > .container {
    position: relative;
    z-index: 1;
}

.servicos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.servico-card {
    background-color: var(--color-bg-primary);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--color-border);
    text-align: center;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent);
}

.servico-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-md);
}

.servico-card h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.servico-card p {
    color: var(--color-text-muted);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

/* ===== Depoimentos Section ===== */
.depoimentos {
    background: linear-gradient(135deg, #ffffff 0%, #eaf4f9 100%);
    position: relative;
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid-blue4" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,61,122,0.025)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid-blue4)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.depoimentos > .container {
    position: relative;
    z-index: 1;
}

.depoimentos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.depoimento-card {
    background-color: var(--color-bg-primary);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border);
    transition: var(--transition);
}

.depoimento-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.depoimento-rating {
    margin-bottom: var(--spacing-md);
}

.star {
    color: #fbbf24;
    font-size: var(--font-size-lg);
}

.depoimento-text {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-lg);
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.author-info strong {
    color: var(--color-text-secondary);
    font-weight: var(--font-weight-semibold);
}

.author-info span {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

.review-time {
    color: var(--color-text-muted);
    font-size: var(--font-size-xs);
    font-style: italic;
    margin-top: var(--spacing-xs);
    opacity: 0.85;
}

/* ===== Google Review Button ===== */
.google-review {
    background: linear-gradient(135deg, #e0f0f7 0%, #d1e8f3 100%);
    position: relative;
}

.google-review::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid-blue5" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,31,63,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid-blue5)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.google-review > .container {
    position: relative;
    z-index: 1;
}

.google-review .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.25);
    transition: var(--transition);
    color: var(--color-text-primary);
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-base);
    text-decoration: none;
    white-space: nowrap;
}

.google-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.35);
    background: linear-gradient(135deg, #4285F4 0%, #34A853 100%);
}

.google-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.arrow-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.9;
}

.google-review-btn:hover .arrow-icon {
    transform: translateX(3px);
    opacity: 1;
}

/* ===== Avisos Section ===== */
.avisos {
    background: linear-gradient(135deg, #f5fafd 0%, #e8f3f9 100%);
    position: relative;
}

.avisos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid-blue6" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(0,61,122,0.02)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid-blue6)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.avisos > .container {
    position: relative;
    z-index: 1;
}

.avisos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.aviso-card {
    background-color: var(--color-bg-primary);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border);
    transition: var(--transition);
    text-align: center;
}

.aviso-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent);
}

.aviso-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-md);
}

.aviso-card h3 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-sm);
}

.aviso-card p {
    color: var(--color-text-muted);
    font-size: var(--font-size-base);
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer__content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer__title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    text-shadow: var(--shadow-title);
}

.footer__subtitle {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

.footer__description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: var(--font-size-sm);
}

.footer__links a:hover {
    color: var(--color-accent);
    padding-left: var(--spacing-sm);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.footer__contact a:hover {
    color: var(--color-accent);
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.footer__datetime,
.footer__weather {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__datetime::after,
.footer__weather::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.footer__datetime:hover::after,
.footer__weather:hover::after {
    opacity: 1;
}

.footer__datetime::before,
.footer__weather::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(14, 165, 233, 0.6) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer__datetime:hover,
.footer__weather:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(14, 165, 233, 0.4);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(14, 165, 233, 0.2);
}

.footer__datetime:hover::before,
.footer__weather:hover::before {
    opacity: 1;
}

.info-icon {
    font-size: var(--font-size-xl);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-radius: 10px;
    border: 1px solid rgba(14, 165, 233, 0.3);
    box-shadow: 
        0 4px 12px rgba(14, 165, 233, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: relative;
}

.info-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(14, 165, 233, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.footer__datetime:hover .info-icon,
.footer__weather:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.3) 0%, rgba(14, 165, 233, 0.2) 100%);
    box-shadow: 
        0 6px 16px rgba(14, 165, 233, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 0 20px rgba(14, 165, 233, 0.2);
}

.footer__datetime:hover .info-icon::before,
.footer__weather:hover .info-icon::before {
    opacity: 1;
}

/* Animação sutil para ícone do relógio */
.footer__datetime .info-icon {
    animation: clockTick 2s ease-in-out infinite;
}

@keyframes clockTick {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(2deg);
    }
}

/* Respeitar preferências de movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .footer__datetime .info-icon {
        animation: none;
    }
    
    #current-time {
        animation: none;
    }
    
    .footer__datetime:hover .info-icon,
    .footer__weather:hover .info-icon {
        transform: scale(1.05);
    }
}

.info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.info-text {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    color: #ffffff;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.2px;
}

.info-subtext {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.1px;
}

#current-time {
    font-family: 'Courier New', 'Monaco', 'Menlo', monospace;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-base);
    color: #0ea5e9;
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.5), 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #0ea5e9 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: timeGlow 2s ease-in-out infinite alternate;
}

@keyframes timeGlow {
    0% {
        filter: brightness(1);
    }
    100% {
        filter: brightness(1.2);
    }
}

/* Fallback para navegadores sem suporte a gradiente */
@supports not (background-clip: text) {
    #current-time {
        color: #0ea5e9;
        -webkit-text-fill-color: #0ea5e9;
    }
}

#weather-temp {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(14, 165, 233, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Fallback para navegadores sem suporte */
@supports not (background-clip: text) {
    #weather-temp {
        color: #ffffff;
        -webkit-text-fill-color: #ffffff;
    }
}

#weather-rain {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* Responsividade para informações do rodapé */
@media screen and (max-width: 768px) {
    .footer__info {
        gap: var(--spacing-sm);
    }
    
    .footer__datetime,
    .footer__weather {
        padding: var(--spacing-sm);
        gap: var(--spacing-xs);
    }
    
    .info-icon {
        font-size: var(--font-size-lg);
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    
    .info-text {
        font-size: var(--font-size-xs);
    }
    
    .info-subtext {
        font-size: 0.7rem;
    }
    
    #current-time {
        font-size: var(--font-size-sm);
        letter-spacing: 1px;
    }
    
    #weather-temp {
        font-size: var(--font-size-base);
    }
}

@media screen and (max-width: 576px) {
    .footer__datetime,
    .footer__weather {
        padding: var(--spacing-sm);
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .info-icon {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-lg);
    }
    
    .info-content {
        align-items: center;
    }
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer__bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-xs);
}

.footer__seo {
    font-size: var(--font-size-xs) !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* ===== Footer Developer Section ===== */
.footer__developer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
}

.developer-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

.developer-text strong {
    color: var(--color-text-primary);
    font-weight: var(--font-weight-bold);
}

.developer-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--color-text-primary);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.developer-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.developer-link:hover::before {
    left: 100%;
}

.developer-link:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2) 0%, rgba(225, 48, 108, 0.1) 100%);
    border-color: rgba(225, 48, 108, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
}

.developer-brand {
    background: linear-gradient(135deg, #ffffff 0%, #e1306c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: var(--font-weight-bold);
    transition: all 0.3s ease;
}

.developer-link:hover .developer-brand {
    background: linear-gradient(135deg, #ffffff 0%, #fd1d1d 50%, #e1306c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: #e1306c;
    filter: drop-shadow(0 0 3px rgba(225, 48, 108, 0.5));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    flex-shrink: 0;
}

.developer-link:hover .instagram-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 8px rgba(225, 48, 108, 0.9));
    color: #fd1d1d;
}

/* ===== Responsive Design ===== */
/* Garantir estilo da barrinha no desktop/notebook */
@media screen and (min-width: 969px) {
    .nav__link::after {
        height: 1px;
        background: #00d084;
        box-shadow: 0 0 4px rgba(0, 208, 132, 0.6);
    }
    
    .nav__link.active::after {
        background: #00d084;
        box-shadow: 0 0 4px rgba(0, 208, 132, 0.6);
    }
}

@media screen and (max-width: 968px) {
    :root {
        --font-size-4xl: 2rem;
        --font-size-3xl: 1.75rem;
        --container-padding: 1rem;
    }
    
    .nav__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(30px) saturate(180%);
        -webkit-backdrop-filter: blur(30px) saturate(180%);
        flex-direction: column;
        padding: var(--spacing-xl);
        box-shadow: 0 8px 32px rgba(0, 31, 63, 0.12);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    
    .nav__menu.show-menu {
        left: 0;
    }
    
    .nav__list {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        gap: var(--spacing-xs);
    }
    
    .nav__link {
        width: 100%;
        padding: var(--spacing-md) var(--spacing-lg);
        border-bottom: 1px solid rgba(0, 31, 63, 0.06);
        border-radius: var(--border-radius-lg);
        margin-bottom: var(--spacing-xs);
    }
    
    .nav__link::after {
        width: calc(100% - 32px);
        left: var(--spacing-lg);
    }
    
    .nav__close,
    .nav__toggle {
        display: block;
    }
    
    .nav__cta {
        display: none;
    }
    
    .hero {
        padding: calc(70px + var(--spacing-md)) var(--container-padding) var(--spacing-lg);
        overflow: visible;
    }
    
    .hero__container {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: var(--spacing-md) !important;
        padding: 0;
    }
    
    /* Garantir que imagem fique abaixo do botão nas páginas SEO */
    .hero__container .hero__content {
        order: 1;
        padding: 0;
        overflow: visible;
    }
    
    .hero__container .hero__image {
        order: 2;
        margin-top: var(--spacing-sm);
    }
    
    .hero__title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: var(--spacing-sm);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero__description {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: var(--spacing-sm);
        padding: 0 var(--spacing-xs);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero__image img {
        max-height: 35vh;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        object-fit: cover;
    }
    
    .hero__buttons {
        justify-content: center;
        margin-bottom: var(--spacing-md) !important;
        gap: var(--spacing-sm);
    }
    
    .hero__buttons .btn--large {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }
    
    .hero__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xs);
        margin-top: var(--spacing-sm);
        padding: 0 var(--spacing-xs);
    }
    
    .stat-number {
        font-size: 1.1rem;
        margin-bottom: 0.15rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }
    
    .sobre__container {
        grid-template-columns: 1fr;
    }
    
    .sobre__stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .bairros__grid,
    .servicos__grid,
    .depoimentos__grid,
    .avisos__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__links {
        align-items: center;
    }
    
    .footer__developer {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --font-size-4xl: 1.75rem;
        --font-size-3xl: 1.5rem;
        --font-size-2xl: 1.25rem;
        --spacing-3xl: 3rem;
        --spacing-2xl: 2rem;
    }
    
    .hero {
        padding: calc(70px + var(--spacing-md)) var(--container-padding) var(--spacing-md);
        min-height: auto;
        max-height: none;
        overflow: visible;
    }
    
    .section {
        padding: var(--spacing-2xl) 0;
    }
    
    .hero__title {
        font-size: 1.35rem;
        line-height: 1.15;
        margin-bottom: var(--spacing-xs);
    }
    
    .hero__description {
        font-size: 0.85rem;
        line-height: 1.3;
        margin-bottom: var(--spacing-xs);
        padding: 0;
    }
    
    .hero__buttons {
        flex-direction: column;
        width: 100%;
        margin-bottom: var(--spacing-md) !important;
        gap: var(--spacing-xs);
    }
    
    .btn--large {
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.875rem;
    }
    
    .hero__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xs);
        margin-top: var(--spacing-xs);
        padding: 0;
    }
    
    .stat-number {
        font-size: 1rem;
        margin-bottom: 0.1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
        line-height: 1.1;
    }
    
    /* Ajustar imagem nas páginas SEO no mobile pequeno */
    .hero__image img {
        max-height: 30vh;
        max-width: 100%;
        object-fit: cover;
    }
    
    .sobre__stats {
        grid-template-columns: 1fr;
    }
    
    .status-indicator {
        display: none;
    }
}

/* ===== Performance Optimizations ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== Print Styles ===== */
@media print {
    .header,
    .footer,
    .nav,
    .btn,
    .status-indicator {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    .section {
        page-break-inside: avoid;
    }
}
