/* ===========================
   RESET E VARIÁVEIS GLOBAIS
   =========================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFA500;
    --secondary-color: #000000;
    --verde-color: #00B301;
    --text-color: #333333;
    --light-bg: #f5f5f5;
    --border-color: #e0e0e0;
    --success-color: #25D366;
    --danger-color: #FF0000;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* SVG Icons */
.icon-svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.info-icon-svg {
    color: var(--primary-color);
}

/* ===========================
   HEADER E NAVEGAÇÃO
   =========================== */

.header {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 14px;
}

.nav-list a:hover {
    color: var(--primary-color);
}

.header-call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-call-btn:hover {
    background-color: #ff9500;
}

.phone-text {
    font-size: 14px;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 165, 0, 0.2);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero strong {
    color: var(--primary-color);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #ff9500;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--light-bg);
    padding: 40px 20px;
    border-radius: 10px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-color);
    font-size: 14px;
}

/* ===========================
   SERVIÇOS
   =========================== */

.servicos {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.servicos h2,
.areas h2,
.por-que-escolher h2,
.depoimentos h2,
.contato h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.servico-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.servico-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.servico-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.servico-card:hover .servico-image img {
    transform: scale(1.05);
}

.servico-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.servico-content h3 {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 14px;
}

.servico-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 28px;  
}

.btn-servico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--success-color);
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-servico:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===========================
   ÁREAS ATENDIDAS
   =========================== */

