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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(180deg, #fff9ec, #ffe9cc);
    min-height: 100vh;
}

/* Header Section */
.header-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 20px;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-container {
    flex: 0 0 auto;
}

.logo {
    height: 60px; /* Aumentado de 50px para 60px */
    width: auto;
}

.location-container {
    flex: 1;
    text-align: right;
}

.location-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem; /* Aumentado de 1rem para 1.1rem */
    margin: 0;
}

/* Hero Section */
.hero-section {
    padding: 60px 20px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.hero-image-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 50;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background: white;
    padding: 10px;
}

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

.hero-content {
    margin-right: 180px;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.botao-principal {
    display: inline-block;
    padding: 1em 2em;
    background: #43a047;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    font-size: 1.2em;
    margin: 1.5rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.botao-principal:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.urgencia {
    font-size: 1rem;
    color: #ff6600;
    margin-top: 1rem;
}

/* Social Proof Section */
.social-proof-section {
    padding: 40px 20px;
    background: #f9f9f9;
    text-align: center;
}

.social-proof-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.grid-prints {
    margin-bottom: 2rem;
}

.grid-prints img {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

blockquote {
    font-style: italic;
    color: #555;
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Why Special Section */
.why-special-section {
    padding: 60px 20px;
    background: #f0f8ff;
    text-align: center;
}

.why-special-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 800;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.benefit-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    display: block;
    object-fit: cover;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

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

/* How It Works Section */
.how-it-works-section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.how-it-works-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.how-it-works-section ul {
    list-style: none;
}

.how-it-works-section li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding-left: 10px;
}

/* Before After Section */
.before-after-section {
    padding: 40px 20px;
    text-align: center;
    background: #f0f8ff;
}

.before-after-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.before-after-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1rem auto;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.before-after-section p {
    margin-top: 1.5rem;
    color: #555;
    font-style: italic;
}

/* Benefits Section */
.benefits-section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.benefits-section ul {
    list-style: none;
}

.benefits-section li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    padding-left: 10px;
}

/* Guarantee Section */
.guarantee-section {
    padding: 40px 20px;
    text-align: center;
    background: #f9f9f9;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.guarantee-section p {
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

/* Final CTA Section */
.final-cta-section {
    padding: 60px 20px;
    text-align: center;
    background: #f0f8ff;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    padding: 1em 1.2em;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .location-container {
        text-align: center;
    }
    
    .location-text {
        font-size: 1rem; /* Ajustado para mobile */
    }
    
    .logo {
        height: 50px; /* Ajustado para mobile */
    }
    
    .hero-image-container {
        position: static;
        width: 120px;
        height: 120px;
        margin: 0 auto 20px auto;
    }
    
    .hero-content {
        margin-right: 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .botao-principal {
        font-size: 1rem;
        padding: 0.8em 1.6em;
    }
    
    .grid-prints {
        flex-direction: column;
        align-items: center;
    }
    
    .grid-prints img {
        margin-bottom: 1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-special-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .header-section {
        padding: 10px 15px;
    }
    
    .logo {
        height: 45px; /* Ajustado para mobile */
    }
    
    .location-text {
        font-size: 0.9rem; /* Ajustado para mobile */
    }
    
    .hero-section {
        padding: 40px 15px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .botao-principal {
        width: 100%;
    }
    
    .hero-image-container {
        width: 100px;
        height: 100px;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 320px) {
    .hero-section h1 {
        font-size: 1.6rem;
    }
    
    .location-text {
        font-size: 0.85rem; /* Ajustado para mobile */
    }
    
    .why-special-section h2 {
        font-size: 1.8rem;
    }
}

