* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Montserrat", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #ffffff;
    color: #000000;
    font-size: 16px;
    position: relative;

}


header {
    position: fixed;
    top: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    z-index: 100;
    transition: height 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.952);

}


.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: 150px;
    flex-shrink: 0;
}


.logo {
    width: 250%;
    height: auto;
    margin: 0;
    display: block;
    max-width: 150x;
    transition: transform 0.0s ease;
    padding: 10px 10px;
}


.logo-link:hover .logo {
    transform: scale(1.1);
}


.logo-link.touch-feedback-active .logo {
    transform: scale(1.05);
}

header nav ul {
    display: flex;
    gap: 20px;
    margin-right: 30px;
    margin-top: 3px;
    align-items: center;
}

nav a {
    color: #000000;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    transform: scale(1);
    display: inline-block;
}

nav a:hover {
    color: #cca833;
    transform: scale(1.05);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #cca833;
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-link i {
    font-size: 28px;
    line-height: 0;
}

.whatsapp-link span {
    font-size: 20px;
    font-weight: 500;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 11;
}

.menu-toggle span {
    height: 3px;
    width: 30px;
    background-color: #000000;
    border-radius: 2px;
    transition: all 0.3s ease;

}

#servicos,
#sobre,
#proposito,
#contato,
#endereco {
    scroll-margin-top: 100px;
}




.hero-section {
    height: 120vh;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 2vw;
    color: #020202;
    position: relative;
    background-image: url('background-pcenter.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.hero-background-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    opacity: 0; 
    z-index: 2; 
}

.hero-content {
    position: relative;
    width: 45%;
    z-index: 6;
    text-align: center;
    align-items: center;
    padding-left: 10px;
    transform: translateY(-50px);
}

.hero-content h1 {
    font-size: 3rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    width: 100%;
    color: #000000;
    text-align: center;
    border-radius: 20px;
    font-weight: 800; 
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
}



.hero-content p {
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #000000;
    text-align: justify;
    width: 100%;
    border-radius: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); 

}



.hero-content h1, .hero-content p, .hero-content .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}


.hero-content.visible h1,
.hero-content.visible p,
.hero-content.visible .btn {
    opacity: 1;
    transform: translateY(0);
}


.hero-content.visible p {
    transition-delay: 0.2s;
}

.hero-content.visible .btn {
    transition-delay: 0.4s;
}



.container {
    height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: 3;
    display: flex;
    align-items: center;    
    justify-content: center;
    padding-top: 100px;    
    background-color: #f8f9fa;
}




.list {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.item {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 0 40px;
    opacity: 0;
    transform: translateX(100vw);
    transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
    z-index: 2;

}

.active {
    opacity: 1;
    transform: translateX(0);
}

.product-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    max-width: 500px; 
}

.product-img img {
    width: 75%; 
    height: auto;  
    max-width: 450px; 
    border-radius: 30px;
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;
    border-radius: 0px;
}

.active .product-img img {
    transform: translateX(0);
    opacity: 1;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: flex-start;
    max-width: 900px; 
    padding-left: 10px;
}

