/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1F3B4D;
    background-color: #F2E9DA;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: #1F3B4D;
}

/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #2E7D6E, #CBA135);
    color: white;
    box-shadow: 0 8px 25px rgba(46, 125, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(46, 125, 110, 0.4);
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* SEÇÃO 1 - Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #F2E9DA 0%, #FFFFFF 50%, #F2E9DA 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(46, 125, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(203, 161, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(31, 59, 77, 0.05) 0%, transparent 50%);
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(242, 233, 218, 0.85);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(46, 125, 110, 0.1);
    color: #2E7D6E;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(46, 125, 110, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 25px;
    color: #1F3B4D;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #2E7D6E, #CBA135);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #1F3B4D;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.9;
}

.hero-cta {
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2E7D6E;
    font-size: 14px;
    font-weight: 500;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #CBA135;
    font-size: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* SEÇÃO 2 - Dor do Público */
.pain-points {
    padding: 100px 0;
    background: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: #1F3B4D;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pain-item {
    background: #F2E9DA;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 125, 110, 0.1);
}

.pain-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(31, 59, 77, 0.1);
}

.pain-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2E7D6E, #CBA135);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.pain-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1F3B4D;
}

.pain-item p {
    color: #1F3B4D;
    opacity: 0.8;
}

.pain-solution {
    background: linear-gradient(135deg, rgba(46, 125, 110, 0.1), rgba(203, 161, 53, 0.1));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(46, 125, 110, 0.2);
}

.pain-solution p {
    font-size: 1.1rem;
    color: #1F3B4D;
    line-height: 1.7;
}

/* SEÇÃO 3 - Como funciona */
.how-it-works {
    padding: 100px 0;
    background: #F2E9DA;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.process-item {
    background: #FFFFFF;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 125, 110, 0.1);
    position: relative;
    overflow: hidden;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(31, 59, 77, 0.1);
}

.process-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2E7D6E, #CBA135);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 3;
}

.process-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-item:hover .process-image img {
    transform: scale(1.05);
}

.process-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(46, 125, 110, 0.1), rgba(203, 161, 53, 0.1));
    border-radius: 15px;
}

.process-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1F3B4D;
}

.process-item p {
    color: #1F3B4D;
    opacity: 0.8;
}

.results-section {
    background: #FFFFFF;
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(46, 125, 110, 0.1);
}

.results-section h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #2E7D6E;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(46, 125, 110, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.result-item:hover {
    background: rgba(46, 125, 110, 0.1);
    transform: translateX(5px);
}

.result-item i {
    color: #CBA135;
    font-size: 20px;
    min-width: 20px;
}

.result-item span {
    color: #1F3B4D;
    font-weight: 500;
}

/* SEÇÃO EXTRA - Método Expansão Transformacional */
.transformation-method {
    padding: 100px 0;
    background: #FFFFFF;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.method-item {
    background: #F2E9DA;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 125, 110, 0.1);
    position: relative;
}

.method-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(31, 59, 77, 0.1);
}

.method-item.featured {
    background: linear-gradient(135deg, rgba(46, 125, 110, 0.1), rgba(203, 161, 53, 0.1));
    border: 2px solid #CBA135;
    transform: scale(1.05);
}

.method-item.featured:hover {
    transform: translateY(-5px) scale(1.05);
}

.method-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #CBA135, #2E7D6E);
    color: white;
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.method-sessions {
    display: inline-block;
    background: linear-gradient(135deg, #2E7D6E, #CBA135);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.method-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1F3B4D;
}

.method-item p {
    color: #1F3B4D;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.free-evaluation {
    background: linear-gradient(135deg, #2E7D6E, #1F3B4D);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.evaluation-content h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.evaluation-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.free-evaluation .btn-primary {
    background: linear-gradient(135deg, #CBA135, #2E7D6E);
}

/* SEÇÃO 4 - Depoimentos */
.testimonials {
    padding: 100px 0;
    background: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.testimonial-item {
    background: #F2E9DA;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(46, 125, 110, 0.1);
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(31, 59, 77, 0.1);
}

.testimonial-content {
    padding: 40px 30px;
}

.stars {
    color: #CBA135;
    margin-bottom: 20px;
    font-size: 18px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1F3B4D;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2E7D6E, #CBA135);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    color: #1F3B4D;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.author-info span {
    color: #2E7D6E;
    font-size: 0.9rem;
    font-weight: 500;
}

/* SEÇÃO 5 - CTA Final */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #2E7D6E, #1F3B4D);
    color: white;
    text-align: center;
}

.cta-content .section-icon {
    color: #CBA135;
    margin-bottom: 20px;
}

.final-cta h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    margin-bottom: 40px;
}

.final-cta .btn-primary {
    background: linear-gradient(135deg, #CBA135, #2E7D6E);
    font-size: 1.1rem;
    padding: 20px 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.contact-item i {
    color: #CBA135;
}

/* Footer */
.footer {
    background: #1F3B4D;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-brand h3 {
    color: #CBA135;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer-brand p {
    opacity: 0.9;
    margin-bottom: 5px;
    color: #F2E9DA;
}

.footer-links h4,
.footer-contact h4 {
    color: #CBA135;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #F2E9DA;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.9;
    display: inline-block;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
}

.footer-links a:hover {
    color: #CBA135;
    opacity: 1;
    border-bottom-color: #CBA135;
    transform: translateX(5px);
}

.footer-links a:visited {
    color: #F2E9DA;
}

.footer-links a:visited:hover {
    color: #CBA135;
}

.footer-contact p {
    margin-bottom: 10px;
    opacity: 0.9;
    color: #F2E9DA;
}

.footer-contact i {
    color: #CBA135;
    margin-right: 8px;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(203, 161, 53, 0.3);
    padding-top: 30px;
    text-align: center;
    color: #F2E9DA;
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 100vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
    
    .pain-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .pain-item,
    .process-item {
        padding: 30px 20px;
    }
    
    .results-section {
        padding: 40px 20px;
    }
    
    .testimonial-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 18px 25px;
        font-size: 16px;
    }
    
    .method-grid {
        grid-template-columns: 1fr;
    }
    
    .method-item.featured {
        transform: none;
    }
    
    .method-item.featured:hover {
        transform: translateY(-5px);
    }
    
    .process-image {
        height: 150px;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus states para acessibilidade */
.btn:focus,
a:focus {
    outline: 2px solid #CBA135;
    outline-offset: 2px;
}

/* Alto contraste para melhor legibilidade */
@media (prefers-contrast: high) {
    .hero-title .highlight {
        color: #2E7D6E;
        background: none;
        -webkit-text-fill-color: unset;
    }
    
    .btn-primary {
        background: #2E7D6E;
        border: 2px solid #1F3B4D;
    }
}

/* Header com navegação */
.agenda-header {
    background: linear-gradient(135deg, #2E7D6E, #1F3B4D);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 600;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(1.1);
}

.logo i {
    color: #CBA135;
    font-size: 1.5rem;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(203, 161, 53, 0.2);
    color: white;
}

/* Responsivo para o header */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .nav {
        gap: 10px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* Reduced motion para usuários sensíveis a animações */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .scroll-indicator {
        animation: none;
    }
}
