/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Promo Banner */
.promo-banner {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
    padding: 12px 0;
    text-align: center;
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.promo-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.close-banner {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-banner:hover {
    opacity: 0.8;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.hero-buttons button {
    display: none;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0; /* dá um respiro no layout */
}

.hero-logo {
    width: 130px; /* ajuste o tamanho da logo */
    height: auto;
    opacity: 0.95;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}


.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 15px 0;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* =========================
   Reviews Section Styles
   ========================= */

.reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* espaçamento entre os cards */
}

/* --- Container Principal --- */
.service-area-container {
    display: flex;
    justify-content: space-between; /* Distribui o espaço horizontalmente */
    flex-wrap: wrap; /* Permite a quebra para o mobile */
    gap: 40px; /* Um gap um pouco mais seguro */
    margin: 50px auto;
    width: 100%;
    max-width: 1200px; /* Adicionar uma largura máxima ajuda a controlar o layout em telas muito grandes */
    padding: 0 15px; /* Evita que o conteúdo cole nas bordas da tela */
    box-sizing: border-box;
}

/* --- Coluna da Esquerda (About) --- */
.service-area-left {
    /* --- MUDANÇA PRINCIPAL: Usando flex-basis com calc() --- */
    flex: 1 1 calc(40% - 20px); /* Base de 40% menos metade do gap */
    min-width: 300px; /* Mantém um mínimo para telas menores antes de quebrar */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
    font-size: 1rem;
}

/* --- Coluna da Direita (Where We Serve) --- */
.service-area-right {
    /* --- MUDANÇA PRINCIPAL: Usando flex-basis com calc() --- */
    flex: 1 1 calc(60% - 20px); /* Base de 60% menos metade do gap */
    min-width: 300px;
}

/* O restante do CSS pode permanecer o mesmo do ajuste anterior, pois estava bom */

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.section-header p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.state-section {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.state-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.state-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #34495e;
}

.state-header i {
    font-size: 1.1rem;
}

.state-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cities-grid span {
    background-color: #e9edf5;
    color: #34495e;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- Responsividade para Mobile --- */
@media (max-width: 992px) { /* Aumentei o breakpoint para a quebra ocorrer um pouco antes */
    .service-area-container {
        flex-direction: column;
        align-items: center; /* Centraliza as colunas no mobile */
    }

    /* Remove a base calculada para que ocupem 100% da largura no mobile */
    .service-area-left,
    .service-area-right {
        flex-basis: 100%; 
    }
}

/* --- ESTILOS GERAIS PARA A SEÇÃO --- */
.service-area {
    /* Aplicando a nova fonte em toda a seção */
    font-family: 'Poppins', sans-serif; 
}

/* --- COLUNA DA ESQUERDA: "Welcome to..." --- */
.about-text h2 {
    font-size: 2.8rem; /* Aumenta o tamanho para dar mais impacto */
    font-weight: 700;  /* Deixa o título bem forte */
    color: #2c3e50;    /* Um tom de azul-escuro, mais suave que preto puro */
    line-height: 1.2;
    margin-bottom: 25px; /* Mais espaço abaixo do título */
}

.about-text p {
    font-size: 1rem;       /* Tamanho de fonte confortável para leitura */
    line-height: 1.8;      /* AUMENTA o espaçamento entre linhas (muito importante!) */
    color: #555;           /* Cinza-escuro para o texto, menos cansativo que preto */
    margin-bottom: 20px;   /* Espaço entre os parágrafos */
}

/* --- COLUNA DA DIREITA: "Where We Serve" --- */
.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center; /* Centraliza o título da direita */
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem; /* Um pouco maior para se destacar */
    line-height: 1.7;
    color: #666;
    text-align: center;
    max-width: 600px; /* Evita que o parágrafo fique muito largo */
    margin: 0 auto 40px auto; /* Centraliza o parágrafo e adiciona espaço abaixo */
}

/* --- ESTILOS DOS CARDS DE ESTADO --- */
.state-header h3 {
    font-size: 1.4rem;  /* Título do estado um pouco maior */
    font-weight: 600;   /* Peso médio-forte */
    color: #34495e;
}

.cities-grid span {
    font-weight: 500; /* Deixa o nome das cidades um pouco mais nítido */
    color: #34495e;
    background-color: #eef2f7; /* Um fundo um pouco mais suave */
}

.review-card {
    flex: 1 1 calc(50% - 20px); /* dois por linha com espaço */
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Responsivo: um por linha em telas pequenas */
@media (max-width: 768px) {
    .review-card {
        flex: 1 1 100%;
    }
}


.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.logo-text h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 2px;
}

.logo-text p {
    font-size: 12px;
    color: #6B7280;
    font-weight: 400;
}

.nav {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

/* --- INÍCIO DA CORREÇÃO DEFINITIVA --- */
.nav-services {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); /* <-- alterado */
    gap: 8px;
    align-content: start;
}

.nav-item {
    padding: 10px 0;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 100%;
}
/* --- FIM DA CORREÇÃO DEFINITIVA --- */

/* --- Correção específica para o botão Contact --- */
.nav-item.contact {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100% !important;
    height: 40px !important;
    padding: 10px 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 20px !important;
    border: 1px solid transparent !important;

    /* Mantém as cores configuradas originalmente */
    background: unset; /* ou remova esta linha */
    color: unset; /* ou remova esta linha */
    text-align: center !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
}




.nav-item.cooling {
    background: #EBF8FF;
    color: #2563EB;
    border-color: #BFDBFE;
}

.nav-item.heating {
    background: #FEF3C7;
    color: #D97706;
    border-color: #FDE68A;
}

.nav-item.air-quality {
    background: #ECFDF5;
    color: #059669;
    border-color: #A7F3D0;
}

.nav-item.plumbing {
    background: #EDE9FE;
    color: #7C3AED;
    border-color: #C4B5FD;
}

.nav-item.generators {
    background: #FEF2F2;
    color: #DC2626;
    border-color: #FECACA;
}

.nav-item.electrical {
    background: #F3F4F6;
    color: #374151;
    border-color: #D1D5DB;
}

.nav-item.leasing {
    background: #FFF7ED;
    color: #EA580C;
    border-color: #FED7AA;
}

.nav-item.contact {
    background: #F0FDF4;
    color: #16A34A;
    border-color: #BBF7D0;
}

.nav-item.about {
    background: #FDF2F8;
    color: #BE185D;
    border-color: #FBCFE8;
}

.nav-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}



/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.3);
}

