* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --coffee-dark: #2C1810;
    --coffee-medium: #5C3D2E;
    --coffee-light: #8B6F47;
    --cream: #F5E6D3;
    --accent: #D4A574;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-light: #666666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

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

/* Hero Section */
.hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    max-height: 500px;
    background-image: url('img/banner-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(44, 24, 16, 0.85) 0%,
        rgba(92, 61, 46, 0.75) 50%,
        rgba(44, 24, 16, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--cream);
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.cta-button:hover {
    background: var(--coffee-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

/* About Section */
.about {
    padding: 80px 20px;
    background: var(--white);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--coffee-dark);
    margin-bottom: 2rem;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.highlight-card {
    background: var(--cream);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    color: var(--coffee-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

/* Info Workshop Section */
.info-workshop {
    padding: 80px 20px;
    background: var(--white);
}

.info-workshop h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--coffee-dark);
    margin-bottom: 3rem;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin-bottom: 3rem;
}

.info-card {
    background: var(--cream);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.info-card.highlight {
    background: linear-gradient(135deg, var(--coffee-dark), var(--coffee-medium));
    color: var(--white);
    border-color: var(--accent);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--coffee-dark);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-card.highlight h3 {
    color: var(--accent);
}

.info-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--coffee-dark);
    margin-bottom: 0.5rem;
}

.info-card.highlight .info-value {
    color: var(--white);
    font-size: 2rem;
}

.info-detail {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

.info-card.highlight .info-detail {
    color: var(--cream);
}

.info-includes {
    max-width: 800px;
    margin: 3rem auto 0;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.info-includes h3 {
    color: var(--coffee-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.info-includes ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.info-includes li {
    padding: 12px 15px;
    color: var(--text-dark);
    font-size: 1.05rem;
    background: var(--cream);
    border-radius: 8px;
    transition: background 0.3s ease;
}

.info-includes li:hover {
    background: var(--accent);
    color: var(--white);
}

/* Program Section */
.program {
    padding: 80px 20px;
    background: linear-gradient(to bottom, var(--cream), var(--white));
}

.program h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--coffee-dark);
    margin-bottom: 3rem;
}

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

.program-item {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.program-item h3 {
    color: var(--coffee-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.program-item ul {
    list-style: none;
    padding-left: 0;
}

.program-item li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.program-item li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Instructor Section */
.instructor {
    padding: 80px 20px;
    background: var(--coffee-dark);
    color: var(--white);
}

.instructor h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.instructor-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: center;
}

.instructor-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.instructor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instructor-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--accent);
}

.instructor-title {
    font-size: 1.2rem;
    color: var(--cream);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.instructor-bio {
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.curadoria {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.curadoria strong {
    color: var(--accent);
}

/* Registration Section */
.registration {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.registration h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--coffee-dark);
    margin-bottom: 1rem;
}

.registration-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.registration-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--cream);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.submit-button {
    width: 100%;
    padding: 18px;
    background: var(--coffee-dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--coffee-medium);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(44, 24, 16, 0.3);
}

.success-message {
    max-width: 700px;
    margin: 0 auto;
    background: #d4edda;
    border: 2px solid #c3e6cb;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.success-message h3 {
    color: #155724;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: #155724;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background: var(--coffee-dark);
    color: var(--cream);
    padding: 40px 20px;
    text-align: center;
}

footer p {
    margin: 10px 0;
}

.contact {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
}

/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .about h2,
    .program h2,
    .instructor h2,
    .registration h2 {
        font-size: 2rem;
    }

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

    .instructor-card {
        padding: 30px;
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }

    .instructor-photo {
        margin: 0 auto;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

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

    .hero {
        min-height: 350px;
        max-height: 400px;
    }
}
