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

:root {
    --verde-musgo: #6B7A5A;
    --terracota: #C65D4F;
    --bege: #F5F1E8;
    --off-white: #FEFEFE;
    --verde-claro: #E8F0E3;
    --texto-escuro: #2C3E2D;
    --texto-medio: #5A6B5D;
    --texto-claro: #8A9B8D;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

/* Base Styles */
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--texto-escuro);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--texto-escuro);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--verde-musgo), var(--terracota));
    border-radius: 2px;
}

/* Header */
.header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--verde-musgo);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo span {
    color: var(--bege);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: -5px;
}

.logo h2 {
    color: white;
    font-size: 1.8rem;
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.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;
}

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

.cta-button.primary {
    background: var(--terracota);
    color: white;
}

.cta-button.primary:hover {
    background: #B54A3D;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.cta-button.secondary {
    background: var(--verde-musgo);
    color: white;
}

.cta-button.secondary:hover {
    background: #5A6B4A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44,62,45,0.7), rgba(107,122,90,0.5));
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.leaf-icon {
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 1.2em;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 300;
    line-height: 1.6;
}

.hero-cta {
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    margin-bottom: 1rem;
    background: var(--terracota);
    color: white;
}

.urgency-text {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.urgency-text i {
    color: #FFD700;
    margin-right: 0.5rem;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--verde-musgo), var(--terracota));
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.problem-icon {
    width: 80px;
    height: 80px;
    background: var(--verde-claro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.problem-icon i {
    font-size: 2rem;
    color: var(--verde-musgo);
}

.problem-card:hover .problem-icon {
    background: var(--verde-musgo);
}

.problem-card:hover .problem-icon i {
    color: white;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--texto-escuro);
}

.problem-image {
    text-align: center;
    margin-top: 3rem;
}

.section-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background: var(--bege);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.solution-text .section-title::after {
    left: 0;
    transform: none;
}

.solution-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--texto-medio);
    line-height: 1.7;
}

/* Deliverables Section */
.deliverables-section {
    padding: 5rem 0;
    background: white;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.deliverable-card {
    background: var(--off-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--verde-musgo);
    transition: var(--transition);
    position: relative;
}

.deliverable-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.deliverable-icon {
    width: 60px;
    height: 60px;
    background: var(--verde-musgo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.deliverable-icon i {
    font-size: 1.5rem;
    color: white;
}

.deliverable-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--texto-escuro);
}

.delivery-time {
    text-align: center;
    font-size: 1.1rem;
    color: var(--verde-musgo);
    font-weight: 600;
    padding: 1rem;
    background: var(--verde-claro);
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

/* Target Section */
.target-section {
    padding: 5rem 0;
    background: var(--verde-claro);
}

.target-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.target-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.target-text .section-title::after {
    left: 0;
    transform: none;
}

.target-list {
    list-style: none;
}

.target-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.target-list i {
    color: var(--verde-musgo);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.testimonial-card {
    display: none;
    background: var(--bege);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-light);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--texto-medio);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--verde-musgo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.5rem;
    color: white;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: var(--texto-escuro);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--texto-claro);
}

.carousel-dots {
    text-align: center;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: var(--texto-claro);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background-color: var(--verde-musgo);
}

/* Offer Section */
.offer-section {
    padding: 5rem 0;
    background: var(--bege);
}

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

.price-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.price-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--verde-musgo), var(--terracota));
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 2rem;
    color: var(--verde-musgo);
    font-weight: 600;
}

.amount {
    font-size: 4rem;
    color: var(--verde-musgo);
    font-weight: 700;
    font-family: var(--font-heading);
}

.payment-options {
    font-size: 1.1rem;
    color: var(--texto-medio);
}

.urgency-box {
    background: #FFF3CD;
    border: 1px solid #FFEAA7;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #856404;
}

.urgency-box i {
    color: #FF6B35;
}

.bonus-box {
    background: var(--terracota);
    color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.bonus-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.bonus-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.offer-cta {
    font-size: 1.3rem;
    padding: 1.5rem 3rem;
    background: var(--verde-musgo);
    color: white;
}

/* Guarantee Section */
.guarantee-section {
    padding: 4rem 0;
    background: white;
}

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

.guarantee-icon {
    width: 100px;
    height: 100px;
    background: var(--verde-claro);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.guarantee-icon i {
    font-size: 3rem;
    color: var(--verde-musgo);
}

.guarantee-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--texto-medio);
}

/* Closing Section */
.closing-section {
    padding: 5rem 0;
    background: var(--verde-musgo);
    color: white;
}

.closing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.poetic-quote {
    font-size: 2.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.closing-cta {
    background: var(--terracota);
    color: white;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--off-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--texto-escuro);
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--texto-medio);
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--texto-escuro);
    transition: var(--transition);
    box-shadow: var(--shadow-light);
}

.contact-option:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-medium);
}

.contact-option.whatsapp:hover {
    background: #25D366;
    color: white;
}

.contact-option.instagram:hover {
    background: #E4405F;
    color: white;
}

.contact-option.email:hover {
    background: var(--verde-musgo);
    color: white;
}

.contact-option i {
    font-size: 1.5rem;
}

.portfolio-preview h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--texto-escuro);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.portfolio-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.portfolio-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-medium);
}

/* Footer */
.footer {
    background: var(--texto-escuro);
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-logo h3 {
    font-size: 1.5rem;
    margin-bottom: -5px;
}

.footer-logo span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--bege);
}

.footer-copy {
    text-align: right;
}

.footer-copy p {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .solution-content,
    .target-content,
    .closing-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .closing-content {
        text-align: center;
    }
    
    .target-text .section-title,
    .solution-text .section-title {
        text-align: center;
    }
    
    .target-text .section-title::after,
    .solution-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .problems-grid,
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-copy {
        text-align: center;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 8rem 0 4rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .poetic-quote {
        font-size: 1.8rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .currency {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .poetic-quote {
        font-size: 1.5rem;
    }
    
    .contact-options {
        gap: 0.5rem;
    }
    
    .contact-option {
        padding: 0.8rem 1rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-image {
        height: 200px;
    }
}



/* Footer Verde */
.footer-green {
    background: var(--verde-musgo);
    padding: 2rem 0;
    margin-top: 0;
}

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

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo span {
    color: var(--bege);
    font-size: 0.9rem;
    font-weight: 300;
    margin-bottom: -5px;
}

.footer-logo h3 {
    color: white;
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-rights {
    text-align: center;
    flex: 1;
}

.footer-rights p {
    color: var(--bege);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-rights {
        text-align: center;
    }
}

