/*
Theme Name: 5àsec Theme
Theme URI: https://example.com/
Author: Seu Nome
Author URI: https://example.com/
Description: Tema WordPress baseado em HTML estático da 5àsec
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: 5asec-theme
*/

/* Reset e estilos gerais */

/* @font-face {
    font-family: 'Quotes';
    src: url('http://5asec.local/wp-content/uploads/2025/04/Copia-de-QuotesScript-Regular.woff2') format('woff2'),
        url('http://5asec.local/wp-content/uploads/2025/04/Copia-de-QuotesScript-Regular.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Museo-100';
    src: url('http://5asec.local/wp-content/uploads/2025/04/Copia-de-Museo100-Regular.woff2') format('woff2'),
        url('http://5asec.local/wp-content/uploads/2025/04/Copia-de-Museo100-Regular.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Museo-300';
    src: url('http://5asec.local/wp-content/uploads/2025/04/Copia-de-museo-300.woff2') format('woff2'),
        url('http://5asec.local/wp-content/uploads/2025/04/Copia-de-museo-300.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Museo-500';
    src: url('http://5asec.local/wp-content/uploads/2025/04/Copia-de-Museo500-Regular.woff2') format('woff2'),
        url('http://5asec.local/wp-content/uploads/2025/04/Copia-de-Museo500-Regular.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Museo-700';
    src: url('http://5asec.local/wp-content/uploads/2025/04/Copia-de-museo-700.woff2') format('woff2'),
        url('http://5asec.local/wp-content/uploads/2025/04/Copia-de-museo-700.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
} */

/* 
.roboto-200 {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight:200;
    font-style: normal;
  }
   */

/* Reset e estilos gerais */
/* header{
    display: none;
} */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Arial', sans-serif; */
    font-family: "Roboto", sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
}

h2,h3,h4,h5,h6{
    /* font-family: 'Museo-500', sans-serif; */
    line-height: 110%;
}
p{
    font-size: 18px;
    margin-bottom: 0px;
    /* font-family: 'Museo-300', sans-serif; */
    font-weight: 400;

    line-height: 120%;
    
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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



/* Cores da marca */
:root {
    --primary-purple: #4a225d;
    --primary-orange: #e95e0f;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}


  header {
    padding: 40px 0;
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Estilo para o dropdown */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    position: relative;
}

nav ul li.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Posiciona abaixo do item principal */
    left: 0;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 10;
}

.dropdown-menu li {
    width:180px;
    padding: 5px 35px 5px 15px; /* Ajuste o padding para alinhar com o texto */
    margin-left: 0px;
    
}

.dropdown-menu li a {
    color: black;
    text-decoration: none;
}

.dropdown-menu li a:hover {
    color: #e85a0c; /* Cor de hover */
}

.dropdown-arrow {
    font-size: 12px;
    margin-left: 5px;
    color: inherit; /* Herda a cor do texto */
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg); /* Gira a seta para cima ao passar o mouse */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
}