.btn-secondary {
    background: #F97316;
    color: white;
}

.btn-secondary:hover {
    background: #EA580C;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.btn-outline-blue {
    background: white;
    color: #4F46E5;
    border: 2px solid #4F46E5;
    font-weight: 600;
}

.btn-outline-blue:hover {
    background: #4F46E5;
    color: white;
    transform: translateY(-1px);
}

.btn-cta {
    background: #F97316;
    color: white;
    font-size: 16px;
    padding: 16px 32px;
    font-weight: 700;
}

.btn-cta:hover {
    background: #EA580C;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.3);
}

.btn-success {
    background: #10B981;
    color: white;
}

.btn-success:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1E3A8A 0%, #3730A3 50%, #581C87 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ffffff" stop-opacity="0.1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"/><circle cx="800" cy="300" r="150" fill="url(%23a)"/><circle cx="400" cy="700" r="120" fill="url(%23a)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #F9FAFB;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #6B7280;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-item {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-item .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.cooling-icon {
    background: #2563EB;
}

.heating-icon {
    background: #F97316;
}

.generators-icon {
    background: #EAB308;
}

.air-quality-icon {
    background: #10B981;
}

.plumbing-icon {
    background: #3B82F6;
}

.electric-icon {
    background: #8B5CF6;
}

.service-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.service-item p {
    color: #6B7280;
    line-height: 1.6;
}

/* Booking Section */
.booking {
    padding: 80px 0;
    background: #EBF8FF;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.booking-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.booking-text p {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.booking-actions {
    display: flex;
    gap: 16px;
}

.booking-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.booking-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.booking-icon {
    width: 48px;
    height: 48px;
    background: #2563EB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.booking-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
}

.booking-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.booking-features .feature-item i {
    color: #10B981;
    font-size: 16px;
}

.booking-features .feature-item span {
    color: #374151;
    font-size: 14px;
}

/* Special Offer Section */
.special-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
}

.offer-content {
    text-align: center;
}

.offer-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #92400E;
    margin-bottom: 40px;
}

