/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores terrosas mais vivas */
    --primary-color: #9d7a5a;        /* Marrom terroso mais vibrante */
    --secondary-color: #b8956f;       /* Marrom bege quente e vivo */
    --accent-color: #c9a882;          /* Bege acinzentado mais claro */
    --text-dark: #3d2e1f;             /* Marrom escuro harmonioso com a paleta */
    --text-light: #6b5d4f;            /* Marrom médio */
    --bg-light: #f8f5f0;              /* Bege muito claro/quente mais vivo */
    --bg-white: #ffffff;              /* Branco puro */
    --bg-section: #faf7f2;            /* Bege claro para seções alternadas */
    --border-color: #e0d5c4;          /* Bege acinzentado para bordas */
    --cta-color: #E6A500;            /* Dourado mais escuro para CTAs */
    --cta-hover: #CC9500;             /* Dourado ainda mais escuro no hover */
    --gradient-start: #b8956f;        /* Início do gradiente mais vivo */
    --gradient-end: #9d7a5a;          /* Fim do gradiente */
    --highlight-bg: #f5ede3;          /* Fundo para destaques mais claro */
    --card-shadow: 0 8px 30px rgba(157, 122, 90, 0.15);
    --card-shadow-hover: 0 12px 40px rgba(157, 122, 90, 0.25);
    --whatsapp-green: #25D366;
    --whatsapp-green-hover: #20BA5A;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* Header */
