:root {
    --primary: #f97316; /* Laranja pêssego */
    --secondary: #fff7ed; /* Pêssego suave */
    --accent: #ea580c; /* Laranja escuro */
    --dark: #2a2a2a;
    --light: #ffffff;
    --gradient: linear-gradient(135deg, #f97316 50%, #ea580c 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}

body {
    background: var(--light);
    color: var(--dark);
    line-height: 1.6;
}

/* Hero Section */
.hero {
    padding: 6rem 2rem;
    background: var(--secondary);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    padding-right: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    height: 500px;
    background: var(--gradient);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(212, 180, 153, 0.2);
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: var(--light);
}

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

.feature-card {
    background: var(--secondary);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 180, 153, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 180, 153, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    color: var(--accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--dark);
    opacity: 0.8;
}

/* Social Proof Section */
.social-proof {
    background: var(--gradient);
    padding: 4rem 2rem;
    color: white;
    text-align: center;
}

.stats {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--secondary);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta h2 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta p {
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(212, 180, 153, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: var(--accent);
}

.btn {
    padding: 1rem 2rem;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(182, 127, 130, 0.2);
}

.btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(182, 127, 130, 0.3);
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

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

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

    .input-group {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        height: 300px;
    }
}

/* Carousel Styles */
.carousel-container {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.carousel {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.2);
}

.how-it-works {
    padding: 6rem 2rem;
    background: #f9f5f2;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.section-title p {
    color: #666;
    font-size: 1.1rem;
}

.steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 4px 20px rgba(212, 180, 153, 0.1);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 2.5rem;
    background: linear-gradient(135deg, #d4b499 0%, #b67f82 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: #f9f5f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #b67f82;
    font-size: 1.5rem;
}

.step-card h3 {
    color: #2a2a2a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.step-card p {
    color: #666;
    line-height: 1.6;
}

.step-arrow {
    position: absolute;
    top: 30%;
    right: -1rem;
    color: #d4b499;
    font-size: 1.5rem;
    z-index: 1;
}

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

    .step-arrow {
        display: none;
    }
}

.step-card {
    background: var(--light);
    box-shadow: 0 4px 20px rgba(var(--primary), 0.1);
}

.step-number {
    background: var(--gradient);
}

.step-icon {
    background: var(--secondary);
    color: var(--accent);
}

.step-arrow {
    color: var(--primary);
}

.hero-image {
    box-shadow: 0 20px 40px rgba(var(--primary), 0.2);
}

.feature-card {
    border: 1px solid rgba(var(--primary), 0.2);
}

.feature-card:hover {
    box-shadow: 0 10px 30px rgba(var(--primary), 0.2);
}

input {
    border: 2px solid rgba(var(--primary), 0.2);
}

.btn {
    box-shadow: 0 4px 12px rgba(var(--primary), 0.2);
}

.how-it-works {
    background: var(--secondary);
}

.section-title h2 {
    color: var(--dark);
}

.section-title p {
    color: var(--dark);
    opacity: 0.8;
}

footer {
    /* background: #fafafa; */
    padding: 30px 0;
    width: 100%;
    text-align: center;
    color: #666;
    position: relative;
    border-top: 1px solid #eee;
    /* background: linear-gradient(to top, var(--neutral), #ffffff); */
}

footer p {
    font-family: "Montserrat", serif;
    font-size: 14px;
    opacity: 0.8;
}

/* Garantir que o conteúdo acima do footer tenha padding suficiente */
.cta {
    padding-bottom: 100px; /* Aumentar o padding bottom da última seção */
    margin-bottom: 0;
}

/* Container wrapper para manter o footer no lugar */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.content-wrapper {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

.dialog-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 62, 80, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dialog-overlay.active {
    opacity: 1;
}

.dialog-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 400px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.dialog-overlay.active .dialog-content {
    transform: translateY(0);
}

.dialog-content i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}

.dialog-content h3 {
    color: var(--text);
    font-family: "Playfair Display", serif;
    font-size: 24px;
    margin-bottom: 16px;
}

.dialog-content p {
    color: var(--text-light);
    font-family: "Montserrat", serif;
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.dialog-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: "Montserrat", serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
}

.dialog-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}
