/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis CSS para as cores especificadas */
:root {
    --primary-color: #D29600;
    --secondary-color: #1B3240;
    --accent-color: #203140;
    --text-color: #464646;
    --light-color: #EFEFEF;
    --white: #ffffff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    padding-top: 80px; /* Compensar altura do cabeçalho fixo */
}

/* Garantir que todos os elementos usem Proxima Nova, exceto ícones */
*:not([class*="fa-"]):not(.fab):not(.fas):not(.far):not(.fal):not(.fad):not(.fass):not(.fasr):not(.fasl):not(.fat):not(.fak) {
    font-family: var(--font-family);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family);
}

.btn, button, input, textarea, select {
    font-family: var(--font-family);
}

p, span:not([class*="fa-"]):not(.fab):not(.fas):not(.far):not(.fal):not(.fad):not(.fass):not(.fasr):not(.fasl):not(.fat):not(.fak), div, a, li, td, th {
    font-family: var(--font-family);
}

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

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

/* Botão Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-right: 45px;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Agrupa menu e ícones sociais à direita */
.nav-social-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.nav {
    display: flex;
    align-items: center;
}

/* Ícones das Redes Sociais */
.header-social {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-right: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon.instagram {
    background-color: #6c757d;
    color: white;
    margin-left: 25px;
}

.social-icon.instagram:hover {
    background-color: #E4405F;
    transform: scale(1.1);
}

.social-icon.linkedin {
    background: linear-gradient(135deg, #C69400, #C69400);
    color: white;
}

.social-icon.linkedin:hover {
    background-color: #0077B5;
    transform: scale(1.1);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 1.5rem 0;
}

.footer-social .social-icon {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
}

.logo-img {
    width: 150px;
    height: auto;
}

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

.nav-list a {
    text-decoration: none;
    color: #666666; /* Cor cinza escuro para itens normais */
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-list a.active {
    color: var(--primary-color); /* HOME em dourado */
}

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

/* Hero Section */
.hero {
    background-image: 
        linear-gradient(135deg, rgba(198, 148, 0, 0.8) 0%, rgba(198, 148, 0, 0.8) 100%),
        url('background.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 80px 0;
    display: flex;
    align-items: center;
    text-align: center;
}



.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.825rem;
    margin-top: 20px;
    line-height: 1.1;
    font-family: var(--font-family);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
}

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

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.425rem;
    font-family: var(--font-family);
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 600px;
    margin: -0.5rem auto 1.5rem auto;
}

/* About Section */
/* Sobre Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* História da Empresa */
.about-story {
    margin-bottom: 4rem;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.story-text h3 {
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: var(--font-family);
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.story-highlight {
    display: flex;
    justify-content: center;
}

.highlight-card {
    background: white;
    color: var(--primary-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
    border: 2px solid var(--primary-color);
}

.highlight-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--primary-color);
}

.highlight-card h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.highlight-card p {
    font-size: 1rem;
    opacity: 1;
    color: var(--text-color);
}

/* Diferenciais */
.about-differentials {
    margin-bottom: 4rem;
}

.about-differentials h3 {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
    font-family: var(--font-family);
}

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

.differential-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-color);
}

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

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2rem;
    color: white;
}

.differential-card h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.differential-card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Estatísticas */
.about-stats {
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 500;
}

/* Serviços Especializados */
.about-services {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.services-intro h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-family);
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.specialty-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.specialty-item:hover {
    background: linear-gradient(135deg, #C69400, #C69400);
    color: white;
    transform: translateX(5px);
}

.specialty-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.specialty-item:hover i {
    color: white;
}

.specialty-item span {
    font-weight: 500;
    font-size: 1rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--white);
}

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

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: var(--font-family);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Differentials Section */
.differentials {
    padding: 80px 0;
    background-color: var(--light-color);
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.differential-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.differential-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.differential-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: var(--font-family);
}

.differential-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #C69400;
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
}