.header {
    background-color: var(--bg-white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo h1 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-align: center;
    text-transform: uppercase;
    opacity: 0.9;
}

.header-location {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 400;
}

/* Hero Section */
.hero {
    background-image: url('images/maca.jfif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 1;
    pointer-events: none;
}

.hero .container,
.hero .hero-content-wrapper,
.hero .hero-content,
.hero .hero-image {
    position: relative;
    z-index: 2;
}

@media (min-width: 1200px) {
    .hero {
        padding: 120px 20px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(157, 122, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    gap: 0;
}

@media (min-width: 1200px) {
    .hero-content-wrapper {
        gap: 80px;
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-headline {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.15;
    letter-spacing: -0.8px;
    text-align: center;
}

@media (min-width: 1200px) {
    .hero-headline {
        font-size: 48px;
        letter-spacing: -1px;
    }
}

.hero-subheadline {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    text-align: center;
}

.hero-problem {
    font-size: 19px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 35px;
    line-height: 1.6;
    padding-left: 25px;
    border-left: 4px solid var(--primary-color);
}

.hero-solution {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--bg-white);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.hero-solution-text {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
    width: 100%;
}

.hero-cta-wrapper .cta-button {
    margin: 0;
}

.cta-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 0;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.3px;
}


.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(157, 122, 90, 0.25);
    transition: transform 0.4s ease;
    width: 100%;
    max-width: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-image-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 60px rgba(157, 122, 90, 0.35);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-image-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 53, 40, 0.95) 0%, transparent 100%);
    padding: 30px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-image-badge strong {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.hero-image-badge span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 22px 50px;
    background: linear-gradient(135deg, var(--cta-color) 0%, #F5B800 100%);
    color: #2d2418;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 30px auto;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(230, 165, 0, 0.5);
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    word-wrap: break-word;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--cta-hover) 0%, var(--cta-color) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(230, 165, 0, 0.6);
}

.cta-primary {
    background: linear-gradient(135deg, var(--cta-color) 0%, #F5B800 100%);
    color: #2d2418;
    box-shadow: 0 8px 30px rgba(230, 165, 0, 0.5);
}

.cta-secondary {
    background-color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(166, 139, 111, 0.3);
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(166, 139, 111, 0.4);
}

/* CTAs padronizados - todos com mesmo estilo */

.cta-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin-top: 18px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Section Styles - PADRONIZADO */
section {
    padding: 80px 20px;
    position: relative;
}

@media (min-width: 1200px) {
    section {
        padding: 100px 20px;
    }
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

section:first-child::before {
    display: none;
}

.section-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    background-color: var(--highlight-bg);
    padding: 8px 20px;
    border-radius: 50px;
    margin: 0 auto 25px;
    text-align: center;
    width: fit-content;
}

.section-label-white {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin: 0 auto 35px;
    line-height: 1.3;
    letter-spacing: -0.5px;
    max-width: 900px;
}

@media (min-width: 1200px) {
    .section-title {
        font-size: 36px;
    }
}

.section-title strong {
    color: var(--primary-color);
}

/* Pain Section */
.pain-section {
    background-color: var(--bg-white);
}

/* Intro Section */
.intro-section .section-intro {
    margin-bottom: 30px;
}

.intro-question {
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.intro-list {
    max-width: 800px;
    margin: 0 auto;
}

.intro-conclusion {
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 30px;
    line-height: 1.8;
}

.section-intro {
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin: 0 auto 40px;
    max-width: 800px;
    text-align: center;
    line-height: 1.7;
}

.pain-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pain-list,
.frustration-list,
.for-who-list {
    list-style: none;
    display: grid;
    gap: 16px;
    margin: 0 auto 40px;
    max-width: 800px;
}

.pain-list li,
.frustration-list li,
.for-who-list li {
    padding: 20px 25px;
    padding-left: 50px;
    position: relative;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pain-list li:hover,
.frustration-list li:hover,
.for-who-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.pain-list li::before,
.for-who-list li::before {
    content: "•";
    position: absolute;
    left: 20px;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
    opacity: 0.8;
}

.frustration-list li .icon {
    position: absolute;
    left: 20px;
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

.pain-conclusion,
.frustration-conclusion,
.for-who-note {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    padding-top: 35px;
    border-top: 1px solid var(--border-color);
    line-height: 1.7;
}

/* Frustration Section */
.frustration-section {
    background-color: var(--bg-section);
}

.frustration-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.frustration-content .section-label {
    display: block;
    margin: 0 auto 25px;
}

.frustration-content .section-title {
    margin: 0 auto 35px;
}

.frustration-content .section-label {
    display: block;
    text-align: center;
    margin: 0 auto 25px;
}

.frustration-content .section-title {
    text-align: center;
    margin: 0 auto 35px;
}



.frustration-intro {
    font-size: 18px;
    color: var(--text-dark);
    margin: 0 auto 35px;
    line-height: 1.7;
    max-width: 800px;
    text-align: center;
}


/* Turnaround Section */
.turnaround-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.turnaround-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.turnaround-section .section-title {
    color: white;
}

.turnaround-text {
    font-size: 22px;
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    text-align: center;
}

.turnaround-text strong {
    color: #f5e6d3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.turnaround-highlight {
    margin-top: 20px;
}

.turnaround-description {
    font-size: 19px;
    margin: 30px 0;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.turnaround-note {
    font-size: 18px;
    font-style: italic;
    opacity: 0.95;
    margin-top: 35px;
    font-weight: 500;
}

/* Method Section */
.method-section {
    background-color: var(--bg-white);
}

.method-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.method-content .section-label {
    display: block;
    margin: 0 auto 25px;
}

.method-content .section-title {
    margin: 0 auto 35px;
}

.method-content .section-label {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.method-content .section-title {
    text-align: center;
}

.method-description {
    font-size: 18px;
    color: var(--text-light);
    margin: 0 auto 35px;
    line-height: 1.7;
    max-width: 800px;
    text-align: center;
}


.method-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}

.method-list {
    list-style: none;
    margin: 35px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.method-list li {
    padding: 18px 0;
    padding-left: 35px;
    position: relative;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.8;
    border-bottom: 1px solid var(--border-color);
}

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

.method-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
    opacity: 0.8;
}

.method-list li strong {
    color: var(--primary-color);
}

.method-explanation {
    margin-top: 40px;
    padding: 35px;
    background-color: var(--bg-white);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.method-focus {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

.method-focus strong {
    color: var(--primary-color);
    font-weight: 700;
}

.method-list-items {
    max-width: 600px;
    margin: 20px auto;
}

.method-description + .method-description {
    margin-top: 20px;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--bg-section);
}

.benefits-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin: 0 auto 40px;
    max-width: 800px;
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 0 auto 35px;
    max-width: 1100px;
}

@media (max-width: 1200px) {
    .benefits-grid {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .evaluation-subtitle {
        font-size: 18px;
        margin-bottom: 35px;
    }
}

.benefits-note {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-light);
    font-style: italic;
    margin: 0 auto;
    max-width: 800px;
    padding-top: 35px;
    border-top: 1px solid var(--border-color);
}

.benefit-card {
    padding: 40px 35px;
    background-color: var(--bg-white);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(157, 122, 90, 0.2);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-section) 100%);
}

.benefit-card .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: var(--primary-color);
    background-color: var(--highlight-bg);
    padding: 12px;
    border-radius: 12px;
    display: block;
}

.benefit-card {
    text-align: center;
}

.benefit-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.3px;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.benefit-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 400;
    display: none;
}

.benefits-cta {
    text-align: center;
    margin-top: 40px;
}

.benefits-cta,
.evaluation-cta {
    text-align: center;
    margin-top: 40px;
}

.benefits-cta .cta-button,
.evaluation-cta .cta-button {
    margin: 0 auto;
    display: block;
}


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

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 40px auto 35px;
    padding-top: 35px;
    border-top: 1px solid var(--border-color);
}

.highlight-item {
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 12px;
    text-align: left;
    font-size: 16px;
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.highlight-item .icon {
    margin-right: 0;
    flex-shrink: 0;
}

.highlight-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

/* Evaluation Section */
.evaluation-section {
    background-color: var(--bg-white);
}

.evaluation-section .section-title {
    margin: 0 auto 25px;
}

.evaluation-subtitle {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin: 0 auto 40px;
    max-width: 900px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.evaluation-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin: 0 auto 40px;
    max-width: 800px;
    line-height: 1.7;
}

.evaluation-steps {
    display: grid;
    gap: 20px;
    margin: 0 auto 40px;
    max-width: 900px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 35px;
    background-color: var(--bg-white);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
    box-shadow: 0 12px 40px rgba(157, 122, 90, 0.2);
    border-color: var(--primary-color);
    transform: translateX(8px);
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-section) 100%);
}

.step:hover {
    transform: translateX(10px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--primary-color);
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(157, 122, 90, 0.4);
    border: 4px solid var(--bg-white);
}

.step-content {
    flex: 1;
    text-align: left;
}

.step-content h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 14px;
    font-weight: 700;
    letter-spacing: -0.4px;
    line-height: 1.3;
    text-align: left;
}

.step-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: left;
    margin: 0;
}

