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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFFFFF;
}

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

/* Colors */
:root {
    --primary-color: #FFFFFF;
    --secondary-color: #0FA6D0;
    --tertiary-color: #214993;
    --text-dark: #333333;
    --text-light: #666666;
    --accent-color: #FFA500;
    --success-color: #28a745;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    background: var(--primary-color);
    padding: 20px 0;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Hero Section - BLOCO 1 */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f8f9fa 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--tertiary-color);
    font-weight: 500;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.feature .icon {
    margin-right: 12px;
    font-size: 1.2rem;
}

/* Hero Form */
.hero-form-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-form-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    border-top: 4px solid var(--secondary-color);
}

.hero-form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-align: center;
}

.hero-form-subtitle {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 500;
}

.hero-form .form-group {
    margin-bottom: 20px;
}

.hero-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.hero-form input:focus,
.hero-form select:focus,
.hero-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(15, 166, 208, 0.1);
}

.hero-submit-btn {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    font-size: 1.1rem;
}

.hero-form-disclaimer {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 15px;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* CTA Buttons */
.cta-button {
    background: var(--secondary-color);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 4px 15px rgba(15, 166, 208, 0.3);
}

.cta-button:hover {
    background: var(--tertiary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(15, 166, 208, 0.4);
}

.cta-button.secondary {
    background: var(--tertiary-color);
    box-shadow: 0 4px 15px rgba(33, 73, 147, 0.3);
}

.cta-button.secondary:hover {
    background: var(--secondary-color);
    box-shadow: 0 6px 25px rgba(33, 73, 147, 0.4);
}

/* Interest Section - BLOCO 2 */
.interest {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.interest-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.problem-cards {
    display: grid;
    gap: 30px;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

.problem-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.interest-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: center;
}

.stat {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-text {
    color: var(--text-light);
    font-weight: 500;
}

/* Desire Section - BLOCO 3 */
.desire {
    padding: 80px 0;
    background: var(--primary-color);
}

.desire-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.solution-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.solution-text .highlight {
    color: var(--secondary-color);
}

.solution-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-list {
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.service-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.service-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-weight: 600;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Social Proof - BLOCO 4 */
.social-proof {
    padding: 80px 0;
    background: #f8f9fa;
}

.proof-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.proof-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.testimonials {
    display: grid;
    gap: 30px;
}

.testimonial {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1.05rem;
}

.testimonial-author {
    color: var(--text-light);
    font-weight: 500;
}

.guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.guarantee {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.guarantee-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.guarantee h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.guarantee p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Action Section - BLOCO 5 */
.action {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.form-section {
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 45px 15px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    cursor: pointer;
    color: #999;
}

.form-group select:invalid {
    color: #999;
}

.form-group select option {
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(15, 166, 208, 0.1);
}

.form-icon {
    position: absolute;
    right: 15px;
    top: 43px;
    font-size: 1.2rem;
    color: var(--text-light);
}

.checkbox-group {
    margin-top: 15px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    opacity: 0;
    position: absolute;
}

.checkmark {
    margin-right: 12px;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    color: var(--secondary-color);
}

.outro-field {
    margin-top: 20px;
}

.outro-field textarea {
    margin-top: 10px;
    resize: vertical;
    min-height: 80px;
}

.submit-btn {
    width: 100%;
    padding: 20px;
    font-size: 1.2rem;
    margin-top: 30px;
}

.form-disclaimer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-text p {
    margin-bottom: 5px;
    opacity: 0.8;
}

/* Thank You Page Styles */
.thank-you {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--primary-color) 100%);
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 30px;
    color: var(--success-color);
}

.thank-you-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.thank-you-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    font-weight: 500;
}

.thank-you-message {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    text-align: left;
}

.thank-you-message p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-light);
    line-height: 1.7;
}

.next-steps h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 600;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    background: var(--secondary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    margin: 0;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.whatsapp-btn,
.phone-btn {
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

.phone-btn {
    background: var(--secondary-color);
    color: white;
}

.phone-btn:hover {
    background: var(--tertiary-color);
    transform: translateY(-2px);
}

.reassurance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reassurance-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: left;
}

.reassurance-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: block;
    color: var(--secondary-color);
}

.reassurance-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.reassurance-item p {
    color: var(--text-light);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-content,
    .interest-content,
    .desire-content,
    .proof-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .stats,
    .guarantees,
    .reassurance {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 2rem;
    }

    .contact-buttons {
        flex-direction: column;
    }

    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-form-card {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .hero-form-title {
        font-size: 1.5rem;
    }

    .interest,
    .desire,
    .social-proof,
    .action {
        padding: 60px 0;
    }

    .thank-you-title {
        font-size: 2.5rem;
    }

    .thank-you-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .thank-you-title {
        font-size: 2rem;
    }
}

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

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Form Validation Styles */
.form-group.error input,
.form-group.error textarea {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group .error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}