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

:root {
    --primary-color: #0b1239;
    --secondary-color: #1e3a8a;
    --accent-color: #3b82f6; /* Revert accent color to blue */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #ffffff;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.larger-text {
    font-size: 1.6rem; /* Increased font size for second section */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-light);
}

.btn-premium {
    background: linear-gradient(135deg, var(--warning-color), #f97316);
    color: var(--text-light);
    box-shadow: var(--shadow-md);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    height: 40px;
    width: auto;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    line-height: 1.1;
    color: var(--primary-color);
}

.highlight {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Video Section */
.video-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.video-container {
    position: relative;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.video-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.video-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.video-content p {
    color: rgba(255, 255, 255, 0.8);
}

.video-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.urgency-text-inline {
    display: flex;
    align-items: center;
    gap: 0.25rem; /* Diminuir o gap para aproximar o ícone da frase */
    color: var(--warning-color);
    font-weight: 600;
    font-size: 0.8rem; /* Diminuir a fonte para caber em uma linha */
    white-space: nowrap; /* Garantir que a frase fique em uma linha */
}

/* Problem Solution Section */
.problem-solution-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--background-light) 0%, #f1f5f9 100%);
    text-align: center;
}

.problem-solution-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.problem-solution-section p {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
}

.problem-solution-section .btn {
    margin-top: 3rem; /* Increased margin for button spacing */
}

.objections-list {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: var(--background-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
}

.objections-items {
    list-style: none;
    padding: 0;
    text-align: left;
}

.objections-items li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #e6ffed;
    border-radius: 0.5rem;
    border-left: 4px solid var(--success-color);
}

.objections-items li:last-child {
    margin-bottom: 0;
}

.objections-items li i {
    color: var(--success-color);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.objections-items li strong {
    color: var(--primary-color);
    font-weight: 700;
}

.objections-items li {
    font-size: 1.1rem;
    color: var(--text-primary);
}

/* About Masterclass Section */
.about-masterclass {
    padding: 5rem 0;
    background: var(--background-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.masterclass-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem; /* Increased margin for button spacing */
}

.masterclass-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); /* Reverted to blue */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--text-light);
}

.masterclass-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.masterclass-card ul {
    list-style: none;
    padding: 0;
}

.masterclass-card ul li {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.masterclass-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.how-it-works {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.work-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.work-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.work-item h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.surprise-card {
    background: linear-gradient(135deg, var(--warning-color), #f97316);
    color: var(--text-light);
}

.surprise-card h3,
.surprise-card p {
    color: var(--text-light);
}

.surprise-card .card-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: var(--background-light);
}

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

.pricing-card {
    background: var(--background-white);
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.pricing-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.premium {
    border: 3px solid var(--warning-color);
}

.popular-badge,
.premium-badge {
    position: absolute;
    top: -0.5rem;
    right: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
}

.popular-badge {
    background: var(--accent-color);
}

.premium-badge {
    background: var(--warning-color);
}

.pricing-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.pricing-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-features {
    padding: 0 2rem 2rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.pricing-features ul li i {
    color: var(--success-color);
    flex-shrink: 0;
}

.pricing-card .btn {
    margin: 0 2rem 2rem;
    width: calc(100% - 4rem);
}

.pricing-card .price .amount, .pricing-card .price .period {
    font-size: 3rem; /* Ensure consistent font size for all prices */
}

.pricing-card .price .currency {
    font-size: 1.25rem;
    align-self: flex-start; /* Align currency to the top */
    margin-top: 0.5rem;
}

.centered-text {
    text-align: center;
    width: 100%;
}

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

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

.testimonial-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

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

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
}

.final-cta h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.final-cta .cta-button {
    margin-top: 2rem;
}

.guarantee {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.guarantee-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 600px;
}

.guarantee-badge i {
    font-size: 2.5rem;
    color: var(--success-color);
}

.guarantee-badge h4 {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 1.5rem;
}

.guarantee-badge p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.guarantee-seal {
    width: 120px; /* Adjusted size for better visibility */
    height: auto;
    object-fit: contain; /* Ensure the image fits within the bounds */
    border-radius: 50%; /* Make it circular to match the seal design */
}

/* Instructor Section */
.instructor-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.instructor-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.instructor-image {
    flex: 1;
    max-width: 700px; /* Increased size for Conrado's photo */
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.instructor-image img {
    width: 100%;
    height: auto;
    display: block;
}

.instructor-details {
    flex: 2;
}

.instructor-details h3 {
    color: var(--primary-color);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.instructor-details p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.instructor-details h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.instructor-details ul {
    list-style: none;
    padding: 0;
}

.instructor-details ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
    color: var(--text-primary);
}

.instructor-details ul li i {
    color: var(--success-color);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.instructor-benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    white-space: normal;
    word-break: normal;
    line-height: 1.5;
}

.instructor-benefits-list li i {
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
}

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

.footer-brand .footer-logo {
    height: 50px; /* Adjust as needed */
    /* filter: brightness(0) invert(1); */ /* Removed to fix white logo */
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-info p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mt-20 {
    margin-top: 5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .video-section {
        grid-template-columns: 1fr;
    }
    .instructor-content {
        flex-direction: column;
        text-align: center;
    }
    .instructor-image {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .hero {
        padding: 100px 0 60px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .masterclass-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card .btn {
        width: auto;
    }
    .guarantee-badge {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .guarantee-badge i {
        margin-right: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .btn-large {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    .video-content h3 {
        font-size: 1.2rem;
    }
    .video-content p {
        font-size: 0.875rem;
    }
    .pricing-header h3 {
        font-size: 1.5rem;
    }
    .amount {
        font-size: 2.5rem;
    }
    .testimonial-content p {
        font-size: 0.9rem;
    }
}

