:root {
    --primary-teal: #0D5665;
    /* Azul-petróleo escuro da logo */
    --accent-brown: #9B7D61;
    /* Marrom/bronze da logo */
    --white: #FFFFFF;
    --dark-text: #333333;
    --light-bg: #f8f9fa;
    --border-color: #e9ecef;
}

* {
    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: #333333;
    font-size: 16px;
    position: relative;

}


header {
    position: fixed;
    top: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 120px;
    align-items: center;
    z-index: 100;
    transition: height 0.3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(13, 86, 101, 0.9);
    /* Cor Primária com transparência */

}


.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    width: fit-content;
    max-width: 150px;
    flex-shrink: 0;
}


.logo {
    width: 160%;
    height: auto;
    margin: 0;
    display: block;
    max-width: 150x;
    transition: transform 0.3s ease;
    padding: 20px 20px;
}


.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: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
    transform: scale(1);
    display: inline-block;
}

nav a:hover {
    color: var(--accent-brown);
    /* Cor de Destaque */
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--accent-brown);
    /* Cor de Destaque */
    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: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;

}



#servicos {
    scroll-margin-top: 20px;
}

#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: #333333;
    position: relative;
    background-image: url('background.png');
    /* SUGESTÃO: Usar uma imagem de fundo de viagem */
    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(-60px);
}

.hero-content h1 {
    font-size: 2.6rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 20px;
    width: 100%;
    color: var(--primary-teal);
    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: #333333;
    text-align: justify;
    width: 100%;
    border-radius: 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);

}

.highlight {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.918);
}


.hero-content .btn {
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    color: #FFFFFF;
    background: var(--primary-teal);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-out;
}

.active .btn {
    transform: scale(1);
    opacity: 1;
}

.hero-content .btn:hover {
    background-color: var(--accent-brown);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 4px 20px rgba(155, 125, 97, 0.4);
}



.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: var(--primary-teal);
    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: #333333;
    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: var(--primary-teal);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-out;
}


.btn:hover {
    transition-duration: 0.05s;
    background-color: var(--accent-brown);
    box-shadow: 0 4px 20px rgba(155, 125, 97, 0.4);
}



.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: rgba(13, 86, 101, 0.5);
    border: 1px solid #ffffff;
}

.arrow-btn:hover {
    background-color: var(--primary-teal);
    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;
}


.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: var(--primary-teal);
}


.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;
    background-color: var(--white);


}

.about-us-logo {
    max-width: 300px;
    width: 150%;
    height: auto;
    margin-bottom: 30px;
}

.about-us-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-teal);
    margin-bottom: 20px;

}


.about-us-section p {
    font-size: 1.5rem;
    color: var(--primary-teal);
    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: var(--dark-text);
    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: var(--white);
    border: 1px solid var(--border-color);
    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(13, 86, 101, 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: var(--primary-teal);
    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: var(--dark-text);
    margin-bottom: 10px;

}



#endereco-link {
    display: inline-block;
    color: var(--primary-teal);
    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: var(--accent-brown);
    transform: scale(1.05);
}

#endereco-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: var(--accent-brown);
    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: var(--light-bg);



}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--dark-text);
    margin-bottom: 10px;

}

.contact-section p {
    font-size: 1.1rem;
    color: var(--dark-text);
    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(13, 86, 101, 0.3), 0 0 5px rgba(155, 125, 97, 0.5);
}

.contact-card h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-size: 1.5rem;

}

.contact-card p {
    color: var(--dark-text);
}

.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: var(--primary-teal);
    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: var(--white);
    background-color: var(--primary-teal);

}

.legal-page-content {
    background-color: var(--white);
    color: var(--dark-text);
    max-width: 800px;
    margin: 0 auto;
    padding: 150px 20px 50px 20px;
}

.legal-page-content h1 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-teal);
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.legal-page-content>p:first-of-type {
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.legal-page-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--dark-text);
    font-size: 1.9rem;
    margin-top: 45px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid --border-color;
}

.legal-page-content p,
.legal-page-content li {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: left;
    color: #343a40;
    margin-bottom: 1.2em;
}

.legal-page-content ul,
.legal-page-content ol {
    padding-left: 25px;
    margin-bottom: 1.2em;
}

.legal-page-content li {
    margin-bottom: 0.8em;
}

.legal-page-content strong {
    color: var(--primary-teal);
}

.legal-page-content a {
    color: var(--accent-brown);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dotted var(--accent-brown);
    transition: all 0.3s ease;
}

.legal-page-content a:hover {
    color: var(--white);
    background-color: var(--accent-brown);
    border-bottom-color: var(--accent-brown);
}


.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: var(--dark-text);
    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: var(--white);
    font-size: 0.9rem;
    line-height: 1.6;
}

.consent-text a {
    color: var(--accent-brown);
    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: 50%;
        max-width: 70%;
        padding: 5px 5px 5px;
        display: block;
        text-align: left;
    }

    .logo {
        width: 100%;       
        padding: 10px 20px;
    }

    header {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        height: 12%;
        transition: background-color 0.3s ease;

    }

    header.open {
        width: 100%;
        height: auto;
        background-color: var(--primary-teal);
        padding-bottom: 30px;
        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: 1px;
        padding: 1px 0;
        padding-left: 35px;
    }

    header nav ul li a {
        text-align: center;
        font-size: 1rem;
        color: #ffffff;
    }

    header.open nav ul li:not(:last-child) {
        width: 80%;
        text-align: center;
        border-bottom: 3px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    nav a:hover {
        color: var(--accent-brown);
        text-shadow: none;
    }

    nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 0;
        background-color: var(--accent-brown);
        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(0, 0, 0, 0.3)), url('background-mobile.png');
        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: 10%;


    }

    .hero-content h1 {
        font-size: 2.4rem;
        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.1rem;
        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: 90%;
        top: 42%;
    }

    .arrow-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .indicators {
        bottom: 130px;
    }

    .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-feedback-active {
        background-color: rgba(13, 110, 253, 0.9) !important;
        border-color: #0d6efd !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;
    }
}