@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Raleway:wght@400;700&display=swap');

:root {
    --primary-color: #387A3D;
    --secondary-color: #384640;
    --dark-grey: #000000;
    --medium-grey: #606060;
    --light-grey: #e2e2e2;
    --white: #ffffff;
    --header-font: 'Montserrat', Arial, Helvetica, sans-serif;
    --body-font: 'Raleway', Arial, Helvetica, sans-serif;
}

body {
    font-family: var(--body-font);
    margin: 0;
    line-height: 1.6;
    background-color: var(--white);
    color: var(--dark-grey);
    scroll-behavior: smooth;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
    overflow: visible;
}

h1, h2, h3, h4 {
    font-family: var(--header-font);
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
    color: var(--secondary-color);
}

ul {
    list-style: none;
    padding: 0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* Header */
header {
    background: var(--white);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--light-grey);
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

header .logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: var(--header-font);
}

header nav ul {
    display: flex;
    gap: 25px;
}

header nav ul li a {
    color: var(--dark-grey);
    font-weight: 600;
    font-family: var(--header-font);
    font-size: 1rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: var(--header-font);
    transition: background-color 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.cta-button:hover, .hero-form form button:hover {
    background-color: #2e6031;
}

.cta-button:active, .hero-form form button:active {
    transform: scale(0.97);
}

.btn-icon {
    margin-right: 8px;
    font-size: 1rem;
    display: inline-block;
}

/* Hero Section */
.hero-bg {
    position: relative;
    min-height: 80vh;
    max-height: 95vh;
    background: url('/assets/images/banner-site.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(40, 50, 40, 0.7);
    z-index: 1;
}
.hero-center {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: left;
    max-width: 700px;
    margin: 0;
    padding: 3rem 22rem 3rem 0;
}
.hero-label {
    display: block;
    font-size: 1.1rem;
    color: #d6e07a;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.hero-center h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.hero-center h1 .highlight {
    font-size: 2rem;
    font-weight: 600;
}
.hero-center ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
}
.hero-center ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #f3f3f3;
}
.hero-center .cta-button {
    margin-top: 1.5rem;
}

