/* ========================================
   AGEOZ - STYLESHEET PRINCIPAL
   Version: 1.3.0 - Organizado por Dispositivo
   Last Updated: 13 de junho de 2025
   ======================================== */

/* ========================================
   OTIMIZAÇÕES DE PERFORMANCE
   ======================================== */
/* Suavização de renderização e scroll */
* {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Previne overflow horizontal global */
*, *::before, *::after {
    max-width: 100%;
}

/* CSS Global para corrigir fundo no mobile */
html, body {
    background-color: #F7F7F7 !important;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

img, video, iframe, object, embed {
    max-width: 100%;
    height: auto;
}

/* Quebra de palavras longas */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

:root {
    /* Cores da empresa - somente amarelo, preto e branco */
    --primary-color: #fec205;
    --secondary-color: #e6b800;
    --accent-color: #fec205;
    --dark-color: #000000;
    --light-color: #F7F7F7;
    --gray-color: #666666;
    --white-color: #ffffff;
    --whatsapp-color: #25d366;
    --yellow-color: #fec205;
    --yellow-hover: #e6b800;
    --black-color: #000000;
    
    /* Tipografia */
    --font-family: 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Espaçamentos */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
    /* Transições */
    --transition: all 0.3s ease;
}

/* ========================================
   ESTILOS GERAIS E TIPOGRAFIA
   ======================================== */
html, body {
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--dark-color);
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: var(--container-padding);
    box-sizing: border-box;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-color);
}

/* Utilitários */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.highlight {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
}

/* ========================================
   BOTÕES
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: #ffffff;
    color: #fec205;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #ffffff;
    color: #e6b800;
}

.btn-primary i {
    color: #fec205;
}

.btn-primary:hover i {
    color: #e6b800;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ========================================
   CABEÇALHO (HEADER) - NAVEGAÇÃO PRINCIPAL
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.navbar {
    padding: 1rem 0;
    width: 100%;
    box-sizing: border-box;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Logo principal */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: 'JetBrains Mono', 'Space Mono', monospace;
    font-size: 1.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1;
    letter-spacing: -0.5px;
}

.logo-ageoz {
    color: var(--black-color);
    font-weight: 500;
}

.logo-slash {
    color: #fec205 !important;
    font-weight: 600;
}

/* Garantir cor amarela do logo em todos os contextos */
.logo-text .logo-slash,
.nav-brand .logo-slash,
span.logo-slash,
.header .logo-slash,
.footer .logo-slash,
.logo-container .logo-slash {
    color: #fec205 !important;
}

.logo-text:hover .logo-ageoz {
    color: var(--primary-color);
}

.logo-text:hover .logo-slash {
    color: #e6b800 !important;
}

/* Logo legacy (deprecated) */
.logo {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
}

/* Menu de navegação */
.nav-menu {
    display: flex;
    align-items: center;
    overflow: visible;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
    padding: 0.5rem 0;
}

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

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

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

/* Botão de pesquisa */
.search-btn {
    display: none; /* Oculto por padrão, visível apenas no mobile */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    color: var(--dark-color);
    font-size: 1.2rem;
    transition: var(--transition);
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: rgba(254, 194, 5, 0.1);
    color: var(--primary-color);
}

/* Botão toggle para mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border: none;
    background: transparent;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(254, 194, 5, 0.1);
}

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

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* ========================================
   MODAL DE PESQUISA
   ======================================== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2002; /* Acima do overlay */
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.search-modal.active .search-modal-content {
    transform: scale(1);
}

.search-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Menos fosco */
    backdrop-filter: blur(2px); /* Blur mais suave */
    z-index: 2001; /* Abaixo do conteúdo do modal */
}

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #eee;
}

.search-modal-header h3 {
    margin: 0;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.search-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gray-color);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.search-close:hover {
    background: #f5f5f5;
    color: var(--dark-color);
}

.search-modal-body {
    padding: 1.5rem;
}

.search-form {
    margin-bottom: 2rem;
}

