/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: #f0ece8;
}

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

/* Logo */
.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    background: #f0ece8;
    color: #000000;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    margin: 30px 0;
    line-height: 1.3;
    color: #000000;
}

.promise-box {
    background: rgba(235, 53, 48, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid #eb3530;
    text-align: left;
}

.promise-box p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
}

.promise-box ul {
    list-style: none;
    padding: 0;
}

.promise-box li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #000000;
    line-height: 1.5;
}

.promise-box li:before {
    content: "✨";
    position: absolute;
    left: 0;
    top: 0;
}

/* CTA Container */
.cta-container {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    color: #000000;
    text-align: center;
}

.cta-container h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #eb3530;
    font-family: 'Dancing Script', cursive;
}

.cta-subtitle {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* CTA Buttons */
.cta-button {
    background: linear-gradient(135deg, #eb3530 0%, #d32f2f 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(235, 53, 48, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(235, 53, 48, 0.4);
    text-decoration: none;
    color: white;
}

.cta-button.primary {
    width: 100%;
}

.cta-button.secondary {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    font-size: 1.3rem;
    padding: 20px 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cta-button.large {
    font-size: 1.4rem;
    padding: 25px 50px;
}

/* Schedule Section */
.schedule {
    padding: 80px 0;
    background: white;
}

.schedule h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #000000;
}

.schedule-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

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

.day-card {
    background: #f0ece8;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #eb3530;
}

.day-card:hover {
    transform: translateY(-10px);
}

.day-number {
    background: linear-gradient(135deg, #eb3530 0%, #d32f2f 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.day-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
    font-family: 'Dancing Script', cursive;
}

.day-card p {
    color: #333;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    text-align: center;
}

/* Instructor Section */
.instructor {
    padding: 80px 0;
    background: #f0ece8;
}

.instructor h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
}

.instructor-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: center;
}

.instructor-image {
    position: relative;
}

.instructor-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.instructor-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #eb3530;
    margin-bottom: 10px;
    font-family: 'Dancing Script', cursive;
}

.instructor-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.credentials p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #000000;
}

/* Target Audience Section */
.target-audience {
    padding: 80px 0;
    background: white;
}

.target-audience h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.audience-item {
    background: #f0ece8;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 2px solid #eb3530;
}

.audience-item:hover {
    transform: translateY(-5px);
}

.audience-item .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.audience-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000000;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #f0ece8;
}

.benefits h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 2px solid #eb3530;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #eb3530;
}

.benefit-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000000;
}

/* Urgency Section */
.urgency {
    padding: 60px 0;
    background: linear-gradient(135deg, #eb3530 0%, #d32f2f 100%);
}

.urgency-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.urgency-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f0ece8;
    margin-bottom: 15px;
    font-family: 'Dancing Script', cursive;
}

.urgency-box p {
    font-size: 1.2rem;
    color: white;
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: #000000;
    text-align: center;
    color: white;
}

.final-message {
    margin-top: 40px;
}

.final-message h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #eb3530;
    font-family: 'Dancing Script', cursive;
}

.final-message p {
    font-size: 1.2rem;
    color: #f0ece8;
}

/* Footer */
.footer {
    padding: 30px 0;
    background: #000000;
    text-align: center;
    color: #f0ece8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .promise-box {
        margin: 30px 0;
        padding: 25px;
    }
    
    .cta-container {
        margin: 20px 0;
    }
    
    .instructor-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .instructor-image img {
        height: 300px;
    }
    
    .schedule h2,
    .instructor h2,
    .target-audience h2,
    .benefits h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .cta-button.secondary,
    .cta-button.large {
        font-size: 1.1rem;
        padding: 18px 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .promise-box {
        padding: 20px;
    }
    
    .promise-box p {
        font-size: 1.1rem;
    }
    
    .promise-box li {
        font-size: 1rem;
    }
    
    .cta-container {
        padding: 20px;
    }
    
    .schedule,
    .instructor,
    .target-audience,
    .benefits {
        padding: 60px 0;
    }
    
    .day-card,
    .audience-item {
        padding: 25px 20px;
    }
}

