/*
================================================
TABELA DE CONTEÚDOS
------------------------------------------------
1. GERAL & VARIÁVEIS
2. ANIMAÇÕES GLOBAIS & EFEITOS
3. SCROLLBAR
4. HEADER & NAVEGAÇÃO
5. SEÇÃO HERO
6. SEÇÃO SERVIÇOS
7. SEÇÃO PROJETOS
8. SEÇÃO SOBRE NÓS
9. SEÇÃO MAPA SVG
10. SEÇÃO AVALIAÇÕES (TESTIMONIALS)
11. SEÇÃO CLIENTES
12. SEÇÃO FAQ
13. SEÇÃO CONTATO
14. RODAPÉ (FOOTER)
15. RESPONSIVIDADE (MEDIA QUERIES)
================================================
*/

/* --- 1. GERAL & VARIÁVEIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #074654;
    --gold-color: #f6b406;
    /* --secondary-color: #0A687D;  <-- REMOVIDO */
    --accent-color: #11ACCF;
    --accent-light: #13C9F2;
    --whats: #25d366;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --success: #059669;
    --warning: #f59e0b;
    --gradient: linear-gradient(135deg, #074654 0%, #0A687D 100%);
    --accent-gradient: linear-gradient(135deg, #13C9F2 0%, #11ACCF 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--white);
    opacity: 1;
    /* Para animação de load */
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-bottom: 2rem;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.whats {
    background: var(--whats) !important;
}

/* --- 2. ANIMAÇÕES GLOBAIS & EFEITOS --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleAnimation 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn-primary,
.btn-secondary,
.learn-more {
    position: relative;
    overflow: hidden;
}

/* --- 3. SCROLLBAR --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* --- 4. HEADER & NAVEGAÇÃO --- */
header {
    background: rgba(15, 23, 42, 0);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 100px;
}

.logo-img {
    height: 70%;
    transition: height 0.3s ease;
}

header.scrolled .logo-img {
    height: 65%;
}

header.scrolled h1 {
    font-size: 1.5rem;
}

header.scrolled .logo-subtitle {
    font-size: 1rem !important;
}

header.scrolled .logo {
    height: 80px;
}

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

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: font-size 0.5s ease
}

.logo-subtitle {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    transition: font-size 0.5s ease
}

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

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-button {
    background: var(--accent-gradient);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* --- 5. SEÇÃO HERO --- */
.hero {
    display: flex;
    align-items: center;
    background: var(--gradient);
    padding: 175px 0 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 100vh;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.7);
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/*
.hero .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} <-- REMOVIDO */

.hero .highlightgold {
    color: var(--gold-color);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* --- 6. SEÇÃO SERVIÇOS --- */
.services {
    background: var(--gray-50);
    padding-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-icon img {
    width: 38px;
    height: 38px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--success);
    font-size: 0.8rem;
}

.learn-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.learn-more:hover {
    gap: 1rem;
}

/* --- 7. SEÇÃO PROJETOS --- */
.projects {
    overflow-x: hidden;
}

.projects-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.project-entry {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.project-entry:nth-child(even) .project-description {
    order: -1;
}

.project-gallery,
.project-description {
    flex-basis: 50%;
    flex-grow: 0;
}

.project-gallery {
    position: relative;
    height: 600px;
}

.project-swiper {
    width: 100%;
    height: 100%;
}

.project-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    object-position: center;
}

.project-description h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-description p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.project-description ul {
    list-style: none;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.project-description ul li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.project-description ul li i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* --- 8. SEÇÃO SOBRE NÓS --- */
.about {
    padding-top: 100px;
    background: var(--gray-100);
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-features {
    list-style: none;
    margin: 2rem 0;
}

.about-features li {
    padding: 0.8rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
}

.about-features li i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 20px;
}

.about-image {
    position: relative;
    align-self: center;
    max-height: 100%;
}

/* --- 9. SEÇÃO MAPA SVG --- */
.box-mapa {
    position: relative;
    padding: 0;
}

#map {
    width: 100%;
    max-width: 480px;
    height: auto;
}

#map .state {
    cursor: pointer;
}

#map .state .shape {
    transition: all .3s ease-in-out;
}

#map .state .label_icon_state {
    fill: #666;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: normal;
    pointer-events: none;
}

#map .state:hover .label_icon_state {
    fill: #FFF;
}

#map .state .label_state {
    display: none;
}

#map .model-davi .state .shape {
    fill: #ddd;
    stroke: #FFF;
    stroke-width: 1px;
}

#shape_rs,
#shape_sc,
#shape_pr,
#shape_sp,
#shape_ms,
#shape_rj,
#shape_es,
#shape_mg {
    fill: #FFA500 !important;
}

#map .model-davi .state:hover .shape {
    fill: #d7dbdd;
}

#icon_df {
    fill: #d7dbdd;
}

#state_rs:hover .shape,
#state_sc:hover .shape,
#state_pr:hover .shape,
#state_sp:hover .shape,
#state_ms:hover .shape,
#state_mg:hover .shape {
    fill: #E59400 !important;
}