.search-input-group {
    position: relative;
    display: flex;
    border: 2px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.search-input-group:focus-within {
    border-color: var(--primary-color);
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: var(--font-family);
}

.search-submit {
    background: var(--primary-color);
    border: none;
    padding: 12px 16px;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.search-submit:hover {
    background: var(--secondary-color);
}

.search-suggestions h4 {
    margin: 0 0 1rem 0;
    color: var(--dark-color);
    font-size: 1rem;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.suggestion-tag {
    background: #f8f9fa;
    color: var(--gray-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid #eee;
}

.suggestion-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Ajustes para o modal de pesquisa em telas pequenas */
@media (max-width: 480px) {
    .search-modal {
        padding: 1rem;
    }
    
    .search-modal-content {
        width: 100%;
        max-width: none;
        margin: 0;
        border-radius: 8px;
    }
    
    .search-modal-header,
    .search-modal-body {
        padding: 1rem;
    }
    
    .search-input-group {
        flex-direction: column;
    }
    
    .search-input {
        border-radius: 8px 8px 0 0;
    }
    
    .search-submit {
        border-radius: 0 0 8px 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .suggestion-tags {
        gap: 0.3rem;
    }
    
    .suggestion-tag {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
}


/* ========================================
   CORREÇÕES PARA AVISOS DO NAVEGADOR
   ======================================== */

/* Especificar tamanho de fonte para h1 conforme recomendação do MDN */
h1 {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin: 0;
}

/* Responsividade para h1 */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
}


@media (max-width: 479px) {
    h1 {
        font-size: 2rem;
    }
}


/* ========================================
   SEÇÃO HERO - BANNER PRINCIPAL OTIMIZADO
   ======================================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 650px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
    box-sizing: border-box;
}

/* Degradê suave no final do banner */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 50%, rgba(255, 255, 255, 0.3) 100%);
    pointer-events: none;
    z-index: 10;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white-color);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    word-wrap: break-word;
    max-width: 100%;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    word-wrap: break-word;
    max-width: 100%;
}

.hero-cta {
    margin-top: 3rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fec205;
    color: #000000;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(254, 194, 5, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-whatsapp:hover {
    background: #e5af04;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(254, 194, 5, 0.4);
    color: #000000;
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

/* Seta animada para baixo */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    text-align: center;
}

.scroll-arrow {
    display: block;
    width: 32px;
    height: 32px;
    margin: 0 auto 10px;
    border: 2px solid #fec205;
    border-radius: 50%;
    position: relative;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(254, 194, 5, 0.1);
    transform: scale(1.1);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #fec205;
    border-right: 2px solid #fec205;
}

.scroll-text {
    color: #fec205;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   SEÇÕES GERAIS
   ======================================== */
section {
    padding: var(--section-padding);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #F7F7F7;
}

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

.section-title {
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   SEÇÃO SOBRE (ABOUT)
   ======================================== */
.about {
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.feature i {
    color: #fec205;
    font-size: 1.75rem;
    background: #ffffff;
    padding: 0.5rem;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature span {
    font-weight: var(--font-weight-medium);
    color: #000000;
    font-size: 1.1rem;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* ========================================
   SEÇÃO SERVIÇOS
   ======================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid #fec205;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(254, 194, 5, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #fec205;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #000000;
}

.service-card h3 {
    color: #000000;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    color: #000000;
}

.service-list {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-list li {
    padding: 0.5rem 0;
    color: #000000;
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fec205;
    font-weight: var(--font-weight-bold);
}

/* ========================================
   SEÇÃO ÁREAS DE ATUAÇÃO
   ======================================== */
.areas {
    background: var(--light-color);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.area-card {
    background: var(--white-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.area-image {
    height: 200px;
    overflow: hidden;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.area-card:hover .area-image img {
    transform: scale(1.1);
}

.area-content {
    padding: 2rem;
}

.area-content h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.area-content h3 i {
    color: var(--primary-color);
}

.area-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.service-tag {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: var(--font-weight-medium);
}

/* ========================================
   SEÇÃO CIDADES - ACORDEÃO MODERNO
   ======================================== */
.cities-section {
    background: #ffffff;
    padding: 80px 0;
}

.cities-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}

.cities-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-accordion {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.city-accordion:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}

.city-header {
    background: #ffffff;
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border-left: 4px solid #fec205;
}

.city-header:hover {
    background: #ffffff;
}

.city-header.active {
    background: #ffffff;
    border-left-color: #000000;
}

.city-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.city-arrow {
    font-size: 1.2rem;
    color: #fec205;
    transition: transform 0.3s ease, color 0.3s ease;
}

.city-header.active .city-arrow {
    color: #000000;
}

.cities-section .city-content {
    display: none;
    background: #ffffff;
    padding: 2rem;
    border-top: 1px solid #e5e7eb;
}

.cities-section .city-content.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.technician-info {
    margin-bottom: 1.5rem;
}

.technician-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.technician-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-item {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: #374151;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.service-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fec205;
    font-weight: bold;
    font-size: 1.1rem;
}

.cities-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.cities-cta-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.cities-contact {
    margin-top: 2rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: #fec205;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-phone:hover {
    background: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 194, 5, 0.3);
}

/* ========================================
   SEÇÃO TESTEMUNHOS
   ======================================== */
/* ========================================
   SEÇÃO TESTEMUNHOS - CARROSSEL MINIMALISTA
   ======================================== */

/* Média de Avaliações */
.rating-summary {
    text-align: center;
    margin: 2rem auto 3rem auto;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    max-width: 300px;
    width: 100%;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #000;
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
}

.rating-stars i {
    color: #fec205;
    font-size: 1.2rem;
}

.rating-text {
    color: #666;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

/* Carrossel */
.testimonials-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 60px;
}

.testimonials-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #f0f0f0;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 1.5rem 0 1rem 0;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f0f0f0;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    color: #000;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.author-info span {
    color: #666;
    font-size: 0.8rem;
}

.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.testimonial-rating i {
    color: #fec205;
    font-size: 1rem;
}

/* Controles do Carrossel - Minimalistas */
.carousel-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    opacity: 0.6;
}

.carousel-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.carousel-btn i {
    color: #000;
    font-size: 1.1rem;
}

/* Indicadores */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #fec205;
    transform: scale(1.3);
}

.indicator:hover {
    background: #fec205;
}

/* Responsividade do Carrossel */
@media (max-width: 768px) {
    .rating-summary {
        margin: 1.5rem auto 2.5rem auto;
        padding: 1.2rem;
        max-width: 280px;
    }
    
    .rating-number {
        font-size: 2.2rem;
    }
    
    .rating-stars i {
        font-size: 1.1rem;
    }
    
    .testimonials-carousel {
        padding: 0 50px;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn i {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .author-info {
        text-align: center;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
}


@media (max-width: 480px) {
    .testimonials-carousel {
        padding: 0 40px;
    }
    
    .rating-summary {
        max-width: 250px;
        padding: 1rem;
    }
    
    .rating-number {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
    }
    
    .carousel-btn i {
        font-size: 0.9rem;
    }
    
    .author-info strong {
        font-size: 0.9rem;
    }
    
    .author-info span {
        font-size: 0.75rem;
    }
}


/* ========================================
   ELEMENTOS AUXILIARES
   ======================================== */

/* Item destacado na seção de contato */
.highlight-item {
    background: #ffffff;
    border-left: 3px solid #fec205;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(254, 194, 5, 0.1);
}

.highlight-item .contact-icon {
    background: transparent;
    color: #fec205;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.highlight-item:hover .contact-icon {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.highlight-item h4 {
    color: #000000;
    font-weight: 600;
}

/* Botão flutuante do WhatsApp */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.whatsapp-float.hidden {
    opacity: 0;
    visibility: hidden;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--whatsapp-color);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: var(--white-color);
    text-decoration: none;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* ========================================
   RODAPÉ (FOOTER)
   ======================================== */
.footer {
    background: #000000;
    color: #ffffff;
    padding: 4rem 0 2rem;
    border-top: 1px solid #333333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #fec205;
}

.footer-brand {
    margin-bottom: 1rem;
}

.footer p {
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #fec205;
    border: 2px solid #fec205;
    border-radius: 50%;
    color: #000000;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: #fec205;
    color: #000000;
    border-color: #fec205;
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fec205;
    margin-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-contact i {
    color: #fec205;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #333333;
    padding-top: 1.5rem;
}

.footer-copyright p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #ffffff;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #fec205;
}

/* ========================================
   SEÇÃO CONTATO
   ======================================== */
.contact {
    background: #ffffff;
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

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

.contact .section-title {
    color: #000000;
    margin-bottom: 1rem;
}

.contact .section-subtitle {
    color: #000000;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

/* Informações de contato */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid #e0e0e0;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #fec205;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #fec205;
    border: 2px solid #ffffff;
    border-radius: 50%;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(254, 194, 5, 0.3);
    color: #fec205;
}

.contact-details {
    flex: 1;
    min-width: 0;
}

.contact-details h4 {
    color: #000000;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-semibold);
    font-size: 1.1rem;
}

.contact-details p {
    color: #000000;
    margin: 0;
    line-height: 1.6;
    word-wrap: break-word;
}

.contact-details a {
    color: #000000;
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: var(--transition);
}

.contact-details a:hover {
    color: #fec205;
    text-decoration: underline;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white-color);
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 15px rgba(254, 194, 5, 0.3);
}

/* Formulário de contato */
.contact-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.contact-form:hover {
    border-color: #fec205;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: var(--font-weight-medium);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    background: #ffffff;
    color: #000000;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fec205;
    box-shadow: 0 0 0 3px rgba(254, 194, 5, 0.1);
}

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

.btn-full {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
}

/* Validação de formulário */
.field-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-info {
    background: #fffbf0;
    border-left: 4px solid #fec205;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.form-info p {
    margin: 0;
    color: #000000;
    font-size: 0.9rem;
}

.form-info i {
    color: #0ea5e9;
    margin-right: 0.5rem;
}

/* ========================================
   DESIGN RESPONSIVO
   ======================================== */

/* ========================================
   DESKTOP GRANDE - 1440px e superior
   ======================================== */
@media (min-width: 1440px) {
    .contact-content {
        gap: 5rem;
        max-width: 1400px;
        margin: 3rem auto 0;
    }
    
    .contact-form {
        padding: 3rem;
    }
    
    .navbar .container {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .nav-list {
        gap: 2.5rem;
    }
}


/* ========================================
   DESKTOP PADRÃO - 1024px a 1439px
   ======================================== */
@media (max-width: 1439px) and (min-width: 1024px) {
    .contact-content {
        gap: 3rem;
    }
}


/* Desktop pequeno/Tablet grande - 1025px a 1200px */
@media (min-width: 1025px) and (max-width: 1200px) {
    .nav-list {
        gap: 1.75rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
}


/* Ajustes específicos para problemas de visibilidade do menu */
@media (max-width: 1160px) and (min-width: 769px) {
    .navbar .container {
        padding: 0 1rem;
    }
    
    .nav-list {
        gap: 1.25rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        white-space: nowrap;
    }
}


/* ========================================
   TABLET LANDSCAPE - 900px a 1023px
   ======================================== */
@media (max-width: 1023px) and (min-width: 900px) {
    .contact-content {
        gap: 2.5rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        gap: 0.75rem;
    }
}


/* ========================================
   TABLET PORTRAIT - 768px a 899px
   ======================================== */
@media (max-width: 899px) and (min-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem;
        order: -1; /* Formulário primeiro em tablets */
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}


/* Tablet geral - 769px a 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-list {
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
        padding: 0.4rem 0;
    }
}


/* ========================================
   MOBILE E TABLET - 768px e inferior
   ======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }    /* Cabeçalho mobile - altura ajustada */
    .navbar {
        padding: 0.75rem 0;
    }.nav-toggle {
        display: flex;
        z-index: 1001;
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
    
    /* Mostrar botão de pesquisa apenas no mobile */
    .search-btn {
        display: flex;
        z-index: 1001;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }      .navbar .container {
        justify-content: center;
        position: relative;
        padding: 0.25rem 4rem;
        min-height: 50px;
        align-items: center;
        display: flex;
    }
    
    .nav-brand {
        position: relative;
        left: auto;
        transform: none;
        justify-content: center;
        text-align: center;
        z-index: 1;
    }
    
    .logo-container {
        align-items: center;
        text-align: center;
    }
    
    .logo-text {
        font-size: 1.7rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -300px;
        width: 280px;
        height: auto;
        max-height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        display: block;
        padding: 1.5rem 0;
        transition: right 0.3s ease;
        z-index: 1000;
        margin-right: 20px;
        border: 1px solid rgba(0, 0, 0, 0.1);
    }
      .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        display: block;
        padding: 0.75rem 1.5rem;
        color: var(--dark-color);
        text-decoration: none;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        transition: all 0.2s ease;
    }
    
    .nav-link:hover {
        background: rgba(254, 194, 5, 0.1);
        color: var(--primary-color);
        padding-left: 2rem;
    }    .nav-list li:last-child .nav-link {
        border-bottom: none;
    }    /* Hero section mobile */
    .hero {
        height: 85vh;
        min-height: 600px;
        width: 100%;
        overflow-x: hidden;
    }
    
    /* Otimizações de imagem para mobile */
    .hero-img {
        filter: brightness(0.6);
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-cta {
        margin-top: 2rem;
    }
    
    .btn-whatsapp {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
        max-width: 90%;
        word-wrap: break-word;
    }
    
    /* Scroll indicator mobile */
    .scroll-indicator {        bottom: 20px;
    }
    
    .scroll-arrow {
        width: 28px;
        height: 28px;
    }
    
    .scroll-text {
        font-size: 0.8rem;}
    
    /* Container responsivo */
    .container {
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Seções gerais mobile */
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Cities info mobile */
    .cities-info {
        margin: 2rem 0;
        padding: 1.5rem;
        border-radius: 8px;
    }
    
    .cities-intro {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .city-header {
        padding: 1rem;
    }
    
    .city-name {
        font-size: 1.1rem;
    }
      .city-details {
        padding: 16px;
    }
    
    .services-list li {
        font-size: 0.9rem;
    }
    
    /* Ajustes no cabeçalho mobile */
    .navbar {
        padding: 0.5rem 0;
    }
    
    .nav-brand {
        gap: 0.5rem;
    }
    
    .logo-text {
        font-size: 1.7rem;
    }
    
    .nav-toggle {
        padding: 8px;
    }
    
    .bar {
        height: 3px;
    }
    
    /* Ajustes no botão do WhatsApp */
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}


/* ========================================
   MOBILE GRANDE - 600px a 767px
   ======================================== */
@media (max-width: 767px) and (min-width: 600px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .contact-item {
        padding: 1.25rem;
        flex-direction: row;
        align-items: center;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 1.75rem;
        order: -1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1.25rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}


/* ========================================
   MOBILE MÉDIO - 480px a 599px
   ======================================== */
@media (max-width: 599px) and (min-width: 480px) {
    /* Hero mobile médio */
    .hero {
        height: 82vh;
        min-height: 570px;
    }
    
    /* Otimizações de imagem para mobile médio */
    .hero-img {
        filter: brightness(0.6);
    }
}


/* ========================================
   MOBILE PEQUENO - 320px a 479px
   ======================================== */
@media (max-width: 479px) {
    /* Cabeçalho mobile pequeno - ainda mais compacto */
    .navbar {
        padding: 0.3rem 0;
    }
    
    .logo-text {
        font-size: 1.5rem;    }      /* Hero mobile pequeno */
    .hero {
        min-height: 80vh;
        padding: 80px 0 40px;
    }
    
    /* Otimizações de imagem para mobile pequeno */
    .hero-img {
        filter: grayscale(50%) brightness(0.5);
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.8rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero-content {
        padding: 0 0.75rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero-cta {
        margin-top: 1.5rem;
    }
    
    /* Scroll indicator mobile pequeno */
    .scroll-indicator {
        bottom: 15px;
    }
      .scroll-arrow {
        width: 24px;
        height: 24px;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
      .btn-whatsapp {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
        max-width: 90%;
        word-wrap: break-word;
    }
    
    /* Container e seções */
    .container {
        padding: 0 0.75rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    .contact {
        padding: 40px 0;
    }
    
    .contact-content {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .contact-form {
        padding: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.65rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .form-group textarea {
        min-height: 100px;
    }
    
    .btn-full {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1.6rem;
    }
    
    .nav-menu {
        width: calc(100vw - 40px);
        right: -100%;
        margin-right: 20px;
    }
    
    /* Hero mobile pequeno */
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .btn-whatsapp {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }
}


/* ========================================
   MOBILE EXTRA PEQUENO - 320px e inferior
   ======================================== */
@media (max-width: 320px) {
    .contact-item {
        padding: 0.75rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}


/* ========================================
   ORIENTAÇÃO PAISAGEM MOBILE
   ======================================== */
@media (max-height: 500px) and (orientation: landscape) {
    .contact {
        padding: 30px 0;
    }
    
    .contact-content {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .contact-item {
        padding: 0.75rem;
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group textarea {
        min-height: 80px;
    }
}


/* ========================================
   MELHORIAS DE ACESSIBILIDADE E TOQUE
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    .contact-item {
        padding: 1.25rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .btn-full {
        padding: 1.125rem 2rem;
        font-size: 1.1rem;
    }
}


/* ========================================
   ESTILOS PARA IMPRESSÃO
   ======================================== */
@media print {
    .nav-toggle,
    .nav-menu {
        display: none !important;
    }
    
    .navbar {
        padding: 0.5rem 0;
        box-shadow: none;
    }
}


/* ========================================
   PREFERÊNCIA DE MOVIMENTO REDUZIDO
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .nav-menu,
    .nav-toggle .bar,
    .nav-link {
        transition: none;
    }
}


/* ========================================
   CIDADES - ACORDEÃO MINIMALISTA E RESPONSIVO
   ======================================== */
.about {
    background: var(--light-color);
}

/* Cities Info Section */
.cities-info {
    margin: 3rem 0;
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.cities-intro {
    font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000000;
    text-align: center;
    margin-bottom: 1.5rem;
}

.cities-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.city-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.city-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: #ffffff;
    cursor: pointer;    transition: all 0.3s ease;
    border: none;
}

.city-header:hover {
    background: #ffffff;
}

.city-header.active {
    background: #ffffff;
}

.city-name {
    font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

.city-arrow {
    font-size: 1rem;
    color: #fec205;
    transition: transform 0.3s ease;
}

.city-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}

.city-content.active {
    max-height: none;
    overflow: visible;
}

.city-details {
    padding: 16px;
}

.city-details p {
    font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
    font-size: 1rem;
    color: #000000;
    margin-bottom: 1rem;
}

.services-list p {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.services-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #333;
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
}

.services-list li:before {
    content: '•';
    color: #fec205;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* ========================================
   RESPONSIVIDADE PARA BLOCOS DE RECURSOS
   ======================================== */

/* Mobile pequeno */
@media (max-width: 480px) {
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .feature {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .feature i {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .feature span {
        font-size: 1rem;
    }
}


/* Tablet */
@media (max-width: 768px) and (min-width: 481px) {
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature {
        padding: 1.125rem;
    }
    
    .feature i {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
    }
    
    .feature span {
        font-size: 1.05rem;
    }
}


/* Logo específica para o rodapé */
.footer .logo-ageoz {
    color: #ffffff !important;
    font-weight: 500;
}

.footer .logo-slash {
    color: #fec205 !important;
    font-weight: 600;
}

.footer .logo-tagline {
    color: #ffffff;
}

/* ========================================
   CORREÇÃO DE LOADER/PRELOADER
   ======================================== */
.loader, .preloader, body.loading, html.loading {
    background-color: #F7F7F7 !important;
}

/* Garantir que não haja fundo verde durante carregamento */
html:before, body:before, 
html::before, body::before {
    background-color: #F7F7F7 !important;
}

/* Prevenir qualquer animação ou elemento que possa mostrar verde */
* {
    transition-delay: 0ms !important;
}

html, body {
    background-color: #F7F7F7;
    overflow-x: hidden;
}

/* Ajustes finais para responsividade */
@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
        padding: 80px 0 40px;
       }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .hero-subtitle h4 {
        font-size: 1.1rem;
        margin-top: 0.5rem;
    }

    .scroll-indicator {        
        bottom: 15px;
    }

    .scroll-arrow {
        width: 22px;
        height: 22px;
    }

    .btn-whatsapp {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}


/* Ajustes para tablets em paisagem */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        min-height: 92vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* Esconder botão de pesquisa na versão desktop */
@media (min-width: 769px) {
  .search-submit {
    display: none !important;
  }
}