/* Indicador de scroll */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.scroll-indicator:hover {
    transform: translateX(-50%) translateY(5px);
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.8;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover span {
    opacity: 1;
}

.scroll-indicator .scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-indicator:hover .scroll-arrow {
    border-color: #d6e07a;
}

@keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

@media (max-width: 768px) {
    /* Container com mais padding lateral */
    .container {
        padding: 0 1.5rem;
    }
    
    /* Seções com mais espaçamento vertical */
    section {
        padding: 3rem 0;
    }
    
    /* Títulos das seções com mais espaçamento */
    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        line-height: 1.3;
    }
    
    /* Parágrafos com mais espaçamento */
    section p {
        margin-bottom: 1.5rem;
        line-height: 1.7;
        font-size: 1.05rem;
    }
    
    /* Hero section */
    .hero-bg {
        min-height: 70vh;
        max-height: 85vh;
    }
    .hero-center {
        padding: 2.5rem 1.5rem 2.5rem 0;
    }
    .hero-center h1 { 
        font-size: 1.9rem; 
        margin-bottom: 1.2rem;
        line-height: 1.2;
    }
    .hero-center h1 .highlight {
        font-size: 1.5rem;
    }
    .hero-center ul {
        margin-top: 1.5rem;
    }
    .hero-center ul li {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        padding: 0.5rem 0;
    }
    .scroll-indicator {
        bottom: 20px;
    }
    
    /* Seção de soluções */
    .solutions-grid {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .solution-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .solution-card h3 {
        margin-bottom: 1.2rem;
        font-size: 1.4rem;
    }
    
    .solution-card p {
        margin-bottom: 1.5rem;
    }
    
    /* Lista de vantagens */
    .advantages-list {
        margin-top: 2rem;
        gap: 1rem;
    }
    
    .advantages-list li {
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    /* Seção de doenças */
    .diseases-list {
        margin-top: 2rem;
        gap: 0.8rem;
    }
    
    .diseases-list li {
        padding: 0.8rem 0;
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }
    
    /* Seção de equipe */
    .team-grid {
        gap: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .team-member {
        padding: 1.5rem;
        text-align: center;
    }
    
    .team-member h4 {
        margin: 1.2rem 0 0.8rem 0;
        font-size: 1.3rem;
    }
    
    .team-member p {
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .team-desc {
        margin-top: 2.5rem;
        padding: 0 0.5rem;
        font-size: 1.05rem;
        line-height: 1.7;
    }
    
    /* FAQ */
    .faq-list {
        margin-top: 2rem;
    }
    
    .faq-item {
        margin-bottom: 1.5rem;
    }
    
    .faq-question {
        padding: 1.2rem 1rem;
        font-size: 1.05rem;
        line-height: 1.4;
    }
    
    .faq-answer {
        padding: 1.5rem 1rem;
    }
    
    .faq-answer p {
        margin-bottom: 1.2rem;
    }
    
    .faq-answer ul li {
        margin-bottom: 0.8rem;
        padding: 0.3rem 0;
    }
}

/* Mobile pequeno - ainda mais espaçamento */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 2.5rem 0;
    }
    
    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.8rem;
    }
    
    section p {
        font-size: 1rem;
        margin-bottom: 1.3rem;
        line-height: 1.6;
    }
    
    .hero-center {
        padding: 2rem 1rem;
    }
    
    .hero-center h1 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
    }
    
    .hero-center ul li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        padding: 0.4rem 0;
    }
    
    .solution-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.2rem;
    }
    
    .advantages-list li {
        padding: 0.8rem 0;
        font-size: 1rem;
    }
    
    .diseases-list li {
        padding: 0.6rem 0;
        font-size: 1rem;
    }
    
    .team-member {
        padding: 1.2rem 0.8rem;
    }
    
    .team-desc {
        padding: 0;
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem 0.8rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 1.2rem 0.8rem;
    }
}

.hero-form {
    flex: 0 0 400px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(56, 122, 61, 0.08);
}

.hero-form h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-family: var(--header-font);
}

.hero-form p {
    text-align: justify;
    margin-bottom: 1.5rem;
    color: var(--medium-grey);
    line-height: 1.5;
}

.hero-form form input,
.hero-form form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--light-grey);
    border-radius: 5px;
    box-sizing: border-box;
    font-family: var(--body-font);
}

.hero-form form button {
    width: 100%;
}

.hero-banner-img {
    flex: 0 0 420px;
    max-width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner-img img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(56, 122, 61, 0.10);
}