.offer-card {
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.price-section {
    margin-bottom: 24px;
}

.old-price {
    font-size: 32px;
    color: #9CA3AF;
    text-decoration: line-through;
    margin-right: 16px;
}

.new-price {
    font-size: 48px;
    font-weight: 800;
    color: #F97316;
}

.offer-title {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 32px;
}

.offer-benefits {
    margin-bottom: 32px;
    text-align: left;
}

.offer-benefits h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.offer-benefits ul {
    list-style: none;
    padding: 0;
}

.offer-benefits li {
    color: #6B7280;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.offer-benefits li:before {
    content: "•";
    color: #2563EB;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.disclaimer {
    margin: 32px 0;
    padding: 20px;
    background: #FEF3C7;
    border-radius: 12px;
    text-align: left;
    border-left: 4px solid #F59E0B;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.disclaimer-header i {
    color: #F59E0B;
}

.disclaimer-header span {
    font-size: 16px;
    font-weight: 600;
    color: #92400E;
}

.disclaimer p {
    font-size: 14px;
    color: #92400E;
    line-height: 1.5;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #F9FAFB;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 16px;
}

.contact-header p {
    font-size: 18px;
    color: #6B7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.technician-image {
    margin: 32px 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.technician-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.team-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
}

/* Colored input borders */
.input-purple {
    border-color: #8B5CF6 !important;
}

.input-purple:focus {
    border-color: #7C3AED !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.input-pink {
    border-color: #EC4899 !important;
}

.input-pink:focus {
    border-color: #DB2777 !important;
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.input-orange {
    border-color: #F97316 !important;
}

.input-orange:focus {
    border-color: #EA580C !important;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.input-green {
    border-color: #10B981 !important;
}

.input-green:focus {
    border-color: #059669 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.input-blue {
    border-color: #3B82F6 !important;
}

.input-blue:focus {
    border-color: #2563EB !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    min-width: 16px;
}

.checkbox-group label {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 400;
}

/* Service Area Section */
.service-area {
    padding: 80px 0;
    background: white;
}

.service-area-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.service-area-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-area-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.states-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.state-section {
    background: #F9FAFB;
    padding: 24px;
    border-radius: 12px;
}

.state-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.state-header i {
    color: #3B82F6;
    font-size: 18px;
}

.state-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.cities-grid span {
    padding: 6px 12px;
    background: white;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    color: #374151;
    transition: all 0.2s ease;
    cursor: pointer;
}

.cities-grid span:hover {
    background: #E5E7EB;
    transform: translateY(-1px);
}

.service-area-cta {
    text-align: center;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background: #F9FAFB;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.additional-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.feature-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.feature-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.feature-item p {
    color: #6B7280;
    line-height: 1.6;
}

/* Maintenance Plan Section */
.maintenance-plan {
    padding: 80px 0;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.plan-content {
    text-align: center;
}

.plan-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.plan-header p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.plan-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.plan-benefits .benefit-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.plan-benefits .benefit-item i {
    font-size: 28px;
    color: #FDE047;
}

.plan-benefits .benefit-item span {
    font-size: 16px;
    font-weight: 500;
}

/* Financing Section */
.financing {
    padding: 80px 0;
    background: #1F2937;
    color: white;
}

.financing-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.financing-header p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.financing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.financing-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.financing-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
}

.financing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #FDE047;
}

.financing-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.financing-item p {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.6;
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
    background: #F9FAFB;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 32px;
}

.cert-item {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.cert-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
}

.cert-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.cert-item p {
    font-size: 14px;
    color: #6B7280;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #EBF8FF;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.rating-score {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
}

.rating-stars {
    color: #F59E0B;
    font-size: 20px;
}

.rating-count {
    font-size: 16px;
    color: #6B7280;
}

.review-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
    position: relative;
}

.review-card:before {
    content: '\f10d'; /* FontAwesome quote-left icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 48px;
    color: #E5E7EB;
    z-index: 0;
}

.review-content {
    position: relative;
    z-index: 1;
}

.review-content blockquote {
    font-size: 18px;
    font-style: italic;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
    padding-left: 60px; /* Adjust for quote icon */
}

.review-author h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 4px;
}

.review-author p {
    font-size: 14px;
    color: #6B7280;
}