.areas {
    padding: 60px 20px;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.area-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.area-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.area-card ul {
    list-style: none;
}

.area-card li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.area-card li:last-child {
    border-bottom: none;
}

.areas-contact {
    text-align: center;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 10px;
    max-width: 1200px;
    margin: 0 auto;
}

.areas-contact p {
    font-size: 16px;
    color: var(--text-color);
}

.link-destaque {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.link-destaque:hover {
    color: #ff9500;
    text-decoration: underline;
}

/* ===========================
   POR QUE ESCOLHER
   =========================== */

.por-que-escolher {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.por-que-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.por-que-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.por-que-text p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

.por-que-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature {
    display: flex;
    gap: 15px;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.feature-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* ===========================
   GALERIA DE IMAGENS
   =========================== */
.galeria {
    padding: 80px 20px;
    background-color: var(--light-bg);
}

.galeria h2 {
    text-align: center;
    margin-bottom: 15px;
}

.gallery-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 16px;
}

.gallery-track {
    display: flex;
    gap: 18px;
    transition: transform 0.6s cubic-bezier(0.32, 0.72, 0, 1);
    padding: 10px 0;
}

.gallery-item {
    flex-shrink: 0;
    width: calc((100% - 90px) / 6);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.04);
}

.gallery-item img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background-color: rgba(255, 165, 0, 0.95);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: -28px;
}

.slider-arrow.next {
    right: -28px;
}

/* ===========================
   DEPOIMENTOS
   =========================== */

.depoimentos {
    padding: 60px 20px;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.depoimento-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stars {
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.depoimento-texto {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    font-style: italic;
}

.depoimento-autor {
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 5px;
}

.depoimento-local {
    color: var(--primary-color);
    font-size: 13px;
}

/* ===========================
   CTA SECTION
   =========================== */

.cta-section {
    background: linear-gradient(135deg, #FFA500 0%, #ff9500 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===========================
   FORMULÁRIO DE CONTATO
   =========================== */

.contato {
    padding: 60px 20px;
    background-color: var(--light-bg);
}

.contato-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 100%;
    margin: 0 auto;
}

.contato-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    display: block;
    color: var(--danger-color);
    font-size: 12px;
    margin-top: 5px;
}

.contato-info {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contato-info h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: var(--text-color);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.info-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 14px;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #ff9500;
}

.info-item p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    flex-wrap: wrap;
}
/* Social buttons com ícones */
.social-links a svg {
    margin-right: 6px;
    vertical-align: middle;
}

.social-btn {
    flex: 1;
    min-width: 100px;
    padding: 10px;
    background-color: var(--light-bg);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}


/* ===========================
   FOOTER
   =========================== */

.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 40px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-section p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-divider {
    border: none;
    border-top: 1px solid #444;
    margin: 20px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    color: #999;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    margin: 5px 0;
}

/* ===========================
   BOTÕES FLUTUANTES
   =========================== */

.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.floating-call {
    background-color: var(--danger-color);
    color: white;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: auto;
}

.floating-call:hover {
    background-color: #cc0000;
    transform: scale(1.1);
}

.floating-whatsapp {
    background-color: var(--success-color);
    color: white;
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: auto;
}

.floating-whatsapp:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ===========================
   RESPONSIVIDADE MOBILE
   =========================== */

@media (max-width: 768px) {
    /* Header Mobile */
    .header-container {
        padding: 0 15px;
        gap: 10px;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    .menu-toggle {
        display: flex;
        order: 2;
    }

    .nav-menu {
        flex: 0;
    }

    .nav-list {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--secondary-color);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .nav-list.active {
        max-height: 500px;
        padding: 20px 0;
    }

    .nav-list li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #444;
    }

    .nav-list a {
        display: block;
        padding: 15px;
    }

    .header-call-btn {
        order: 3;
        padding: 8px 12px;
        font-size: 12px;
    }

    .phone-text {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    /* Serviços Mobile */
    .servicos {
        padding: 40px 15px;
    }

    .servicos h2 {
        font-size: 26px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Áreas Mobile */
    .areas {
        padding: 40px 15px;
    }

    .areas h2 {
        font-size: 26px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Por que escolher Mobile */
    .por-que-escolher {
        padding: 40px 15px;
    }

    .por-que-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .por-que-text h2 {
        text-align: center;
        font-size: 26px;
    }

    .por-que-features {
        grid-template-columns: 1fr;
    }

    /* Galeria Mobile */
    .galeria {
        padding: 40px 15px;
    }

    .gallery-item {
        width: calc((100% - 18px) / 2);
    }

    .gallery-item img {
        height: 220px;
    }

    .slider-arrow {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }

    .slider-arrow.prev {
        left: -22px;
    }

    .slider-arrow.next {
        right: -22px;
    }

    /* Depoimentos Mobile */
    .depoimentos {
        padding: 40px 15px;
    }

    .depoimentos h2 {
        font-size: 26px;
    }

    .depoimentos-grid {
        grid-template-columns: 1fr;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 40px 15px;
    }

    .cta-section h2 {
        font-size: 26px;
    }

    /* Contato Mobile */
    .contato {
        padding: 40px 15px;
    }

    .contato h2 {
        font-size: 26px;
    }


    
.contato-wrapper {
    display: flex;
    flex-direction: column; /* Empilha por padrão (mobile-first) */
    gap: 20px;
    width: 100%;
    margin: 0 auto;
}
    

    .contato-form,
    .contato-info {
        padding: 20px;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Botões Flutuantes Mobile */
    .floating-btn {
        width: 56px;
        height: 56px;
    }

    .floating-call {
        bottom: 15px;
        left: 15px;
    }

    .floating-whatsapp {
        bottom: 15px;
        right: 15px;
    }
}


/* Correção das setas da galeria no mobile */
@media (max-width: 640px) {
    .slider-arrow.prev { left: 12px; }
    .slider-arrow.next { right: 12px; }
    .gallery-slider {
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    /* Container extra small */
    .container {
        padding: 0 15px;
    }

    /* Header Extra Small */
    .header-container {
        padding: 0 10px;
    }

    .logo {
        width: 35px;
        height: 35px;
    }

    /* Hero Extra Small */
    .hero {
        padding: 30px 10px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

    /* Títulos Extra Small */
    .servicos h2,
    .areas h2,
    .por-que-escolher h2,
    .depoimentos h2,
    .cta-section h2,
    .contato h2,
    .galeria h2 {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* Cards Extra Small */
    .servico-card,
    .area-card,
    .depoimento-card,
    .contato-form,
    .contato-info {
        padding: 15px;
    }

    .servico-content h3 {
        font-size: 18px;
        
    }

    .servico-content p {
        font-size: 13px;
    }

    /* Feature Extra Small */
    .feature {
        gap: 10px;
    }

    .feature-icon {
        font-size: 24px;
    }

    .feature-content h4 {
        font-size: 14px;
    }

    .feature-content p {
        font-size: 12px;
    }

    /* Galeria Extra Small */
    .gallery-item {
        width: 100%;
    }

    .gallery-item img {
        height: 200px;
    }

    .slider-arrow {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .slider-arrow.prev {
        left: 8px; 
    }

    .slider-arrow.next {
        right: 8px;
    }

    /* Formulário Extra Small */
    
    
    
    .contato-form {
        padding: 18px !important;           /* reduz padding interno */
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .form-group {
        margin-bottom: 16px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;                 /* padding mais confortável */
        font-size: 15px;
    }


.btn.btn-primary.btn-block {
        padding: 15px 20px;
        font-size: 15.5px;
        margin-top: 10px;
    }

    /* Garante que nada dentro do form ultrapasse */
    .contato-form * {
        max-width: 100%;
        box-sizing: border-box;
    }


    .form-group label {
        font-size: 13px;
    }

    /* Botões Flutuantes Extra Small */
    .floating-btn {
        width: 50px;
        height: 50px;
    }

    .floating-call {
        bottom: 10px;
        left: 10px;
    }

    .floating-whatsapp {
        bottom: 10px;
        right: 10px;
    }

    /* Footer Extra Small */
    .footer {
        padding: 30px 15px 15px;
    }

    .footer-section h4 {
        font-size: 16px;
    }

    .footer-section p,
    .footer-section a {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 11px;
    }
}

/* Ajuste extra para telas muito pequenas (ex: iPhone SE, Galaxy pequeno) */
@media (max-width: 360px) {
    .contato-form {
        padding: 16px !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 11px 12px;
        font-size: 14.5px;
    }
}

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 30px 15px;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        padding: 20px 15px;
    }
}



/* ===========================
   SEÇÃO LOCALIDADE DESTAQUE
   =========================== */
.localidade-destaque {
    background-color: #ffffff;
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.localidade-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.localidade-texto {
    flex: 2;
}

.localidade-texto h3 {
    color: var(--secondary-color);
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
}

.localidade-texto h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--primary-color);
}

.localidade-texto p {
    font-size: 15px;
    color: #555;
    margin-bottom: 10px;
}

.localidade-selo {
    flex: 1;
    display: flex;
    justify-content: center;
}

.selo-circular {
    width: 140px;
    height: 140px;
    border: 3px dashed var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    transform: rotate(-10deg);
}

.selo-circular span {
    font-size: 13px;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.selo-circular strong {
    font-size: 18px;
    color: var(--primary-color);
    display: block;
}

@media (max-width: 768px) {
    .localidade-grid {
        flex-direction: column;
        text-align: center;
    }
    .localidade-texto h3 {
        padding-left: 0;
    }
    .localidade-texto h3::before {
        display: none;
    }
}