.product-tag {
    font-size: 1.2rem;
    text-transform: uppercase;
    color: #949494cc;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 10px;
    transform: translateX(200px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;

}

.active .product-tag {
    transform: translateX(0);
    opacity: 1;
}

.product-name {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
    transform: translateX(400px);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;

}

.active .product-name {
    transform: translateX(0);
    opacity: 1;

}

.description {
    font-size: 1.2rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px; 
    max-width: 500px;
    text-align: justify;
    opacity: 0;
    transform: translateX(600px);
    transition: transform 0.6s ease, opacity 0.6s ease;
    transition-delay: 0.5s;

}

.active .description {
    transform: translateX(0);
    opacity: 1;
}

.btn {
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    color: #ffffff;
    background: linear-gradient(90deg, #D4AF37, #B58814);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.btn:hover {
    transition-duration: 0.05s;
    transition-timing-function: ease-out;
    background: linear-gradient(90deg, #D4AF37, #B58814);
    box-shadow: 0 0 20px rgba(255, 209, 5, 0.781);
}



.arrows {
    position: absolute;
    width: 90%;
    display: flex;
    justify-content: space-between;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.arrow-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    background-color: rgb(112, 112, 112);
    border: 1px solid #ffffff;
}

.arrow-btn:hover {
    background-color: #cca833;
    border-color: #ffffff;
}

.indicators {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15%;
    z-index: 5;
}

.numbers {
    font-family: "Orbitron", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
}

.dots {
    display: flex;
    gap: 10px;
    top: 10px;
}

.dot {
    width: 40px;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 2px;

}

.dot.active {
    background-color: #7c7c7c;
}


.about-us-section {
    display: flex;
    min-height: 82vh;
    padding: 50px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2px;


}

.about-us-logo {
    max-width: 150px;
    width: 150%;
    height: auto;
    margin-bottom: 30px;
}

.about-us-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 20px;

}


.about-us-section p {
    font-size: 1.5rem;
    color: #000000;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px auto;
    text-align: justify;

}


.purpose-section {
    padding: 80px 30px;
    text-align: center;
    background-color: #f8f9fa; 
}

.purpose-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #000000;
    margin-bottom: 20px;
}

.purpose-section p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.purpose-cards-container {
    display: flex;
    justify-content: center;
    align-items: stretch; 
    gap: 30px;
    flex-wrap: wrap;
}

.purpose-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    width: 100%;
    max-width: 320px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; 
    flex-direction: column; 
}

.purpose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 71, 171, 0.15);
}


.purpose-card-content {
    padding: 35px 30px;
    text-align: center;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    align-items: center;
}

.purpose-icon {
    font-size: 3rem;
    color: #cca833; 
    margin-bottom: 20px;
    line-height: 1;
}

.purpose-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #343a40;
    margin-bottom: 15px;
}

.purpose-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    flex-grow: 1; 
}

.address-section {
    height: 90vh;
    padding: 30px 30px;
    text-align: center;
    margin-bottom: 1px;
}

.address-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 10px;

}

#endereco-link {
    display: inline-block;
    color: #013275;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;

}

#endereco-link:hover {
    color: #008ac0b6;
    transform: scale(1.05);
}

#endereco-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #0092ccb6;
    transition: width 0.3s ease;
}

#endereco-link:hover::after {
    width: 100%;
}

.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 410px;
    border-radius: 15px;
    top: 20px;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;

}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;

}

.map-overlay::after {
    content: 'Clique aqui para interagir com o mapa';
    font-weight: 600;
}

.map-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.contact-section {
    height: auto;
    min-height: 90vh;
    padding: 30px 30px;
    text-align: center;
    background-color: #f8f9fa; 

}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #000000;
    margin-bottom: 10px;

}

.contact-section p {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px auto;
}


.contact-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
    width: 100%;
    margin-top: 10px;

}

.contact-card {

    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.808);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(95, 95, 95, 0.842), 0 0 5px rgb(88, 88, 88);

}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    color: #000000;
    margin-bottom: 15px;
    font-size: 1.5rem;

}

.contact-card p {
    color: #000000;
}

.contact-card .btn {
    opacity: 1;
    transform: none;
    margin-top: 20px;
    display: inline-block;
}

.social-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    gap: 15px;
}

.social-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
    background-color: #2e2e2eab;
    border-radius: 50%;
    transition: all 0.3s ease;

}

.social-bar a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.social-bar a[href*="facebook.com"]:hover {
    background-color: #004eb4;
}

.social-bar a[href*="wa.me"]:hover {
    background-color: #25D366;
}

.social-bar a[href*="instagram.com"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}


footer {

    padding: 40px 20px;
    padding-bottom: 80px;
    text-align: center;
    color: #ffffff;
    background-color: #000000;

;
}

.legal-page-content {
    background-color: #ffffff;
    color: #333333;
    max-width: 800px;
    margin: 0 auto;
    padding: 150px 20px 50px 20px;
}

.legal-page-content h1 {
    font-family: 'Playfair Display', serif;
    color: #00275e; /* Um azul mais escuro e sóbrio */
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px; /* Menos espaço abaixo do título */
}

.legal-page-content > p:first-of-type {
    font-style: italic;
    color: #555;
    margin-bottom: 30px; /* Mais espaço antes da imagem */
    font-size: 0.9rem;
}

