/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

/* Hero Section */
.hero {
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    position: relative;
}

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

/* Main Content */
.content {
    padding: 2rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
}

h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.intro {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.intro strong {
    color: #c4a57b;
    font-weight: 600;
}

.description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: #555;
    text-align: center;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Results Section */
.results {
    margin: 3rem 0;
}

.results h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.result-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #f5f1ed 0%, #e8dfd5 100%);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
}

.cta-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.cta-section p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.btn svg {
    width: 24px;
    height: 24px;
}

.btn-instagram {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: #fff;
}

.btn-instagram:hover {
    background: linear-gradient(135deg, #6a2d91 0%, #d41818 50%, #d99538 100%);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebe57;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 1.5rem;
    color: #666;
    border-top: 1px solid #eee;
    margin-top: 3rem;
}

.footer p {
    margin: 0.25rem 0;
}

.footer strong {
    color: #c4a57b;
    font-size: 1.1rem;
}

.location {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (min-width: 640px) {
    .container {
        max-width: 90%;
    }

    .hero-image img {
        max-height: 450px;
    }

    h1 {
        font-size: 2rem;
    }

    .intro {
        font-size: 1.15rem;
    }

    .description {
        font-size: 1.05rem;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .cta-buttons {
        flex-direction: row;
        gap: 1.5rem;
    }

    .btn {
        padding: 1rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 800px;
    }

    .hero-image img {
        max-height: 500px;
    }

    h1 {
        font-size: 2.25rem;
    }

    .intro {
        font-size: 1.25rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .cta-section {
        padding: 3rem 2rem;
    }

    .cta-buttons {
        max-width: 500px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 960px;
    }

    .hero-image img {
        max-height: 550px;
    }

    h1 {
        font-size: 2.5rem;
    }

    .intro {
        font-size: 1.3rem;
    }

    .description {
        font-size: 1.15rem;
    }

    .cta-buttons {
        max-width: 600px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1024px;
    }

    .hero-image img {
        max-height: 600px;
    }

    h1 {
        font-size: 2.75rem;
    }

    .intro {
        font-size: 1.4rem;
    }

    .description {
        font-size: 1.2rem;
    }
}