.reviews-cta {
    margin-top: 40px;
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4F46E5, #7C3AED);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.footer-logo-text h1 {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.footer-logo-text p {
    font-size: 11px;
    color: #D1D5DB;
    font-weight: 400;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: #D1D5DB;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #D1D5DB;
    font-size: 20px;
    transition: color 0.2s ease;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 12px;
    color: #9CA3AF;
}

.footer-bottom p {
    margin: 0;
}

/* Confirmation Message for Form */
.confirmation-message {
    margin-top: 20px;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
}

.confirmation-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.confirmation-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-services {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .booking-text {
        text-align: center;
    }

    .booking-actions {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-area-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-area-image {
        order: -1; /* Move image to top on smaller screens */
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .additional-features {
        grid-template-columns: 1fr;
    }

    .plan-benefits {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .financing-features {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .certifications-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .review-card blockquote {
        padding-left: 20px;
    }

    .review-card:before {
        font-size: 36px;
        top: 15px;
        left: 15px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 15px;
    }

    .nav {
        order: 3; /* Move nav below actions */
        margin-top: 15px;
    }

    .nav-services {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .header-actions {
        width: 100%;
        justify-content: center;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .booking {
        padding: 60px 0;
    }

    .booking-text h2 {
        font-size: 32px;
    }

    .special-offer {
        padding: 60px 0;
    }

    .offer-header h2 {
        font-size: 32px;
    }

    .offer-card {
        padding: 30px;
    }

    .new-price {
        font-size: 40px;
    }

    .offer-title {
        font-size: 24px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-header h2 {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-area {
        padding: 60px 0;
    }

    .service-area-text h2 {
        font-size: 32px;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-us {
        padding: 60px 0;
    }

    .why-choose-us .section-header h2 {
        font-size: 32px;
    }

    .maintenance-plan {
        padding: 60px 0;
    }

    .plan-header h2 {
        font-size: 32px;
    }

    .plan-benefits {
        grid-template-columns: 1fr;
    }

    .financing {
        padding: 60px 0;
    }

    .financing-header h2 {
        font-size: 32px;
    }

    .financing-features {
        grid-template-columns: 1fr;
    }

    .certifications {
        padding: 60px 0;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews {
        padding: 60px 0;
    }

    .reviews .section-header h2 {
        font-size: 32px;
    }

    .review-card {
        padding: 20px;
    }

    .review-content blockquote {
        font-size: 16px;
    }

    .footer-nav ul {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .promo-banner span {
        font-size: 12px;
    }

    .header-actions {
        flex-direction: column;
        gap: 10px;
    }

    .header-actions .btn {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .booking-text h2 {
        font-size: 28px;
    }

    .booking-actions {
        flex-direction: column;
    }

    .offer-header h2 {
        font-size: 28px;
    }

    .new-price {
        font-size: 36px;
    }

    .offer-title {
        font-size: 20px;
    }

    .contact-header h2 {
        font-size: 28px;
    }

    .service-area-text h2 {
        font-size: 28px;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-us .section-header h2 {
        font-size: 28px;
    }

    .maintenance-plan .plan-header h2 {
        font-size: 28px;
    }

    .financing-header h2 {
        font-size: 28px;
    }

    .certifications .section-header h2 {
        font-size: 28px;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .reviews .section-header h2 {
        font-size: 28px;
    }

    .review-card blockquote {
        font-size: 14px;
    }

    .footer-nav ul {
        gap: 10px;
    }
}



/* Media Queries para Responsividade */

/* Telas maiores que 1024px (desktops e laptops) */
@media (min-width: 1025px) {
    .nav-services {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }
}

/* Telas entre 769px e 1024px (tablets em paisagem e alguns laptops menores) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .logo {
        margin-bottom: 10px;
    }

    .nav {
        width: 100%;
        order: 3; /* Move a navegação para baixo */
        margin-top: 10px;
    }

    .nav-services {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 5px;
    }

    .nav-item {
        font-size: 12px;
        padding: 8px 0;
        height: 35px;
    }

    .header-actions {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-actions, .hero-buttons {
        justify-content: center;
    }

    .hero-services {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .booking-actions {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-area-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-area-image {
        order: -1; /* Move a imagem para cima em telas menores */
    }

    .states-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid, .additional-features {
        grid-template-columns: 1fr;
    }

    .plan-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .financing-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .certifications-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .review-card blockquote {
        padding-left: 20px;
    }

    .review-card:before {
        font-size: 36px;
        top: 15px;
        left: 15px;
    }

    .footer-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Telas entre 481px e 768px (smartphones grandes e tablets em retrato) */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .logo {
        margin-bottom: 15px;
    }

    .nav {
        order: 3;
        margin-top: 15px;
    }

    .nav-services {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 5px;
    }

    .nav-item {
        font-size: 11px;
        padding: 6px 0;
        height: 30px;
    }

    .header-actions {
        flex-direction: column;
        gap: 10px;
    }

    .header-actions .btn {
        width: 100%;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .booking {
        padding: 60px 0;
    }

    .booking-text h2 {
        font-size: 30px;
    }

    .special-offer {
        padding: 60px 0;
    }

    .offer-header h2 {
        font-size: 30px;
    }

    .offer-card {
        padding: 25px;
    }

    .new-price {
        font-size: 40px;
    }

    .offer-title {
        font-size: 22px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact-header h2 {
        font-size: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .service-area {
        padding: 60px 0;
    }

    .service-area-text h2 {
        font-size: 30px;
    }

    .states-grid {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-us {
        padding: 60px 0;
    }

    .why-choose-us .section-header h2 {
        font-size: 30px;
    }

    .maintenance-plan {
        padding: 60px 0;
    }

    .plan-header h2 {
        font-size: 30px;
    }

    .plan-benefits {
        grid-template-columns: 1fr;
    }

    .financing {
        padding: 60px 0;
    }

    .financing-header h2 {
        font-size: 30px;
    }

    .financing-features {
        grid-template-columns: 1fr;
    }

    .certifications {
        padding: 60px 0;
    }

    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews {
        padding: 60px 0;
    }

    .reviews .section-header h2 {
        font-size: 30px;
    }

    .review-card {
        padding: 20px;
    }

    .review-content blockquote {
        font-size: 15px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* Telas menores que 480px (smartphones pequenos) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .promo-banner span {
        font-size: 11px;
    }

    .close-banner {
        right: 5px;
    }

    .logo-text h1 {
        font-size: 20px;
    }

    .logo-text p {
        font-size: 10px;
    }

    .nav-services {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }

    .nav-item {
        font-size: 10px;
        padding: 5px 0;
        height: 28px;
    }

    .header-actions .btn {
        font-size: 12px;
        padding: 10px 15px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .hero-services {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 15px;
    }

    .booking-text h2 {
        font-size: 26px;
    }

    .booking-actions {
        flex-direction: column;
    }

    .offer-header h2 {
        font-size: 26px;
    }

    .new-price {
        font-size: 36px;
    }

    .offer-title {
        font-size: 20px;
    }

    .offer-card {
        padding: 15px;
    }

    .contact-header h2 {
        font-size: 26px;
    }

    .technician-image img {
        height: 250px;
    }

    .team-info h3 {
        font-size: 20px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input, .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }

    .checkbox-group label {
        font-size: 12px;
    }

    .service-area-text h2 {
        font-size: 26px;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-us .section-header h2 {
        font-size: 26px;
    }

    .feature-item h3 {
        font-size: 20px;
    }

    .maintenance-plan .plan-header h2 {
        font-size: 26px;
    }

    .plan-benefits .benefit-item span {
        font-size: 14px;
    }

    .financing-header h2 {
        font-size: 26px;
    }

    .financing-item h3 {
        font-size: 20px;
    }

    .certifications .section-header h2 {
        font-size: 26px;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .cert-item h3 {
        font-size: 18px;
    }

    .reviews .section-header h2 {
        font-size: 26px;
    }

    .rating-score {
        font-size: 24px;
    }

    .rating-stars {
        font-size: 18px;
    }

    .rating-count {
        font-size: 14px;
    }

    .review-card blockquote {
        font-size: 14px;
        padding-left: 15px;
    }

    .review-card:before {
        font-size: 30px;
        top: 10px;
        left: 10px;
    }

    .footer-nav ul {
        flex-direction: column;
        gap: 8px;
        
    }
    

    .footer-nav a {
        font-size: 12px;
    }

    .social-links {
        gap: 15px;
    }

    .social-links a {
        font-size: 18px;
    }

    .footer-bottom {
        font-size: 11px;
    }
}

.hero-buttons button {
    display: none;
}