.legal-page-content h2 {
    font-family: 'Playfair Display', serif;
    color: #000000;
    font-size: 1.9rem;
    margin-top: 45px; /* Mais espaço acima do subtítulo */
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e9ecef; /* Linha sutil para separar */
}

.legal-page-content p,
.legal-page-content li {
    font-size: 1.1rem; /* Tamanho de fonte mais confortável para leitura */
    line-height: 1.8; /* Espaçamento ideal entre as linhas */
    text-align: left; /* MUITO IMPORTANTE: Alinha à esquerda para melhor legibilidade */
    color: #343a40; /* Cor de texto padrão (preto suave) */
    margin-bottom: 1.2em; /* Espaçamento entre parágrafos */
}

.legal-page-content ul, .legal-page-content ol {
    padding-left: 25px; /* Recuo adequado para listas */
    margin-bottom: 1.2em;
}

.legal-page-content li {
    margin-bottom: 0.8em; /* Espaçamento entre itens da lista */
}

.legal-page-content strong {
    color: #00275e; /* Destaque alinhado com a marca */
}

.legal-page-content a {
    color: #0047AB;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted #0047AB;
    transition: all 0.3s ease;
}

.legal-page-content a:hover {
    color: #ffffff;
    background-color: #0047AB;
    border-bottom-color: #0047AB;
}


.footer-links {
    margin-bottom: 20px;
    font-size: 90%;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
    transition: text-decoration 0.3s ease;
}

.footer-links a:hover {
    text-decoration: underline;
}

#consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #535353;
    border-top: none;
    padding: 20px 30px;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
}

#consent-banner.hidden {
    transform: translateY(150%);
}

.consent-text {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.6;
}

.consent-text a {
    color: #f7d200;
    text-decoration: underline;
    font-weight: 600;
}

.consent-text a:hover {
    color: #fff;
}

#accept-consent-btn {
    flex-shrink: 0;
    opacity: 1;
    transform: none;
}

@media (max-width: 768px) {

.logo-link {
    width: 70%;         
    max-width: none;   
    padding: 5px 5px 5px;    
    display: block;      
    text-align: left;  
}

.logo {
    width: 100%;         
    max-width: 300px;    
    display: inline-block;
    padding: 10px 10px;      
}

    header {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: 15%;
        transition: background-color 0.3s ease;
        
    }

    header.open {
        width: 100%;
        height: auto;
        background-color: rgba(255, 255, 255, 0.63); 
        padding-bottom: 20px; 
        height: auto; 
    }

    header nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1px;
        padding: 1px 0px;
        margin-top: 1px;
    }

    header.open nav {
        display: flex;
    }

    header nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
        padding: 1px 0;
        padding-left: 35px;
    }

    header nav ul li a {
        text-align: center;
        font-size: 1rem;
        color: #000000;
    }

    header.open nav ul li:not(:last-child) {
        width: 80%;
        text-align: center;
        border-bottom: 3px solid rgba(0, 0, 0, 0.15);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    nav a:hover {
        color: #cca833;
   
    }

    nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 0;
        background-color: #cca833;
        transition: width 0.3s ease;
    }

    .menu-toggle {
        display: flex;
        position: absolute;
        top: 45px;
        right: 25px;
        margin-top: -3%;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

#servicos,
#sobre,
#proposito,
#contato,
#endereco {
    scroll-margin-top: 100px; 
}

 .hero-section {
        height: 100vh;
        display: flex;
        align-items: center; 
        justify-content: center; 
        padding: 0 20px; 
        box-sizing: border-box; 
        bottom: 0;
    }

 .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3)), url('background-pcenter-mobile.jfif');
    background-size: cover;
    background-position: center;
    filter: brightness(60%) contrast(90%);
}

 .hero-content{
    position: absolute;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20%;
    
    
 }

     .hero-content h1 {
        font-size: 2.5rem;
        width: 100%;
        text-align: center;
        align-items: center;
        color: #ffffff;
        font-weight: 800; 
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);

}

.hero-content p {
    font-size: 1.2rem;
    justify-content: center;
    width: 90%;
    text-align: center;
    color: #ffffff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.9); 

}

.highlight {
    color: #ffffff; 
    font-weight: 700; 
}