.contact .section-subtitle {
    color: var(--light-color);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: #FEFEFE;
    border-radius: 20px !important;
    color: var(--text-color);
    overflow: hidden;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-cta {
    text-align: center;
    padding: 2rem;
    background-color: #FEFEFE;
    border-radius: 20px !important;
    color: var(--text-color);
    overflow: hidden;
    box-sizing: border-box;
    -webkit-border-radius: 20px !important;
    -moz-border-radius: 20px !important;
}

.contact-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-family: var(--font-family);
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Garantir que todos os elementos dentro do contact-cta respeitem o border-radius */
.contact-cta * {
    box-sizing: border-box;
}

/* Footer */
.footer {
    background-color: #4A3023;
    color: var(--light-color);
    padding: 2rem 0;
}

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

.footer-info {
    width: 100%;
}

.footer-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--light-color);
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.footer-contact span {
    font-size: 0.95rem;
    color: var(--light-color);
    font-weight: 500;
}

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        font-family: var(--font-family);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
        font-family: var(--font-family);
    }
    
    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .contact-info {
        width: 100%;
        max-width: 100%;
    }
    
    .contact-item {
        padding: 1.2rem;
        margin: 0 0.5rem;
        box-sizing: border-box;
        width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        border-radius: 20px !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        overflow: hidden;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-details {
        flex: 1;
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .contact-details p {
         font-size: 0.9rem;
         word-break: keep-all;
         overflow-wrap: break-word;
         white-space: normal;
         overflow: visible;
         text-overflow: clip;
     }
     
     .contact-link {
         color: inherit;
         text-decoration: none;
         transition: text-decoration 0.3s ease;
     }
     
     .contact-link:hover {
         text-decoration: underline;
     }
    
    .contact-cta {
        padding: 1.5rem 1rem;
        margin: 0;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        border-radius: 20px !important;
        -webkit-border-radius: 20px !important;
        -moz-border-radius: 20px !important;
        overflow: hidden;
    }
    
    .contact {
        padding: 40px 1rem;
        overflow-x: hidden;
        width: 100%;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-contact span {
        font-size: 0.9rem;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        flex-direction: column;
    }
    
    /* Responsividade para nova seção Sobre */
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .highlight-card {
        transform: none;
        margin-top: 2rem;
    }
    
    .differentials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1rem;
        max-width: 100%;
    }
    
    .about-services {
        padding: 2rem 1.5rem;
    }
    
    .story-text h3,
    .about-differentials h3,
    .services-intro h3,
    .service-card h3,
    .differential-item h3,
    .contact-cta h3 {
        font-size: 1.6rem;
        font-family: var(--font-family);
    }
}
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.differential-item,
.stat-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Botão WhatsApp Fixo */
.whatsapp-float {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: white;
}

.whatsapp-float i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Botão Voltar ao Topo */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #C69400, #C69400);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

/* RESPONSIVIDADE - MEDIA QUERIES */

/* Mobile e Tablet */
@media (max-width: 768px) {
    /* Header Mobile */
    .header .container {
        padding: 1rem 15px;
    }
    
    .hamburger {
        display: flex !important;
    }
    
    .nav-social-group {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: left 0.3s ease;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .nav-social-group.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .nav-list a {
        font-size: 1.1rem;
        padding: 1rem;
        display: block;
        border-bottom: 1px solid #eee;
        width: 200px;
        text-align: center;
    }
    
    .header-social {
        gap: 2rem;
        margin-right: 15px;
    }
    
    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .social-icon.instagram {
        margin-left: 0;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-top: 15px;
        font-family: var(--font-family);
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* Sections Mobile */
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.625rem;
        font-family: var(--font-family);
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin: -0.5rem auto 2rem auto;
    }
    
    /* About Section Mobile - Nossa História */
    .about {
        padding: 3rem 0;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
    
    .story-text h3 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .story-text p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
        text-align: justify;
    }
    
    .highlight-card {
        padding: 2rem 1.5rem;
        margin: 2rem auto 0;
        max-width: 280px;
        transform: none;
    }
    
    .highlight-card h4 {
        font-size: 1.3rem;
    }
    
    .highlight-card p {
        font-size: 0.9rem;
    }
    
    .about-differentials h3,
    .about-services .services-intro h3,
    .service-card h3,
    .differential-item h3,
    .contact-cta h3 {
        font-size: 1.2rem;
        text-align: center;
        margin-bottom: 1.5rem;
        font-family: var(--font-family);
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .differential-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
    }
    
    .specialty-item {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .differential-card {
        padding: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 2rem 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .footer-social {
        margin: 1rem 0;
    }
    
    .footer-social .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    /* Ajustes gerais mobile */
    .logo-img {
        width: 120px;
    }
    
    .whatsapp-float {
        left: 10px;
        bottom: 10px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .back-to-top {
        right: 10px;
        bottom: 10px;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

/* Final Banner */
.final-banner {
    background-color: #203140;
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.final-banner-content p {
    margin: 1rem 0;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--white);
}

.final-banner-content p:first-child {
    font-size: 1.6rem;
    color: var(--white);
}

.final-banner-content strong {
    color: var(--primary-color);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #C69400, #C69400);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #b8820a;
    transform: translateY(-2px);
    color: var(--white);
    text-decoration: none;
}

.btn-contact i {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .final-banner {
        padding: 40px 0;
    }
    
    .final-banner-content p {
        font-size: 1.2rem;
    }
    
    .final-banner-content p:first-child {
        font-size: 1.4rem;
    }
    
    .btn-contact {
        font-size: 1rem;
        padding: 12px 25px;
    }
}

/* Offset para âncoras devido ao header fixo */
#proposito, #como-fazemos, #servicos, #diferenciais, #contato {
    scroll-margin-top: 100px;
}