/* Stats Section */
.stats {
    padding: 2.5rem 0;
    background-color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item p {
    margin: 0;
}

.stat-item strong {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Solutions Section */
.solutions {
    padding: 2.5rem 0;
    background: var(--white);
}

.solutions-intro {
    display: block;
    width: 100%;
    text-align: center;
    color: var(--medium-grey);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

#solutions .container {
    padding-top: 4rem;
}

.solution-cards-flex {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.solution-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    flex: 1 1 0;
    min-width: 0;
    max-width: 350px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.solution-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.solution-card h4 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.solution-subtitle {
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.solution-card ul {
    list-style: '✔ ';
    padding-left: 1.5rem;
}

.solution-card ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .solution-cards-flex {
        flex-direction: column;
        align-items: center;
    }
    .solution-card {
        flex-basis: 100%;
    }
}

.diseases {
    padding: 2.5rem 0;
    background: var(--light-grey);
}

.diseases-list {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.diseases-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    break-inside: avoid-column;
}

.diseases > .container > p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.testimonials {
    padding: 2.5rem 0;
    background-color: var(--white);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: #f5f5f5;
}

.testimonial-card:hover::before {
    opacity: 0.6;
    transform: scale(1.1);
}

.testimonial-card p {
    font-style: italic;
    color: var(--medium-grey);
    margin-bottom: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.testimonial-card h4 {
    text-align: right;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Efeito de expansão no hover */
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(56, 122, 61, 0.1) 100%);
    transition: height 0.3s ease;
    z-index: 0;
}

.testimonial-card:hover::after {
    height: 100%;
}

.faq {
    padding: 2.5rem 0;
    background-color: var(--light-grey);
}

.faq .container {
    max-width: 800px;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-item h4 {
    margin: 0;
}

.faq-list {
    margin-top: 2rem;
}

.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    color: var(--secondary-color);
    font-family: var(--header-font);
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.2s;
}

.faq-item.open .faq-question {
    color: var(--primary-color);
}
.faq-item.open .faq-question:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.open .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px; /* Adjust as needed */
    transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0;
}

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

.footer-content h3, .footer-content h4 {
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}
.footer-links ul li a, footer p {
    color: var(--light-grey);
}
.footer-bottom {
    border-top: none;
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
}

.footer-bottom p {
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
    line-height: 1;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact .icon-email, .footer-contact .icon-whatsapp {
    font-size: 1.2rem;
}

.footer-contact a {
    color: var(--light-grey);
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-logo-img {
    height: 60px;
    margin-right: 10px;
    vertical-align: middle;
}

@media(max-width: 992px) {
    header nav ul {
        /* display: none; */
    }
    .hero-content {
        padding: 3rem 1.5rem;
    }
    .hero-form {
        margin: 2rem 0 0 0;
    }
    .stats-grid, .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .solutions .container {
        padding-top: 2rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
    .diseases-list {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

.hero-content.reverse {
    flex-direction: row-reverse;
}

.trust-badge {
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.cta-button, .hero-form form button {
    transition: background-color 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
}

.cta-button:hover, .hero-form form button:hover {
    background-color: #2e6031;
}

.btn-icon {
    margin-right: 8px;
    font-size: 1rem;
    display: inline-block;
}

.how-it-works {
    padding: 2.5rem 0;
    background-color: var(--light-grey);
}

.how-it-works h2 {
    margin-bottom: 3rem;
}

.steps {
    display: flex;
    justify-content: space-around;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex-basis: 200px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

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

.step-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    margin: 0 auto 1rem auto;
    font-size: 1.2rem;
}

.testimonial-card {
    position: relative;
    padding-top: 3rem;
    border-left: none;
    border-top: 4px solid var(--primary-color);
}

.testimonial-card:before {
    content: '“';
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    opacity: 0.8;
}

@media(max-width: 992px) {
    .hero-content.reverse {
        flex-direction: column-reverse;
    }
    .steps {
        flex-direction: column;
        align-items: center;
    }
}

.contact-social {
    text-align: center;
    margin-top: 1.5rem;
}

.contact-social a {
    color: var(--medium-grey);
    margin: 0 10px;
}

.contact-social a:hover {
    color: var(--primary-color);
}

.highlight {
    color: #d6e07a;
}

.legal-base, .solution-details {
    padding: 2.5rem 0;
    text-align: center;
}

.legal-base h2, .solution-details h2 {
    margin-bottom: 1.5rem;
}
.legal-base p, .solution-details p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}

.team {
    padding: 2.5rem 0;
    background-color: var(--light-grey);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.team-member {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--primary-color);
}

.team-member h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.team-member p {
    color: var(--medium-grey);
}
.team-desc {
    margin-top: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
}
@media(max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.logo-img {
    height: 60px;
    margin-right: 10px;
    vertical-align: middle;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2001;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    background: var(--secondary-color);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

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

@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding-bottom: 1rem;
        z-index: 2500;
        min-height: 200px;
    }

    .nav-links.open {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-links ul {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 1rem 0;
        margin: 0;
    }

    .nav-links ul li {
        margin: 1rem 0;
        text-align: center;
        width: 100%;
        list-style: none;
    }

    .nav-links ul li a {
        font-size: 1.2rem;
        display: block;
        padding: 0.5rem 1rem;
        width: 100%;
        text-decoration: none;
        color: var(--dark-grey);
        cursor: pointer;
    }

    .hamburger {
        display: flex;
    }
    
    header nav {
        position: relative;
        z-index: 2500;
    }
}

.hero-content.reverse {
    flex-direction: row-reverse;
}

.trust-badge {
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.cta-button, .hero-form form button {
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(56, 122, 61, 0.08);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
}

.cta-button:active, .hero-form form button:active {
    transform: scale(0.97);
    box-shadow: 0 2px 6px rgba(56, 122, 61, 0.08);
}

.btn-icon {
    font-size: 1.1em;
    margin-right: 0.2em;
    display: inline-block;
}

/* Overlay para menu hambúrguer */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.35);
    z-index: 1000;
    transition: opacity 0.3s;
    pointer-events: none;
}
.menu-overlay.open {
    display: block;
    pointer-events: auto;
}

/* Animação do ícone hambúrguer para X */
.hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
.hamburger span {
    transition: all 0.3s;
}

/* Divisores decorativos entre seções */
.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #387A3D 0%, #384640 100%);
    border-radius: 2px;
    margin: 2.5rem auto 2.5rem auto;
}

/* Espaçamento e centralização em telas pequenas */
@media(max-width: 992px) {
    .container {
        padding: 0 1rem;
        overflow: visible;
    }
    .footer-content {
        text-align: center;
    }
    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 1200px) {
    .hero-banner-img {
        flex: 0 0 320px;
        max-width: 320px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-banner-img {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        padding: 0 1rem;
    }
    .hero-banner-img img {
        max-width: 350px;
        margin: 0 auto;
        display: block;
    }
}

.form-section {
    background: var(--white);
    padding: 2.5rem 0 1.5rem 0;
}

.form-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}
.form-logo-col {
    flex: 0 0 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-logo-img {
    width: 150px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(56, 122, 61, 0.10);
}
.form-section .hero-form {
    flex: 1 1 320px;
    max-width: 480px;
    margin: 0 auto;
}
@media (max-width: 700px) {
    .form-flex {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 100%;
    }
    .form-logo-col {
        margin-bottom: 0.5rem;
    }
    .form-section .hero-form {
        max-width: 100%;
    }
    .form-logo-img {
        width: 110px;
    }
}

.consultor-label {
    display: block;
    font-size: 0.98rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 700px) {
    .testimonial-card {
        min-width: 90vw;
        max-width: 95vw;
        flex: 0 0 90vw;
    }
}

.testimonial-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-grid {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 2rem;
    scroll-behavior: smooth;
    padding: 1rem 0;
    width: 100%;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.testimonial-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.testimonial-card {
    min-width: 320px;
    max-width: 380px;
    flex: 0 0 340px;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.testimonial-card p {
    font-style: italic;
    color: var(--medium-grey);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-card h4 {
    text-align: right;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

.testimonial-arrow {
    position: relative;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-arrow:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.testimonial-arrow:active {
    transform: scale(0.95);
}

@media (max-width: 700px) {
    .testimonial-carousel-wrapper {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .testimonial-grid {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .testimonial-card {
        min-width: 90%;
        max-width: 90%;
        flex: 0 0 90%;
        padding: 1.5rem;
        margin: 0 auto;
    }
    
    .testimonial-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .testimonial-carousel-wrapper {
        gap: 0.3rem;
        padding: 0 0.5rem;
    }
    
    .testimonial-grid {
        gap: 0.8rem;
    }
    
    .testimonial-card {
        min-width: 95%;
        max-width: 95%;
        flex: 0 0 95%;
        padding: 1.2rem;
    }
    
    .testimonial-arrow {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

/* Blog Styles */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.blog-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.blog-content {
    padding: 4rem 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(40,40,40,0.07);
    border: 1px solid #ececec;
    transition: transform 0.25s cubic-bezier(.4,2,.6,1), box-shadow 0.25s cubic-bezier(.4,2,.6,1);
}

.blog-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px rgba(40,40,40,0.13);
}

.blog-card-image {
    height: 180px;
    background: #f6f6f6;
    border-radius: 8px 8px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #e2e2e2;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s ease;
}

/* Garantir que imagens de artigos ocupem todo o espaço */
.blog-card-image img:not([alt*="Logo Isentando IR"]) {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    padding: 0 !important;
    border-radius: 8px 8px 0 0 !important;
    box-shadow: none !important;
    background: none !important;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image img[alt*="Logo Isentando IR"] {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-card-content {
    padding: 1rem;
}

.blog-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    margin-bottom: 0.7rem;
    font-size: 1.08rem;
    line-height: 1.3;
}

.blog-card h3 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-card p {
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--medium-grey);
    border-top: 1px solid var(--light-grey);
    padding-top: 1rem;
}

.blog-date {
    font-weight: 500;
}

.blog-read-time {
    background: var(--light-grey);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.blog-cta {
    text-align: center;
    background: var(--light-grey);
    padding: 3rem 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

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

.blog-cta p {
    color: var(--medium-grey);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.2rem;
    }
    
    .blog-hero p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-card-content {
        padding: 1.2rem;
    }
    
    .blog-card h3 {
        font-size: 1.2rem;
    }
    
    .blog-cta {
        padding: 2rem 1rem;
    }
    
    .blog-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* Blog Article Styles */
.blog-article {
    padding: 2rem 0;
    background: #fafafa;
    min-height: 100vh;
}

.article-header {
    background: var(--white);
    padding: 2rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--light-grey);
}

.breadcrumb {
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.article-category {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.article-header h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin: 1rem 0;
    line-height: 1.2;
    font-weight: 700;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    color: var(--medium-grey);
    font-size: 0.9rem;
}

.article-date, .article-author, .article-read-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.article-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.article-intro {
    font-size: 1.1rem;
    color: var(--medium-grey);
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

.article-content h2 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin: 2.5rem 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-grey);
    text-align: left;
}

.article-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

.article-content p {
    margin-bottom: 1.2rem;
    color: var(--dark-grey);
    font-size: 1rem;
    line-height: 1.7;
}

.article-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-content ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.article-content ul li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.article-content ul li strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.article-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.article-content ol li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--dark-grey);
}

.article-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.article-cta p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: rgba(255,255,255,0.9);
}

.article-footer {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.article-tags {
    margin-bottom: 2rem;
}

.tag {
    display: inline-block;
    background: #f0f0f0;
    color: var(--medium-grey);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin: 0.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--primary-color);
    color: var(--white);
}

.article-share h4 {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.share-btn.whatsapp {
    background: #25D366;
    color: var(--white);
}

.share-btn.facebook {
    background: #1877F2;
    color: var(--white);
}

/* Responsividade para artigos */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .article-content {
        padding: 1.5rem;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.2rem;
    }
    
    .article-intro {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .article-cta {
        padding: 1.5rem;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-content ul {
        padding-left: 1rem;
    }
}

/* Balão flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-bubble {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-bubble:active {
    transform: scale(0.95);
}

.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 20px;
    border: 6px solid transparent;
    border-top-color: #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(0);
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-bubble {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-tooltip {
        font-size: 0.8rem;
        padding: 6px 10px;
        bottom: 65px;
    }
}

.blog-pagination, .blog-pagination * {
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}

.blog-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 2.5rem 0 0 0;
    border-radius: 0;
    padding: 0;
    z-index: 2;
}

.blog-pagination button {
    background: #fff !important;
    border: 1px solid #e2e2e2 !important;
    color: #384640 !important;
    font-family: var(--header-font);
    font-size: 1rem;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border 0.18s;
    box-shadow: 0 1px 4px rgba(40,40,40,0.04);
    min-width: 44px;
    min-height: 38px;
    display: inline-block;
}

.blog-pagination button.active,
.blog-pagination button:focus {
    background: var(--primary-color) !important;
    color: #fff !important;
    border: 1.5px solid var(--primary-color) !important;
    outline: none;
}

.blog-pagination button:hover:not(.active):not(:disabled) {
    background: #f6f6f6 !important;
    color: var(--primary-color) !important;
    border: 1.5px solid #b5d6b7 !important;
}

.blog-pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.blog-content, .blog-grid, .blog-pagination, .blog-pagination * {
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.blog-content-flex {
    display: flex;
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
    box-sizing: border-box;
}
.blog-sidebar {
    order: 0;
    width: 260px;
    max-width: 260px;
    min-width: 180px;
    flex-shrink: 0;
    box-sizing: border-box;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(40,40,40,0.10);
    padding: 2.2rem 1.7rem 2.2rem 1.7rem;
    font-family: var(--header-font);
    color: var(--secondary-color);
    position: sticky;
    top: 2rem;
    height: fit-content;
    transition: box-shadow 0.2s;
}
.sidebar-title {
  font-size: 1.2rem;
  font-weight: bold;
  color: #1e88e5;
  margin-bottom: 18px;
  margin-top: 0;
}
.blog-sidebar {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(30, 136, 229, 0.08);
  padding: 24px 18px 18px 18px;
  min-width: 220px;
  max-width: 320px;
  margin-right: 32px;
  margin-bottom: 24px;
}
.sidebar-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: #f5f5f5;
  color: #222;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  margin-bottom: 8px;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.sidebar-btn.active {
  background: #1e88e5;
  color: #fff;
  font-weight: bold;
}
.sidebar-btn:hover:not(.active) {
  background: #e3eafc;
  color: #1e88e5;
}
@media (max-width: 900px) {
  .blog-content-flex {
    flex-direction: column;
  }
  .blog-sidebar {
    max-width: 100%;
    min-width: 0;
    margin-right: 0;
    margin-bottom: 18px;
  }
}

.blog-card.filtered-out {
    display: none !important;
}

.blog-filters {
  width: 100%;
  margin: 0 auto 28px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.filter-btn {
  background: #f5f5f5;
  color: #222;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-weight: 500;
}
.filter-btn.active {
  background: #1e88e5;
  color: #fff;
  font-weight: bold;
}
.filter-btn:hover:not(.active) {
  background: #e3eafc;
  color: #1e88e5;
}
@media (max-width: 700px) {
  .filters-row {
    gap: 6px;
  }
  .filter-btn {
    padding: 8px 10px;
    font-size: 0.95rem;
  }
}

/* Animações de scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Indicador de scroll */
.solutions-advantages {
    margin-top: 3rem;
    text-align: center;
    padding: 2rem 0;
}

.solutions-advantages h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 600px;
    margin: 0 auto;
    list-style: none;
    padding: 0;
}

.advantages-list li {
    padding: 0.8rem 0;
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1.1rem;
    border-bottom: 1px solid var(--light-grey);
    transition: color 0.3s ease;
    text-align: center;
}

.advantages-list li:last-child {
    border-bottom: none;
}

.advantages-list li:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .advantages-list {
        gap: 0.6rem;
        max-width: 100%;
    }
    
    .solutions-advantages {
        padding: 1.5rem 0;
        margin-top: 2rem;
    }
    
    .solutions-advantages h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .advantages-list li {
        padding: 0.6rem 0;
        font-size: 1rem;
    }
}

@media (max-width: 700px) {
    .testimonial-grid {
        gap: 1rem;
    }
    
    .testimonial-card {
        min-width: 280px;
        max-width: 320px;
        flex: 0 0 300px;
        padding: 1.5rem;
    }
    
    .testimonial-arrow {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .testimonial-carousel-wrapper {
        gap: 0.5rem;
    }
}