/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0px 20px;
    position: relative;
}

/* Utility Classes */
.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media screen and (max-width: 480px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}

/* Header */
.header {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

.logo img {
    max-width: 188px;
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.navigation li {
    list-style: none;
    margin: 0 20px;
}

.navigation a {
    text-decoration: none;
    color: #464646;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s;
}

.navigation a:hover {
    color: #056731;
}

.call-to-action {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-button {
    background-color: transparent;
    border: none;
    color: #464646;
    font-size: 16px;
    cursor: pointer;
    padding: 10px;
}

.btn-integrador, .btn-integrador-mobile {
    background-color: #056731;
    color: #ffffff !important;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-integrador:hover {
    background-color: #044d24;
}

.menu-toggle {
    background-color: transparent;
    border: 0;
    cursor: pointer;
    color: #000000;
    font-size: 20px;
    padding: 0;
}

@media screen and (max-width: 480px) {
    .logo img {
        max-width: 100px;
    }

    .navigation {
        position: absolute;
        top: 64px;
        right: 0;
        width: 100%;
        background-color: #056731;
        z-index: 9999;
        display: none;
        transition: 0.3s;
    }

    .navigation.active {
        display: block;
    }

    .navigation ul {
        flex-direction: column;
        gap: 0;
        padding: 0px 50px;
    }

    .navigation li {
        display: block;
        list-style: none;
        text-align: center;
        margin: 15px 0px;
    }

    .navigation a {
        color: #ffffff;
        text-align: center;
        font-size: 16px;
    }

    .btn-integrador-mobile {
        background-color: #ffffff;
        color: #056731 !important;
        justify-content: center;
    }
}

/* Hero Section */
.hero-section {
    width: 100%;
    background-color: #02391E;
    height: 450px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 48px;
    color: #FED15D;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    color: #ffffff;
    max-width: 500px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
}

.btn-yellow {
    background: linear-gradient(102.17deg, #FED15D 3.82%, #FFC85E 49.63%, #FFDF8C 94.49%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    color: #02391E;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-yellow img {
    height: 20px;
    width: auto;
    margin-right: 8px;
}

.btn-yellow:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-bg {
    width: 300px;
    height: auto;
    position: absolute;
    z-index: 1;
    opacity: 0.7;
    top: 60%;
    right: 32%;
    transform: translateY(-100%);
    border-radius: 16px;
}

.hero-man {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .hero-section {
        height: auto;
        padding: 40px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
        max-width: 100%;
    }

    .hero-image {
        order: 1;
        height: auto;
        padding-top: 20px;
    }

    .hero-man {
        max-height: 250px;
    }

    .hero-bg {
        right: 50%;
        left: 45%;
        transform: translate(-50%, -80%);
        opacity: 0.4;
    }

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

    .hero-buttons .btn-yellow {
        width: 80%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Separator Image */
.separator-image {
    width: 100%;
    height: 400px;
    display: block;
}

@media screen and (max-width: 768px) {
    .separator-image {
        display: none;
    }
}

/* Differentials Section */
.differentials-section {
    width: 100%;
    background-color: #ffffff;
}

.differentials-section .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.section-title {
    color: #02391E;
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    font-weight: 700;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.differential-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.differential-item img {
    height: 50px;
    margin-bottom: 20px;
}

.differential-item p {
    color: #02391E;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    max-width: 200px;
}

@media screen and (max-width: 768px) {
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 480px) {
    .differentials-grid {
        grid-template-columns: 1fr;
    }
}

/* Steps Section */
.steps-section {
    position: relative;
    width: 100%;
    padding: 80px 0;
    background-image: url('../images/imagem-fundo-2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.steps-section .container {
    position: relative;
    z-index: 2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}

.step-card {
    background-color: #02391E;
    border-radius: 16px;
    padding: 20px;
    color: #ffffff;
    position: relative;
}

.step-card h3 {
    color: #FED15D;
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.step-icon {
    position: absolute;
    top: 50%;
    left: -75px;
    transform: translateY(-50%);
    height: 80px;
}

@media screen and (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-icon {
        display: none;
    }
}

/* Form Section */
.form-section {
    width: 100%;
    background-color: #f9f9f9;
}

.form-section .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.box-information {
    padding: 50px 50px 50px 0px;
    position: relative;
}

.box-information h3 {
    font-size: 32px;
    line-height: 32px;
    color: #02391E;
    font-weight: 700;
    margin: 0;
    margin: 30px 0px;
}

.box-information p {
    font-size: 16px;
    color: #424242;
    font-weight: 400;
    margin-bottom: 15px;
}

.form-bg-image {
    position: absolute;
    width: 305px;
    height: 165px;
    bottom: -15px;
    left: -100px;
    z-index: 0;
    opacity: 0.5;
}

.content-form {
    margin: 60px 0px;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.3);
    border-radius: 8px;
    text-align: center;
    position: relative;
}

.form-notice {
    font-size: 18px;
    color: #464646;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

@media screen and (max-width: 480px) {
    .two-columns {
        grid-template-columns: 1fr;
    }

    .box-information {
        padding: 0;
        text-align: center;
        margin: 15px 0px;
    }

    .box-information h3 {
        display: block;
        margin: 10px 0px;
    }

    .form-bg-image {
        display: none;
    }
}

/* Services Section */
.services-section {
    width: 100%;
    background-image: url('../images/bg-servicos.png');
    background-size: cover;
    background-position: center;
}

.services-section .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.box-information-white h3 {
    font-size: 28px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-transparent-white {
    display: inline-block;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 10px 60px;
    margin-top: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-transparent-white:hover {
    background-color: #ffffff;
    color: #056731;
}

.box-servicos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-box {
    text-align: center;
    border: 1px solid #ffffff;
    border-radius: 8px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-box strong {
    color: #ffffff;
    margin-top: 15px;
}

@media screen and (max-width: 480px) {
    .box-servicos {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .service-box {
        margin-bottom: 20px;
    }
}

/* Partners Section */
.partners-section {
    width: 100%;
}

.partners-section .container {
    padding-top: 0px;
    padding-bottom: 0px;
}

.partners-section .box-information h3 {
    font-size: 40px;
}

.box-logos {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 50px 0px;
}

.box-logos img {
    width: 80%;
    margin: auto;
}

.btn-transparent-green {
    display: inline-block;
    color: #056731;
    border: 1px solid #056731;
    border-radius: 8px;
    padding: 10px 60px;
    margin-top: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-transparent-green:hover {
    background-color: #056731;
    color: #ffffff;
}

@media screen and (max-width: 480px) {
    .box-logos img {
        width: 95%;
    }

    .partners-section .box-information {
        padding-top: 40px;
    }
}

/* CTA Section */
.cta-section {
    width: 100%;
    background-image: url('../images/bg-compre-agora.png');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-section .container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.cta-section p {
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Footer */
.footer {
    width: 100%;
    background-color: #232323;
    padding: 50px 0px 0px 0px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-right: 100px;
    align-items: flex-start;
}

.footer-logo {
    width: 200px;
}

.footer-text {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}

.reclame-aqui {
    max-width: 180px;
    margin-top: 20px;
}

.footer-menus {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.footer-menu h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin: 15px 0;
    font-size: 14px;
    color: #ffffff;
}

.footer-menu li i {
    margin-right: 10px;
    margin-bottom: -3px;
}

.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #FED15D;
}

.social-links {
    display: flex;
    gap: 50px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.social-links a {
    color: #ffffff;
    font-size: 28px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #FED15D;
}

@media screen and (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-info {
        align-items: center;
        padding: 0;
        text-align: center;
    }

    .footer-menus {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover {
    opacity: 0.8;
}

.whatsapp-button img {
    width: 60px;
    height: 60px;
    transition: all 0.2s ease-in-out;
}

.whatsapp-button:hover img {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    visibility: hidden;
    opacity: 0;
    margin-right: 12px;
    padding: 8px 12px;
    background-color: #25D366;
    color: #ffffff;
    border-radius: 6px;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-weight: 600;
}

.whatsapp-button:hover .whatsapp-tooltip {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 480px) {
    .whatsapp-button {
        bottom: 20px;
        right: 20px;
        padding: 10px;
    }

    .whatsapp-button img {
        width: 35px;
        height: 35px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Quem Somos Page */
.quemsomos-hero {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 40vh;
    width: 100%;
    position: relative;
    background-image: url('../images/Fundo-Quem-Somos-1.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.quemsomos-hero h1 {
    font-family: 'Raleway', sans-serif;
    color: #ffffff;
    font-size: 52px;
    font-weight: 500;
    text-transform: uppercase;
    text-align: right;
    padding-right: 10%;
    margin: 0;
}

.quemsomos-content {
    background-color: #f9f9f9;
    padding: 40px 40px;
}

.quemsomos-content p {
    color: #000000;
    font-size: 20px;
    line-height: 1.5;
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 20px auto;
}

.quemsomos-content p:last-child {
    margin-bottom: 0;
}

.quemsomos-parallax {
    height: 30vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url('../images/Fundo-Quem-Somos-1.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.quemsomos-parallax::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.quemsomos-title-container {
    background-color: #02391E;
    padding: 5px 10px;
    border-radius: 15px;
    z-index: 2;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
    text-align: center;
    margin-left: auto;
    margin-right: 10%;
}

.quemsomos-title-container h2 {
    font-family: 'Raleway', sans-serif;
    color: #ffffff;
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.quemsomos-values {
    padding: 80px 20px;
    background-color: #ffffff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.value-card {
    background-color: #F1D591;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.value-card h3 {
    color: #02391E;
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 900;
    margin-top: 0;
    margin-bottom: 15px;
}

.value-card p {
    color: #000000;
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
}

.quemsomos-partners {
    position: relative;
    padding: 80px 20px;
    background-image: url('../images/Fundo-Quem-Somos-2.png');
    background-size: cover;
    background-position: center;
}

.quemsomos-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(225, 207, 207, 0.55);
    z-index: 1;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.partners-left {
    flex-direction: column;
    margin-left: 100px;
    margin-bottom: 50px;
}

.partners-left h2 {
    font-family: 'Raleway', sans-serif;
    color: rgb(255, 255, 255);
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 5px;
}

.partners-left img {
    width: 350px;
    margin-bottom: 0;
}

.partners-right {
    width: 800px;
}

.features-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 5px;
}

.features-list li:last-child {
    margin-bottom: 0;
}

.features-list li img {
    width: 24px;
    margin-right: 15px;
    margin-top: 3px;
}

.features-list li span {
    color: rgb(0, 0, 0);
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quemsomos-hero h1 {
        font-size: 36px;
        padding-right: 5%;
    }

    .quemsomos-content {
        padding: 30px 20px;
    }

    .quemsomos-content p {
        font-size: 18px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partners-left {
        margin-left: 0;
        align-items: center;
        text-align: center;
    }

    .partners-right {
        width: 100%;
    }

    .features-list li span {
        font-size: 16px;
        margin-bottom: 20px;
        flex: 1;
        word-break: break-word;
    }
}

/* FAQ Page */
.faq-hero {
    width: 100%;
    min-height: 200px;
    background-image: url('../images/bg-compre-agora.png');
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-hero .container {
    max-width: 1220px;
    padding: 0px 20px;
}

.faq-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.faq-hero h1 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

.faq-hero p {
    font-size: 18px;
    color: #ffffff;
    margin-top: 15px;
}

.faq-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.faq-section .container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0px 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 21px;
    font-weight: 700;
    color: #02391E;
    border: 2px solid #02391E;
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-question i {
    color: #02391E;
    transition: transform 0.3s ease;
    font-size: 30px;
}

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

.faq-answer {
    display: none;
    background-color: #f2eaeaff;
    padding: 12px;
    border-radius: 12px;
    font-size: 17px;
    color: #000000ff;
    margin-top: 10px;
}

.faq-answer p {
    margin: 10px 0;
}

.faq-answer ul {
    list-style: none;
    padding-left: 0;
    margin: 10px 0;
}

.faq-answer li {
    margin: 5px 0;
}

@media screen and (max-width: 768px) {
    .faq-hero h1 {
        font-size: 36px;
    }

    .faq-hero p {
        font-size: 16px;
    }

    .faq-question {
        font-size: 18px;
        padding: 15px;
    }

    .faq-answer {
        font-size: 15px;
    }
}

/* Contact Page */
.contact-banner {
    width: 100%;
    height: 200px;
    background-image: url('../images/imagem-fundo-2.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.contact-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.contact-banner h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-banner p {
    font-size: 16px;
    line-height: 1.6;
}

.contact-section {
    padding: 60px 0;
}

.contact-two-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.contact-form-container {
    padding: 40px;
    background-color: #ffffff;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.15);
    border-radius: 8px;
    border: 1px solid #02391E;
}

.contact-form-intro {
    margin-bottom: 25px;
    color: #424242;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
}

.contact-notice {
    text-align: center;
    font-size: 16px;
    color: #464646;
    line-height: 1.6;
}

.contact-info {
    color: #424242;
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0px 1px 5px rgba(0,0,0,0.15);
    border-radius: 8px;
    border: 1px solid #02391E;
}

.contact-info h3 {
    font-size: 28px;
    color: #02391E;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-info strong {
    font-weight: 700;
    color: #02391E;
}

.contact-info p a {
    color: #424242;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.contact-info p a:hover {
    color: #02391E;
    text-decoration: underline;
}

.contact-whatsapp-section {
    margin-top: 20px;
}

.contact-whatsapp-button {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    background-color: #02391E;
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 5px;
}

.contact-whatsapp-button:hover {
    background-color: #03572d;
}

@media screen and (max-width: 768px) {
    .contact-two-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* LGPD Page */
.lgpd-page-container {
    background-color: #fafafa;
    color: #171717;
    min-height: 100vh;
}

.lgpd-max-width {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.lgpd-hero {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.lgpd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(0, 104, 56, 0.2), rgba(255, 210, 0, 0.1), transparent);
}

.lgpd-hero-grid {
    position: relative;
    display: grid;
    gap: 2rem;
    align-items: center;
}

.lgpd-hero-content h1 {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1c1c1c;
}

.lgpd-hero-content p {
    margin-top: 1rem;
    font-size: 1rem;
    color: #404040;
}

.lgpd-tag {
    display: inline-block;
    background-color: rgba(0, 104, 56, 0.1);
    color: #006838;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.lgpd-button-group {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.lgpd-primary-button {
    display: inline-block;
    background-color: #006838;
    color: white;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    border-radius: 1rem;
    text-decoration: none;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
}

.lgpd-primary-button:hover {
    background-color: #00522d;
}

.lgpd-pillar-card {
    border: 1px solid #e5e7eb;
    background-color: white;
    padding: 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.lgpd-pillar-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.lgpd-pillar-card ul {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    list-style: none;
    padding: 0;
}

.lgpd-pillar-item {
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    border-radius: 1rem;
}

.lgpd-pillar-item p:first-child {
    font-weight: 500;
    color: #006838;
    margin: 0 0 0.25rem 0;
}

.lgpd-pillar-item p:last-child {
    font-size: 0.875rem;
    color: #525252;
    margin: 0;
}

.lgpd-contact-box {
    margin-top: 1rem;
    border-radius: 0.75rem;
    background-color: #f5f5f5;
    padding: 0.75rem;
    font-size: 0.75rem;
    color: #525252;
}

.lgpd-contact-link {
    text-decoration: underline;
    color: #006838;
    font-weight: 500;
}

/* Summary Section */
.lgpd-summary-section {
    padding-bottom: 1rem;
    background-color: rgb(250, 250, 250);
}

.lgpd-summary-card {
    border: 1px solid #e5e7eb;
    background-color: white;
    padding: 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.lgpd-summary-card h2 {
    font-size: 1.25rem;
    font-weight: 600;
}

.lgpd-nav-grid {
    margin-top: 1rem;
    display: grid;
    gap: 0.5rem;
}

.lgpd-nav-item {
    border: 1px solid #e5e7eb;
    padding: 0.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s;
    font-size: 0.875rem;
}

.lgpd-nav-item:hover {
    background-color: #fafafa;
}

/* Content Section */
.lgpd-content-section {
    padding-top: 2rem;
    padding-bottom: 3rem;
    background-color: rgb(250, 250, 250);
}

.lgpd-content-grid {
    display: grid;
    gap: 2rem;
}

.lgpd-sidebar {
    display: none;
}

.lgpd-sidebar-card {
    border: 1px solid #e5e7eb;
    background-color: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    font-size: 0.875rem;
}

.lgpd-sidebar-card p {
    color: #525252;
}

.lgpd-sidebar-card p:first-child {
    font-weight: 500;
    color: #171717;
}

.lgpd-sidebar-card ul {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.lgpd-sidebar-card ul li {
    margin-top: 0.25rem;
}

.lgpd-sidebar-card ul li a {
    text-decoration: none;
    color: inherit;
}

.lgpd-sidebar-card ul li a:hover {
    text-decoration: underline;
}

.lgpd-main-content section {
    scroll-margin-top: 6rem;
    margin-bottom: 2.5rem;
}

.lgpd-main-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.lgpd-main-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.lgpd-main-content p,
.lgpd-main-content li {
    color: #404040;
    line-height: 1.6;
}

.lgpd-main-content ul {
    list-style: disc;
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lgpd-main-content hr {
    margin-top: 1.5rem;
    border-color: #e5e7eb;
}

.lgpd-document-grid {
    margin-top: 1.5rem;
    display: grid;
    gap: 1rem;
}

.lgpd-document-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #e5e7eb;
    background-color: white;
    padding: 1rem;
    border-radius: 1rem;
    text-decoration: none;
    color: #171717;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.lgpd-document-card:hover {
    border-color: #006838;
    background-color: #fafafa;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

.lgpd-document-card i {
    width: 1.25rem;
    height: 1.25rem;
    color: #006838;
    flex-shrink: 0;
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .lgpd-hero {
        padding: 6rem 0;
    }

    .lgpd-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lgpd-hero-content h1 {
        font-size: 3rem;
    }

    .lgpd-hero-content p {
        font-size: 1.125rem;
    }

    .lgpd-nav-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lgpd-content-section {
        padding-top: 3rem;
    }

    .lgpd-content-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .lgpd-sidebar {
        display: block;
        position: sticky;
        top: 1rem;
        height: fit-content;
    }

    .lgpd-main-content {
        grid-column: span 2 / span 2;
    }

    .lgpd-document-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Blog Page */
.blog-banner {
    width: 100%;
    height: 30vh;
    background-image: url('../images/placa.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.blog-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.blog-banner h1,
.blog-banner p {
    position: relative;
    z-index: 1;
}

.blog-banner h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.blog-banner p {
    font-size: 20px;
    max-width: 600px;
}

.blog-filter-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}

.blog-filter-container select {
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: white;
}

.blog-filter-button {
    padding: 8px 16px;
    margin: 0 5px;
    border: 1px solid #02391E;
    border-radius: 20px;
    background-color: transparent;
    color: #02391E;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.blog-filter-button.active,
.blog-filter-button:hover {
    background-color: #02391E;
    color: #ffffff;
}

.blog-tag-badge {
    display: inline-block;
    padding: 4px 10px;
    background-color: #ccc;
    color: #333;
    border-radius: 12px;
    font-size: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    margin: 0 5px;
}

.blog-tag-badge.active {
    background-color: #4CAF50;
    color: white;
}

.blog-tag-badge:hover {
    border-color: #4CAF50;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    padding: 60px 0;
}

.blog-card {
    text-decoration: none;
    color: inherit;
    background-color: #ede8e8ff;
    border: 3px solid #02391E;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-content h3 {
    font-size: 20px;
    color: #02391E;
    margin-bottom: 10px;
}

.blog-card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #575757;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.blog-card-footer {
    margin-top: auto;
    font-size: 14px;
    color: #888;
    display: flex;
    align-items: flex-end;
}

.blog-card-footer > span {
    margin-left: auto;
    padding-left: 10px;
}

.blog-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-tag-badge-small {
    display: inline-block;
    padding: 4px 10px;
    background-color: #ccc;
    color: #333;
    border-radius: 12px;
    font-size: 12px;
}

.blog-category-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.blog-show-more-button {
    background: none;
    border: none;
    color: #02391E;
    font-weight: bold;
    cursor: pointer;
    padding: 8px;
    margin-left: 10px;
    text-decoration: underline;
}

.blog-show-more-button:hover {
    color: #4CAF50;
}

@media screen and (max-width: 768px) {
    .blog-banner h1 {
        font-size: 36px;
    }

    .blog-banner p {
        font-size: 18px;
    }

    .blog-filter-container {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Blog Post Page */
.blogpost-banner-container {
    position: relative;
    width: 100%;
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogpost-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.blogpost-header-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.blogpost-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 40px;
    color: white;
}

.blogpost-banner-title {
    font-size: 48px;
    text-align: center;
    flex-grow: 1;
    padding: 0 30px;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

.blogpost-nav-arrow {
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.blogpost-nav-arrow img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.blogpost-nav-arrow:hover {
    transform: scale(1.1);
}

.blogpost-nav-arrow:hover img {
    opacity: 1;
}

.blogpost-nav-arrow.disabled {
    opacity: 0.2;
    pointer-events: none;
}

.blogpost-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.blogpost-scroll-down img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.blogpost-scroll-down:hover {
    transform: translateX(-50%) scale(1.1);
}

.blogpost-container {
    padding: 40px 0;
    max-width: 800px;
    margin: auto;
}

.blogpost-meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    margin-bottom: 30px;
    background-color: #f9f9f9;
    border-left: 4px solid #02391E;
    color: #575757;
    font-size: 16px;
}

.blogpost-meta .category {
    font-weight: 500;
}

.blogpost-meta .category strong {
    color: #333;
}

.blogpost-meta .tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blogpost-tag-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: #e0e0e0;
    color: #333;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 500;
}

.blogpost-content {
    color: #333;
    line-height: 1.8;
    font-size: 18px;
}

.blogpost-content h2,
.blogpost-content h3,
.blogpost-content h4 {
    color: #02391E;
    margin-top: 40px;
    margin-bottom: 20px;
}

.blogpost-content h2 {
    font-size: 32px;
}

.blogpost-content h3 {
    font-size: 24px;
}

.blogpost-content p {
    margin-bottom: 20px;
}

.blogpost-content ul,
.blogpost-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.blogpost-content li {
    margin-bottom: 10px;
}

.blogpost-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.blogpost-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    border-radius: 8px;
    overflow: hidden;
}

.blogpost-content th,
.blogpost-content td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
}

.blogpost-content th {
    background-color: #f2f2f2;
    color: #02391E;
    font-weight: 600;
}

.blogpost-content tr {
    border-bottom: 1px solid #ddd;
}

.blogpost-content tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.blogpost-content tbody tr:hover {
    background-color: #f1f1f1;
}

.blogpost-next-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: 350px;
    text-decoration: none;
    position: relative;
    background-size: cover;
    background-position: center;
    margin-top: 60px;
    color: white;
}

.blogpost-next-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.3s ease;
}

.blogpost-next-banner:hover::before {
    background-color: rgba(0, 0, 0, 0.65);
}

.blogpost-next-content {
    position: relative;
    z-index: 1;
}

.blogpost-next-content span {
    font-size: 18px;
    font-weight: 500;
}

.blogpost-next-content h3 {
    font-size: 36px;
    margin-top: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 768px) {
    .blogpost-banner-title {
        font-size: 32px;
        padding: 0 15px;
    }

    .blogpost-banner-content {
        padding: 0 20px;
    }

    .blogpost-nav-arrow img {
        width: 30px;
        height: 30px;
    }

    .blogpost-container {
        padding: 30px 20px;
    }

    .blogpost-content {
        font-size: 16px;
    }

    .blogpost-content h2 {
        font-size: 24px;
    }

    .blogpost-content h3 {
        font-size: 20px;
    }

    .blogpost-next-content h3 {
        font-size: 24px;
    }
}