.evaluation-info {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
}

.evaluation-note {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 auto 30px;
    text-align: center;
    max-width: 800px;
}

.evaluation-transparency {
    font-size: 17px;
    color: var(--text-light);
    margin: 30px auto 0;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
}

.evaluation-image-wrapper {
    max-width: 800px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(157, 122, 90, 0.25);
}

.evaluation-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.evaluation-how-title {
    text-align: center;
    font-size: 18px;
    color: var(--text-dark);
    margin: 30px 0;
    font-weight: 600;
}

.evaluation-features-text {
    text-align: center;
    font-size: 16px;
    color: var(--text-light);
    margin-top: 40px;
}


/* For Who Section */
.for-who-section {
    background-color: var(--bg-section);
}

.for-who-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.for-who-content .section-label {
    display: block;
    margin: 0 auto 25px;
}

.for-who-content .section-title {
    margin: 0 auto 35px;
}

.for-who-content .section-label {
    display: block;
    text-align: center;
    margin-bottom: 20px;
}

.for-who-content .section-title {
    text-align: center;
}

.for-who-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
}


.for-who-subtitle {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.for-who-note.not-for {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.for-who-note.not-for .icon {
    width: 20px;
    height: 20px;
    color: var(--text-dark);
    flex-shrink: 0;
    margin-top: 2px;
    margin-right: 0;
}


/* About Section */
.about-section {
    background-color: var(--bg-white);
}

.about-section .section-label {
    display: block;
    text-align: center;
    margin: 0 auto 25px;
}

.about-section .section-title {
    text-align: center;
    margin: 0 auto 35px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .about-wrapper {
        gap: 70px;
    }
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(61, 46, 31, 0.9) 0%, transparent 100%);
    padding: 40px 25px 25px;
    color: white;
}

.about-name {
    display: block;
    font-size: 22px;
    margin-bottom: 5px;
    font-weight: 700;
}

.about-role {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 400;
}

.about-content {
    text-align: left;
    max-width: 100%;
}

.about-content p {
    text-align: left;
}

.about-intro {
    font-size: 21px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-content p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 22px;
    line-height: 1.8;
}

.about-highlight {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0 0;
    padding: 25px;
    background-color: var(--highlight-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    line-height: 1.6;
    font-style: italic;
}

.about-description + .about-description {
    margin-top: 20px;
}

.about-credentials {
    margin-top: 35px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background-color: var(--bg-white);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.credential-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(5px);
}

.credential-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.credential-icon .icon {
    width: 20px;
    height: 20px;
}

.credential-text {
    flex: 1;
}

.credential-text strong {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.credential-text span {
    display: block;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}


/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-section);
}

.testimonials-section .section-label {
    display: block;
    margin: 0 auto 25px;
}

.testimonials-section .section-title {
    margin: 0 auto 40px;
}

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

@media (max-width: 1200px) {
    .testimonials-grid {
        gap: 25px;
    }
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 35px 30px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars .icon {
    width: 20px;
    height: 20px;
    color: #FFB800;
    fill: #FFB800;
    stroke: #FFB800;
    stroke-width: 2;
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
    margin-top: auto;
    text-align: right;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-section .section-title {
    color: white;
    margin: 0 auto 25px;
}

.final-cta-section .section-label {
    margin: 0 auto 25px;
}

.final-cta-text {
    font-size: 20px;
    margin: 0 auto 30px;
    line-height: 1.8;
    max-width: 800px;
    text-align: center;
}

.final-cta-button-wrapper {
    margin: 45px auto;
    max-width: 500px;
}

.final-cta-section .cta-button {
    margin: 0;
    display: block;
    width: 100%;
    background: #25D366 !important;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5) !important;
    font-size: 19px;
    padding: 26px 50px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.final-cta-section .cta-button:hover {
    background: #20BA5A !important;
    box-shadow: 0 15px 55px rgba(37, 211, 102, 0.7) !important;
    transform: translateY(-6px) scale(1.04);
}

.final-cta-info {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.final-cta-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: white;
    font-weight: 500;
}

.final-cta-info-item .icon {
    width: 22px;
    height: 22px;
    color: #25D366;
    background-color: white;
    border-radius: 50%;
    padding: 4px;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 30px 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
}

.footer p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.footer-address {
    margin-top: 8px !important;
    font-size: 13px !important;
    opacity: 0.7 !important;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: var(--whatsapp-green-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--whatsapp-green);
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

/* Estilos Gerais para Imagens */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Estilos para Ícones SVG */
.icon {
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    fill: none;
    stroke: currentColor;
    flex-shrink: 0;
}

.icon-x {
    color: var(--primary-color);
    opacity: 0.8;
}

.icon-leaf,
.icon-brain,
.icon-star,
.icon-refresh {
    color: var(--primary-color);
    opacity: 0.9;
}

.icon-check {
    color: var(--primary-color);
    stroke-width: 3;
}

.icon-clock,
.icon-location {
    color: var(--text-dark);
    width: 1em;
    height: 1em;
    margin-right: 6px;
}

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

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

/* Responsividade - Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .hero {
        padding: 100px 20px;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-headline {
        font-size: 38px;
    }
    
    .hero-subheadline {
        font-size: 19px;
    }
    
    .hero-cta-wrapper {
        align-items: center;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    section {
        padding: 80px 20px;
    }
}

/* Responsividade - Mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    
    .section-label {
        font-size: 11px;
        padding: 6px 16px;
    }
    
    .logo h1 {
        font-size: 12px;
        padding: 0 10px;
    }
    
    .hero {
        padding: 70px 20px;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        text-align: center;
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-badge {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-headline {
        font-size: 28px;
        letter-spacing: -0.5px;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .hero-subheadline {
        font-size: 17px;
        text-align: center;
        margin-bottom: 30px;
        line-height: 1.6;
    }
    
    .hero-cta-wrapper {
        align-items: center;
        margin-top: 30px;
    }
    
    .cta-subtitle {
        text-align: center;
    }
    
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        order: -1;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefits-note {
        font-size: 16px;
        margin-top: 25px;
        padding-top: 25px;
    }
    
    section {
        padding: 60px 20px;
    }
    
    section::before {
        width: 60px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 25px;
        letter-spacing: -0.3px;
        text-align: center;
        line-height: 1.3;
    }
    
    .section-label {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 18px;
    }
    
    .section-intro {
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-top: 12px;
    }
    
    .cta-button {
        padding: 20px 35px;
        font-size: 15px;
        width: 100%;
        max-width: 100%;
        letter-spacing: 1px;
        display: block;
        text-align: center;
        margin: 25px auto;
    }
    
    .cta-subtitle {
        font-size: 14px;
        margin-top: 15px;
    }
    
    .pain-list,
    .frustration-list,
    .for-who-list {
        gap: 14px;
        margin-bottom: 28px;
    }
    
    .pain-list li,
    .frustration-list li,
    .for-who-list li {
        font-size: 16px;
        padding: 18px 18px;
        padding-left: 45px;
    }
    
    .pain-list li::before {
        left: 18px;
        font-size: 20px;
    }
    
    .frustration-list li .icon {
        left: 18px;
        width: 18px;
        height: 18px;
    }
    
    .for-who-list li::before {
        left: 18px;
        font-size: 20px;
    }
    
    .pain-content,
    .frustration-content,
    .method-content,
    .for-who-content {
        text-align: center;
    }
    
    .pain-content {
        text-align: center;
    }
    
    .pain-list,
    .frustration-list,
    .for-who-list {
        margin: 0 auto 30px;
    }
    
    .pain-conclusion,
    .frustration-conclusion,
    .for-who-note {
        margin: 0 auto;
        padding-top: 30px;
    }
    
    .method-explanation {
        padding: 25px 20px;
    }
    
    .benefits-intro,
    .evaluation-intro,
    .for-who-subtitle {
        font-size: 16px;
        text-align: center;
        margin-bottom: 28px;
    }
    
    .benefit-card {
        padding: 30px 20px;
        text-align: center;
    }
    
    .benefit-card .icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 18px;
        padding: 10px;
    }
    
    .benefit-card h3 {
        font-size: 18px;
        text-align: center;
        margin: 0;
        min-height: 50px;
    }
    
    .step {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 20px;
    }
    
    .step-number {
        margin-bottom: 0;
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .step-content {
        text-align: center;
        width: 100%;
    }
    
    .step-content h3 {
        font-size: 20px;
        text-align: center;
        margin-bottom: 12px;
    }
    
    .step-content p {
        text-align: center;
        font-size: 15px;
        margin: 0;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-intro {
        font-size: 19px;
        text-align: center;
    }
    
    .about-description {
        font-size: 16px;
        text-align: center;
    }
    
    .about-highlight {
        font-size: 16px;
        text-align: center;
        padding: 20px;
    }
    
    .about-image-overlay {
        padding: 30px 20px 20px;
    }
    
    .about-name {
        font-size: 18px;
    }
    
    .about-role {
        font-size: 13px;
    }
    
    .intro-question,
    .intro-conclusion {
        font-size: 16px;
    }
    
    .evaluation-image-wrapper {
        margin: 30px auto;
        border-radius: 16px;
    }
    
    .evaluation-how-title {
        font-size: 16px;
        margin: 25px 0;
    }
    
    .for-who-note.not-for {
        flex-direction: row;
        text-align: left;
        font-size: 15px;
    }
    
    .about-content p {
        text-align: center;
    }
    
    .evaluation-info {
        text-align: center;
    }
    
    .evaluation-note {
        font-size: 17px;
        margin-bottom: 18px;
    }
    
    .testimonials-section .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
        padding: 0;
    }
    
    .testimonial-card {
        padding: 30px 25px;
        margin: 0 auto;
        max-width: 100%;
        border-radius: 16px;
    }
    
    .testimonial-text {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 20px;
        text-align: left;
    }
    
    .testimonial-author {
        font-size: 14px;
        text-align: right;
        margin-top: auto;
        padding-top: 15px;
    }
    
    .testimonial-stars {
        justify-content: flex-start;
        margin-bottom: 18px;
        flex-wrap: nowrap;
    }
    
    .testimonial-stars .icon {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .evaluation-features {
        margin: 18px auto;
        max-width: 100%;
    }
    
    .evaluation-features li {
        font-size: 15px;
        padding: 10px 0;
        padding-left: 28px;
    }
    
    .evaluation-transparency {
        font-size: 16px;
        margin-top: 25px;
        padding-top: 20px;
    }
    
    .pain-conclusion,
    .frustration-conclusion,
    .for-who-note {
        font-size: 16px;
        margin-top: 28px;
        padding-top: 25px;
    }
    
    .method-focus {
        font-size: 17px;
    }
    
    .highlights {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
        padding-top: 28px;
    }
    
    .highlight-item {
        padding: 20px;
        text-align: center;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .turnaround-text,
    .method-focus,
    .about-content p {
        font-size: 18px;
    }
    
    .final-cta-section {
        padding: 70px 20px;
    }
    
    .final-cta-section .section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .final-cta-text {
        font-size: 17px;
        margin-bottom: 30px;
    }
    
    .final-cta-button-wrapper {
        margin: 30px auto;
        max-width: 100%;
    }
    
    .final-cta-section .cta-button {
        font-size: 15px;
        padding: 20px 30px;
        width: 100%;
    }
    
    .final-cta-info {
        margin-top: 35px;
        gap: 20px;
        flex-direction: column;
    }
    
    .final-cta-info-item {
        font-size: 15px;
    }
    
    .final-cta-info-item .icon {
        width: 20px;
        height: 20px;
    }
    
    .credential-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        text-align: center;
    }
    
    .credential-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }
    
    .credential-icon .icon {
        width: 20px;
        height: 20px;
    }
    
    .credential-text {
        text-align: center;
    }
    
    .credential-text strong {
        font-size: 17px;
    }
    
    .credential-text span {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 15px;
    }
    
    .hero-headline {
        font-size: 24px;
        margin-bottom: 18px;
        line-height: 1.2;
    }
    
    .hero-subheadline {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 22px;
        margin-bottom: 22px;
        line-height: 1.3;
    }
    
    section {
        padding: 50px 15px;
    }
    
    .section-label {
        font-size: 10px;
        padding: 6px 14px;
        margin-bottom: 16px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 18px 25px;
    }
    
    .pain-list li,
    .frustration-list li,
    .for-who-list li {
        font-size: 15px;
        padding: 16px 16px;
        padding-left: 40px;
    }
    
    .pain-list li::before,
    .for-who-list li::before {
        left: 15px;
        font-size: 18px;
    }
    
    .frustration-list li .icon {
        left: 15px;
        width: 16px;
        height: 16px;
    }
    
    .benefit-card {
        padding: 25px 18px;
    }
    
    .benefit-card .icon {
        width: 36px;
        height: 36px;
        margin-bottom: 15px;
        padding: 8px;
    }
    
    .benefit-card h3 {
        font-size: 17px;
        min-height: 48px;
    }
    
    .testimonials-grid {
        gap: 20px;
        max-width: 100%;
        padding: 0 5px;
    }
    
    .testimonial-card {
        padding: 28px 20px;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 18px;
    }
    
    .testimonial-author {
        font-size: 13px;
        text-align: right;
        margin-top: auto;
    }
    
    .testimonial-stars {
        justify-content: flex-start;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }
    
    .testimonial-stars .icon {
        width: 16px;
        height: 16px;
    }
    
    .evaluation-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
        padding: 0 5px;
        line-height: 1.4;
    }
    
    .step {
        padding: 22px 18px;
        gap: 18px;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-content p {
        font-size: 14px;
    }
    
    .final-cta-section {
        padding: 60px 15px;
    }
    
    .final-cta-section .section-title {
        font-size: 22px;
    }
    
    .final-cta-text {
        font-size: 16px;
    }
    
    .final-cta-section .cta-button {
        font-size: 14px;
        padding: 18px 25px;
    }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