.hero-content .btn {
    width: 70%;         
    max-width: 300px;   
    padding: 15px 10px;  
    text-align: center; 
    box-sizing: border-box; 
}


    .container {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        box-sizing: border-box;
        margin-top: 0;
        padding-top: 0;
        
        
    }

    .item {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        justify-content: center; 
        align-items: center;
        gap: 10px; 
        padding: 0; 
        padding-top: 0px;
        margin-top: 0;
        text-align: center;
        opacity: 0;
        transform: translateX(100vw);
        transition: transform 0.7s ease-in-out, opacity 0.7s ease-in-out;
        z-index: 2;
        
    }

    .active {
        opacity: 1;
        transform: translateX(0);
    }

    .product-img {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1px; 
    }

      .product-img img {
        width: 100%;
        height: 100%;
    }

    .active .product-img img {
        transform: translateX(0);
        opacity: 1;
    }

   .content {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 0;
        margin: 0;
    }

     .product-tag {
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 4px; 
    }

    .active .product-tag {
        transform: translateX(0);
        opacity: 1;
    }

     .product-name {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 8px; 
        max-width: 95%;
    }

    .active .product-name {
        transform: translateX(0);
        opacity: 1;
    }

      .description {
        font-size: 0.95rem; 
        line-height: 1.5;
        margin-bottom: 16px; 
        max-width: 90%;
    }

    .active .description {
        transform: translateX(0);
        opacity: 1;
    }

.btn {
        font-size: 0.9rem;
        padding: 12px 24px;
    }

    .active .btn {
        transform: translateX(0);
        opacity: 1;
    }

     .arrows {
        width: 95%;
        height: auto;
        top: 42%; 
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .indicators {
        bottom: 150px; 
    }

    .dot {
        width: 25px;
    }


    .about-us-section {
        top: 0;
        margin-top: 0;
        padding-top: 10;
        margin-bottom: 0px;
    }

    .about-us-section h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    .about-us-section p {
        font-size: 1rem;
    }
.purpose-section {
        padding: 60px 20px;
    }

    .purpose-section h2 {
        font-size: 2.2rem;
    }

    .purpose-section p {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .purpose-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .purpose-card {
        max-width: 300px;
    }

        .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-title {
        font-size: 2.2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr; 
    }

    .article-actions {
        flex-direction: column; 
        gap: 30px;
    }

    .address-section {
        height: auto;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 15px;
        padding-top: 35px;
        bottom: 100px;
        margin-bottom: 30px;
    }

    .address-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    #endereco-link {
        margin-bottom: 15px;
        font-size: 0.9rem;
    }

    .map-container {
        height: 280px;
        top: 15px;
    }

    .map-overlay::after {
        font-size: 1rem;
        padding: 10px;
    }

    .contact-section {
        width: 100%;
        height: auto;
        padding: 60px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 5px;
        align-items: center;
       
        
    }

    .contact-section h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .contact-section p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .contact-cards {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .contact-card {
        width: 95%;
        max-width: 320px;
        padding: 20px;
    }

    .contact-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .contact-card p {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }

    .contact-card .btn {
        width: 70%;
        padding: 15px 20px;
        font-size: 0.9rem;
    }

    footer {
        padding: 40px 20px;
        padding-bottom: 60px;
    }

    footer p,
    footer P {
        font-size: 0.8rem;
        line-height: 1.5;
        margin-bottom: 5px;
    }

    .footer-links {
        margin-bottom: 15px;
    }
    .footer-links a {
        font-size: 0.8rem;
    }

    .social-bar {
        bottom: 10px;
        gap: 10px;
    }

    .social-bar a {
        width: 50px;
        height: 50px;
        font-size: 30px;
    }

    .arrow-btn:hover {
    background-color: rgb(112, 112, 112);
    border: 1px solid #ffffff;
}

    .arrow-feedback-active {
        background-color: rgb(252, 186, 6) !important;
        border-color: #ffffff !important;
    }

    .facebook-feedback-active {
        background-color: #1877F2 !important;
    }

    .whatsapp-feedback-active {
        background-color: #25D366 !important;
    }

    .instagram-feedback-active {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    }

    #consent-banner {
        flex-direction: column;
        padding: 15px 10px;
        text-align: center;
    }

    .consent-text {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    #accept-consent-btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}