nav li {
    margin-left: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

nav li:hover {
    color: var(--primary-orange);
}

.buttons-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.buttons-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn {
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    margin-left: 10px;
}




/* Footer */
footer {
    background: url('./imagens/Footer_back.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 145px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
}

.footer-title {
    color: #e85a0c;
    margin-bottom: 30px;
    font-size: 24px;
}

.footer-title.branco{
    color: white;
    margin-bottom: 10px;
    
}
.footer-text{
    font-size: 18px;
    margin-bottom: 15px;
    
    line-height: 30px;
    max-width: 233px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-logo img {
    max-width: 150px;
    /* margin-bottom: 20px; */
}

.footer-column .contact-info p{
    margin-bottom: 14px;
    font-size: 16px;   
}
.footer-column .contact-info a {
    margin-right: 10px;
}
.footer-bottom{
    
    background-color: #39144A;
    padding: 38px 0;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p{
    font-size:12px;
    font-weight: 300;
    color: white;
}

@media(max-width: 768px) {
    footer{
        padding: 60px 0;
    }
    .footer-title {
        font-size: 18px;
        margin-bottom: 10px;
        margin-top: 15px;
    }
}
.servicos-hero-section {
    display: flex;
    background: url('./imagens/o-que-lavamos-hero.png');
    height: 200px;
    position: relative;
    overflow: hidden;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex
;
    align-items: center;
    justify-content: center;
   
}

.servicos-hero-text {
    width: 100%;
    z-index: 2;
    flex: 1; /* Permite que o texto ocupe o espaço restante */
    min-width: 300px;
    padding-right: 30px;
}

.servicos-hero-text h1{
    color: #E85426;

    font-size: 30px;
    font-weight: bold;
    margin-bottom: 10px;
    
}

/* --- Home codes --- */

/* Home hero Section */
.hero {
    
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: space-between;
    padding: 0;
}
.hero-2{
    
    background-size: cover;
    background-position: center;
    height: 500px;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    justify-content: space-between;
    padding: 0;
}

.hero-2 h1{
    line-height: 48px;
}

.hero-2 img{
    width: 100%;
}

.hero-content {
    /* max-width: 50%; */
    /* padding-left: 5%; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    position: relative;
}
.hero-content .content {
    width: auto;
    max-width: 675px;
}
.hero-content .hero-image{
    position: absolute;
    right: -80px;
    bottom: -25px;
}
.hero-content .hero-image img{
    width: 113%;
    /* max-width: 200px; */
}

.hero .hero-selo{
    margin-top: 40px;
    width: 100%;
    max-width: 482px;
    border-radius: 10px;
    padding: 35px 25px;
    border: 2px dashed var(--primary-orange);
}
.hero-2 .hero-selo{
    display: flex;
    margin-top:37px;
    justify-content: space-between;
    padding: 28.5px 32px;
}
.hero-2 .hero-selo .desconto{
    text-align: center;
}

.hero .hero-selo h4{
    font-size: 37px;
    color: var(--primary-purple);
    text-transform: initial;
    font-weight: 600;
    margin-bottom: 10px;
}
.hero-2 .hero-selo h4{
    font-size: 32px;
}
.hero .hero-selo h5 span{
    background-color: var(--primary-orange);
    color: white;
    font-size: 48px;
    font-weight: 900;
    display: inline-block;
    padding: 4px 3px;
}
.hero .hero-selo h5{
    color: var(--primary-orange);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 0;
}

.hero-2 .content p.oferta{
    font-weight: 400;
    color: #3d3d3d;
    font-size: 12px;
    margin-top: 33px;
}

.hero h1 {
    font-size: 48px;
    /* line-height: 125px; */
    font-weight: 600;
    /* margin-bottom: 10px; */
    color: var(--primary-purple);
}
.hero h2 {
    font-size: 48px;
    /* line-height: 125px; */
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--primary-orange);
}

.hero h5 {
    font-size: 30px;
    margin-bottom: 30px;
    font-family: 'Museo-500', sans-serif;
    font-weight: 500;
    
}
.hero h6{
    font-size: 24px;
    margin-bottom: 0px;
    font-family: 'Museo-300', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
}
.hero h4{
    font-size: 30px;
    margin-bottom: 0px;
    font-family: 'Museo-300', sans-serif;
    text-transform: uppercase;
    color: var(--primary-orange);
}

.hero span{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    
    
}
.hero span p{
    font-size: 20px;
    font-family: 'Museo-500', sans-serif;
    font-weight: 500;
    max-width: 125px;
    width: 100%;
    
}

.hero-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-orange);
    color: white;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
}

@media(max-width: 768px) {
    .container{
        padding: 0 35px;
    }
    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-h1 {
        line-height: 110%;
    }
    .hero h2{
        font-size: 36px;
        line-height: 110%;
    }
    .hero .hero-selo{
        margin-top: 30px;
        padding: 20px 12px;
    }
    .hero .hero-selo h4{
        font-size: 26px;
    }
    .hero .hero-selo h5{
        font-size: 28px;
    }
    .hero .hero-selo h5 span{
        font-size: 30px;
    }
    .hero-content .hero-image {
        display: none;
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
    }
    
}


 /* Serviço de Coleta Section */
 .coleta-section {
     padding: 60px 0 0;
     
}
.coleta-section .button-link{
    margin-top: 10px;
}
.coleta-section .button-link .button-text {
    padding: 6px 20px;
}
.coleta-section .button-link .button-arrow {
    height: 31.19px;
    width: 31.19px;
}

.coleta-section.loja-uruguai{
    padding-bottom: 90px;
}

.coleta-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.coleta-image {
    flex: 1;
}

.coleta-image img {
    max-width: 100%;
    border-radius: 8px;
}

.coleta-content {
    flex: 1;
    max-width: 431px;
}

.coleta-content h2 {
    font-size: 36px;
    margin-bottom: 35px;
    font-family: 'Museo-500', sans-serif;
}

.coleta-content h2 span {
    color: var(--primary-orange);
}

.coleta-text {
    margin-bottom: 20px;
    font-size: 24px;
    font-family: 'Museo-300', sans-serif;
    line-height: 30px;
}

.coleta-text strong {
    font-family: 'Museo-500', sans-serif;
}

.whatsapp-container {
    display: flex;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    margin-top: 20px;
}

.whatsapp-icon {
    margin-right: 15px;
}

.whatsapp-text {
    font-size: 18px;
    max-width: 240px;
}

.whatsapp-btn {
    background-color: var(--primary-purple);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 5px;
    font-family: 'Museo-500', sans-serif;
    display: inline-block;
}

.app-section .container {
    max-width: 850px;
    gap: 25px;
}
.app-section .app-content img {
    width: 70px;
    margin-bottom: 20px;
}
.app-section .app-content .app-title {
    font-size: 48px;
    color: #9E9E9E;
    font-weight: 200;
    width: 100%;
    max-width: 270px;
}
.app-section .app-content .app-title span {
    color: #5E5E5E;
    font-weight: 700;
}
.app-section .app-content .app-text {
    font-size: 20px;
    color: #9E9E9E;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 380px;
}
.app-section .app-content .app-text span {
    font-weight: 600;
    color: #5E5E5E;
    display: block;
}
.app-section .app-content .app-stores img{
    width: 100%;
    max-width: 100%;
}
 /* Vantagens Section */
 .vantagens-section {
    padding: 0px 0;
    background: url('./imagens/bg-cinza.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.vantagens-container {
    display: flex;
    align-items: center;
}

.vantagens-content {
    flex: 1;
}

.vantagens-title {
    font-size: 36px;
    margin-bottom: 35px;
    font-weight: 600;
    max-width: 365px;
}

.vantagens-title span {
    color: var(--primary-orange);
}

.vantagens-list {
    list-style: none;
}

.vantagens-item {
    margin-bottom: 15px;
    display: flex;
    font-size: 18px;
    line-height: 100%;

    align-items: center;

}

.vantagens-item p{
    font-size: 18px;
    font-weight: 600;
}

.check-icon {
    color: var(--primary-orange);
    margin-right: 10px;
    font-size: 18px;
}

.vantagens-image {
    flex: 1;
    text-align: right;
}

.vantagens-image img {
    max-width: 100%;
    border-radius: 8px;
}

 /* Nossos Serviços Section */
 .servicos-section {
    margin-bottom: 90px;
    text-align: center;
}

.servicos-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.servicos-title span {
    color: var(--primary-orange);
}

.servicos-subtitle {
    margin-bottom: 55px;
    font-size: 24px;
    font-family: 'Museo-300', sans-serif;
    line-height: 30px;
}
.servicos-subtitle span {
    font-family: 'Museo-500', sans-serif;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.servico-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
}

.servico-image {
    height: 300px;
    background-size: cover;
    background-position: center;
}

.servico-content {
    padding: 15px;
    text-align: left;
}

.servico-title {
    font-size: 18px;
    font-family: 'Museo-500', sans-serif;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.servico-desc {
    font-size: 18px;
    font-family: 'Museo-300', sans-serif;
    color: #3C3C3B;
    line-height: 100%;
}


.button-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    font-size: 12px;
    margin-top: 35px;
    font-family: 'Roboto', sans-serif;
}

.button-text {
    background-color: var(--primary-purple);
    color: white;
    
    padding: 11px 20px;
    text-transform: uppercase;
    font-size: 12px;
    /* font-family: 'Museo-700', sans-serif; */
    letter-spacing: 0%;
}

.button-arrow {
    background-color: #F26522;
    color: white;
    /* padding: 6px 15px;
     */
    height: 41px;
    width: 41px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-link:hover .button-text {
    background-color: #3e2569;
}

.button-link:hover .button-arrow {
    background-color: #d85a1b;
}

.itens-btn {
    display: inline-block;
    background-color: var(--primary-orange);
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 20px;
}

 /* Autosserviço Section */
 .autoservico-section {
    padding: 0px 0;
    background: url('./imagens/bg-cinza.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.autoservico-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.autoservico-content {
    flex: 1;
}

.autoservico-logo {
    margin-bottom: 20px;
}

.autoservico-logo img {
    /* height: 60px; */
}

.autoservico-subtitle {

    font-size: 30px;
    margin-bottom: 40px;
    font-family: 'Museo-500', sans-serif;
    font-weight: 500;
    color: #3C3C3B;
}

.autoservico-text {
    font-size: 24px;
    margin-bottom: 25px;
    font-family: 'Museo-300', sans-serif;
    font-weight: 500;
    color: #3C3C3B;
    max-width: 500px;
}

.valet-btn {
    display: inline-block;
    border: 2px solid var(--primary-purple);
    color: var(--primary-orange);
    font-family: 'Museo-500', sans-serif;
    font-size: 27px;
    text-transform: uppercase;
    padding: 18px 40px 18px 30px;
    border-radius: 4px;
    font-weight: bold;
    margin-bottom: 20px;
}

.autoservico-stores {
    margin-top: 30px;
    display: flex;
    gap: 22px;
    align-items: center;
}

.store-card {
    flex: 1;
    background-color: var(--primary-orange);
    color: var(--primary-purple);
    padding: 10px 15px;
    
    border-radius: 0px;
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 18px;
}

.store-purple {
    background-color: var(--primary-purple);
    color: var(--white);
}

.autoservico-image {
    flex: 1;
}

.autoservico-image img {
    max-width: 100%;
    /* border-radius: 8px; */
}

.beneficios-section{
    padding: 62px 0;
    text-align: center;
}
.beneficios-section .container {
    padding: 0 ;
}

.beneficios-title {
    font-size: 36px;
    margin-bottom: 60px;
}

.beneficios-title span {
    color: var(--primary-orange);
}

.beneficios {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    margin-bottom: 40px;
}

.beneficio-box {
    background-color: #f5f5f5;
    /* padding: 90px 25px 70px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 240px;
    padding: 0 15px;
    text-align: center;
    border-radius: 5px;
    height: 240px;
}

.beneficio-number {
    color: #e85a0c;
    font-size: 36px;
    
    font-weight: bold;
    /* margin-bottom: 10px; */
}

.beneficio-text {
    font-size: 18px;
    font-weight: 300;
    line-height: 100%;
    color: #3C3C3B;
}


/* Call to Action */
.cta-section {
    background: url('./imagens/Footer_back.jpg');
    background-color: var(--primary-purple);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 107px 0;
    text-align: center;
    margin-bottom: 40px;
}

.cta-title {
    color: #e85a0c;
    font-size: 36px;
    margin-bottom: 47px;
    font-family: 'Museo-500', sans-serif;
    max-width: 464px;
    justify-self: center;
}

.cta-text {
    font-size: 24px;
    margin-bottom: 30px;
    font-family: 'Museo-300', sans-serif;
    font-weight: 500;
    color: var(--white);
}

/* .btn {
    display: inline-block;
    background-color: #e85a0c;
    color: white;
    text-decoration: none;
    padding: 8.5px 15px;
    border-radius: 3px;

    font-family: 'Museo-500', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    transition: background-color 0.3s;
} */

.btn{
    display: inline-block;
    background-color: var(--primary-orange);
    color: white;
    padding: 8.5px 20px;
    border-radius: 0px;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
    /* margin-bottom: 100px; */
}

.btn:hover {
    background-color: #d25009;
}


/* About Section */
.sobre-section {
    display: flex;
    align-items: flex-start;
    padding: 92px 0;
    gap: 30px;
    margin-bottom: 40px;

    /* padding-bottom: 190px; */
}

.sobre-image {
    flex: 1;
}

.sobre-image img {
    max-width: 100%;
    border-radius: 5px;
}

.sobre-content {
    flex: 1;
}

.sobre-text{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 300;
    text-align: justify;
    line-height: 120%;
}

@media(max-width: 768px) {
    .sobre-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 92px 35px;
    }
    .sobre-image {
        order: -1;
        margin-bottom: 30px;
    }
    .sobre-content {
        max-width: 600px;
    }
}

.btn-sobre {
    display: inline-block;
    background-color: var(--primary-orange);
    color: white;
    padding: 8.5px 15px;
    /* border-radius: 4px; */
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 23pxpx;
    /* margin-bottom: 100px; */
}


.sobre-title {
    color: var(--primary-purple);
    font-size: 36px;
    
    margin-bottom: 30px;
}

.highlight {
    font-weight: bold;
}

.o-que-fazemos-section {
    padding: 0;
    margin-bottom: 90px;
    margin-top: 90px;
}
.o-que-fazemos-container {
    padding: 0;
}
.o-que-fazemos-title{
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: center;
}
.o-que-fazemos-text{
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    max-width: 571px;
    margin: 0 auto;
    margin-bottom: 30px;
}
.o-que-fazemos-text span{
    font-weight: 600;
}

.o-que-fazemos-title span {
    color: var(--primary-orange);
}

.o-que-fazemos-list{
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 30px;
}
.o-que-fazemos-list .card{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 11px;
    width: 250px;
    border-radius: 5px;
    border-radius: 15px;
    border: 1px solid var(--Cinza-Claro, #F7F7F7);
    background: var(--Cinza-Claro, #F7F7F7);
    box-shadow: 2px 2px 16px 0px rgba(0, 0, 0, 0.10);
}
.o-que-fazemos-list .card p{
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
}

@media(max-width: 768px) {
    .o-que-fazemos-container {
        padding: 0 15px;
    }
    .o-que-fazemos-list {
        justify-content: center;
    }
    .o-que-fazemos-list .card {
        width: 100%;
        max-width: 300px;
    }
}

/* ajuda Section */
.ajuda-section {
    display: flex;
    /* gap: 30px; */
    margin-bottom: 50px;
    padding: 0 0 120px;
    
}

.ajuda-content {
    background: url('./imagens/Footer_back.jpg') no-repeat center center;
    flex: 1;
        padding: 106px 0px 106px 71px;
    align-content: center;
    color: white;
}

.ajuda-title {
    color: #e85a0c;
    font-family: 'Museo-500', sans-serif;
    font-size: 24px;
    margin-bottom: 32px;
}

.ajuda-text {
    margin-bottom: 30px;
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 300;
    text-align: justify;
}

.ajuda-image {
    flex: 1;
}

.ajuda-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-fale-conosco {
    margin-top: 0;
}

@media(max-width: 768px){
    .ajuda-section {
        background: none;
        margin-bottom: 0;
        padding: 0;
    }
    .ajuda-content{
        padding: 44px 35px 50px 35px;

    }
}


@media (max-width: 768px) {
    .beneficios-section .container {
        padding: 0 15px;
    }
    .beneficios {
        flex-direction: column;
        align-items: center;
    }
    
    .beneficio-box {
        width: 100%;
        max-width: 300px;
    }
    
    .about-section,
    .ajuda-section,
    .footer-content {
        flex-direction: column;
    }
    
    
    
    .ajuda-image {
        order: -1;
    }
}

/* Hero Section */
.default-hero {
    background: url('./imagens/Footer_back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 108px 0;
    text-align: center;
}

.default-hero h1 {
    color: var(--primary-orange);
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 0px;
    text-align: center;
}

.default-hero h2{
    color: var(--white);
    text-align: center;
    font-size: 32px;
    font-weight: 500;
}


.default-hero h1 span {
    /* font-family: 'Museo-500', sans-serif; */
    font-size: 69px;
    font-weight: 400;
    color: #e95e30;
    
}

.default-hero .btn-agendar{
    text-align: center;
}

.app-stores {
    display: flex;
    gap: 15px;
}

.app-store-btn img {
    height: 40px;
}

.app-image {
    flex: 1;
    text-align: right;
}

.app-image img {
    max-width: 100%;
}

.testimonials {
    padding: 90px 0;
    background-color: var(--white);
}
.testimonials h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 36px;
    color: var(--primary-gray);
}
.testimonials h2 span {
    color: var(--primary-orange);
}

.testimonials-container {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

.testimonial {
    flex: 1;
    
    border-radius: 8px;
    position: relative;
    
}



.stars {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.author {
    margin-top: 1rem;
    font-style: italic;
    text-align: right;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonial-nav button {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-nav button:hover {
    background-color: var(--primary-purple);
}
/* Responsive Styles */
@media (max-width: 992px) {
    .location-container {
        flex-direction: column;
    }
    
    .map-container {
        height: 400px;
    }
    
    .testimonials-container {
        flex-direction: column;
    }
    
    .app-section {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
    }
    .location-finder, .free-collection, .testimonials {
        padding: 50px 35px;
    }
    .testimonial img{
        width: 100%;
        height: auto;
    }
    .testimonials-container{
        gap:0;
    }
    .map-container{
        position: relative;
        height: 300px;
        top:0;
    }
    
    .hero-content, .hero-image {
        width: 100%;
    }
    
    .steps-container {
        flex-direction: column;
    }
}

/* Responsivo */
@media (max-width: 992px) {
    nav ul {
        display: none;
    }
    
    .servicos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .autoservico-container,
    .coleta-container,
    .vantagens-container,
    .app-container {
        flex-direction: column;
    }
    
    .coleta-image,
    .coleta-content,
    .vantagens-content,
    .vantagens-image,
    .autoservico-content,
    .autoservico-image,
    .app-content,
    .app-image {
        flex: none;
        width: 100%;
        margin-bottom: 30px;
    }
    .vantagens-container{
        padding-top: 70px;
        padding-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        max-width: 80%;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    
    .buttons-container {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
}

.btn-green {
    background-color: #4CAF50;
    color: white;
    font-size: 10px;
    padding: 8.5px 9px;
    margin-top: 0px;
}

.btn-green:hover {
    background-color: #45a049;
}

.btn-orange {
    background-color: var(--primary-orange);
    color: white;
    font-size: 10px;
    padding: 8.5px 9px;
    margin-top: 0px;
}
.btn-orange:hover {
    background-color: #d25009;
}

.btn-purple {
    background-color: var(--primary-purple);
    color: white;
    font-size: 10px;
    padding: 8.5px 9px;
    margin-top: 0px;
}
.btn-purple:hover {
    background-color: #3e2569;
}

.btn-verde {
    background-color: #03C100;
    padding: 0px 30px;
    font-size: 17px;
}
.btn-verde img{
    height: 20px;
    width: 20px;
}
.btn-verde:hover {
    background-color: #02A000;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 6px 30px;
}
.mobile-menu-btn{
    width: 100%;
    text-align: right;
    outline: none;
}