/* --- 10. SEÇÃO AVALIAÇÕES (TESTIMONIALS) --- */
.testimonials {
    padding-bottom: 80px;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 2.5rem;
    border-top: 4px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.stars {
    color: var(--warning);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.quote {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.quote::before {
    content: '“';
    font-size: 3rem;
    color: var(--gray-200);
    position: absolute;
    margin-left: -2.5rem;
    margin-top: -1.5rem;
}

.author {
    text-align: right;
    font-weight: 600;
}

.author h4 {
    color: var(--text-dark);
}

.author p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

/* --- 11. SEÇÃO CLIENTES --- */
.clients {
    padding-bottom: 80px;
    background: var(--gray-100);
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.client-logos img {
    height: 100px;
    max-width: 300px;
    filter: grayscale(1) opacity(0.7);
    transition: all 0.3s ease;
    aspect-ratio: 3/2;
    object-fit: contain;
    mix-blend-mode: color-burn;
}

.client-logos img:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.1);
}

/* --- 12. SEÇÃO FAQ --- */
.faq {
    padding-bottom: 100px;
    background: var(--gray-50);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--gray-100);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--accent-color);
    transition: transform 0.3s ease-in-out;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1.0), padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    padding-bottom: 1.5rem;
}

/* --- 13. SEÇÃO CONTATO --- */
.contact {
    padding: 100px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 4rem 0;
}

.contact-item {
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.1);
}

.contact-item h3 {
    font-size: 1.2rem;
}

.contact-item p {
    opacity: 0.8;
}

/* --- 14. RODAPÉ (FOOTER) --- */
footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    text-align: center;
}

.footer-main {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    margin-bottom: 0;
}

.footer-title-group {
    text-align: left;
}

.footer-title-group h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.footer-title-group .footer-subtitle {
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

.footer-socials {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-socials a.facebook-icon:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
    transform: translateY(-3px);
}

.footer-socials a.instagram-icon:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
    border: none;
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    opacity: 0.6;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* --- 15. RESPONSIVIDADE (MEDIA QUERIES) --- */

/* Telas maiores (Desktop) */
@media (min-width: 993px) {

    /* Efeito full-bleed nos projetos */
    .project-entry:nth-child(odd) .project-gallery {
        clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
        width: 50vw;
        margin-left: calc(50% - 50vw);
    }

    .project-entry:nth-child(even) .project-gallery {
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
        width: 50vw;
        margin-right: calc(50% - 50vw);
    }
}

/* Telas de Tablet */
@media (max-width: 992px) {
    .nav-cta {
        display: none;
    }

    .project-entry,
    .project-entry:nth-child(even) {
        flex-direction: column !important;
        gap: 2rem;
    }

    .project-gallery {
        width: 100%;
        height: 350px;
        clip-path: none !important;
        border-radius: 20px;
        overflow: hidden;
    }

    .project-description {
        text-align: center;
    }

    /* .project-description ul { */
    /* align-items: center; */
    /* } */
    .project-description ul {
        text-align: left;
    }
}

/* Telas de Celular */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    /* Menu mobile */
    .mobile-menu-btn {
        display: flex;
    }

    header {
        padding: 0;
    }

    /* .hero-content {
        padding-top: 100px;
    } */

    .hero-stats {
        display: flex;
        flex-direction: column;
    }

    .project-description {
        order: -1;
        padding-top: 50px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(17, 172, 207, 0.39);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transform: translateX(100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
    }

    body.menu-open .nav-menu {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
    }

    body.menu-open header {
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    body.menu-open {
        overflow: hidden;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 250px;
        justify-content: center;
    }

    .projects-container {
        gap: 0;
    }

    .project-swiper .swiper-slide img {
        /* width: 80vw; */
        height: 300px;
        object-fit: contain;
        object-position: center;
    }

    .services-grid {
        grid-template-columns: auto;
    }

    .clients {
        padding: 0;
        padding-bottom: 20px;
    }

    .section-header {
        padding-top: 50px;
    }

    .faq {
        padding: 0;
        padding-bottom: 20px;
    }

    .contact {
        padding-top: 50px;
        padding-bottom: 20px;
    }

    .about {
        padding: 0;
        padding-top: 50px;
    }

    .testimonials {
        padding-bottom: 20px;
    }

    /* Sobre */
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    #map {
        transform: scale(0.75);
    }

    /* Footer */
    .footer-main {
        flex-direction: column;
        gap: 1.5rem;
        border-bottom: none;
    }

    .footer-title-group {
        text-align: center;
    }
}

/* Telas pequenas de Celular */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .logo-img {
        height: 60px;
    }

    header.scrolled {

        .logo-img {
            height: 45px;
        }

        .logo h1 {
            font-size: 1rem;
        }

        .logo {
            height: 50px;
        }

        .logo-subtitle {
            font-size: 0.7rem;
        }
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* --- Ajuste para as logos dos clientes --- */
    .client-logos img {
        height: 60px;
        max-width: 200px;
    }

    .client-logos {
        gap: 2rem;
    }
}

/* Regras de Foco para Acessibilidade */
.nav-menu a:focus,
.btn-primary:focus,
.btn-secondary:focus,
.cta-button:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
}

.whatsapp-button img {
    width: 60px;
}

@media screen and (max-width: 768px) {
    .whatsapp-button {
        display: block;
    }
}