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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #424242;
    overflow-x: hidden;
    background: linear-gradient(135deg, #e0ffe0 0%, #c0f0c0 100%);
}

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

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #006400;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #006400;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #006400;
    text-align: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #4CAF50 0%, #2196F3 100%);
    color: white;
    text-align: center;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/images/fazenda_moderna_1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #006400;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.event-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.info-item.price {
    background: #FFC107;
    color: #424242;
    font-size: 1.2rem;
    font-weight: 800;
}

.info-item i {
    font-size: 1.2rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #FFC107;
    color: #424242;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
    background: #FFB300;
}

.cta-button.large {
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
}

/* Learning Section */
.learning {
    padding: 5rem 0;
    background: transparent;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

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

.benefit-item i {
    font-size: 2rem;
    color: #4CAF50;
    margin-top: 0.2rem;
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.learning-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #006400;
    margin-bottom: 1rem;
}

.subtitle-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
}

/* Target Audience */
.target-audience {
    padding: 5rem 0;
    background: transparent;
}

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

.audience-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.audience-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.audience-item h3 {
    font-size: 1.5rem;
    color: #006400;
    margin-bottom: 1rem;
}

.audience-item p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Deliverables */
.deliverables {
    padding: 5rem 0;
    background: transparent;
}

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

.deliverable-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.deliverable-item i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.deliverable-item h3 {
    font-size: 1.3rem;
    color: #006400;
    margin-bottom: 0.5rem;
}

.deliverable-item p {
    font-size: 1rem;
    color: #666;
}

/* Schedule */
.schedule {
    padding: 5rem 0;
    background: transparent;
}

.schedule-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #F5F5F5;
    border-radius: 15px;
    border-left: 4px solid #4CAF50;
}

.timeline-item .time {
    font-size: 1.2rem;
    font-weight: 800;
    color: #006400;
    min-width: 80px;
}

.timeline-item .content h3 {
    font-size: 1.2rem;
    color: #424242;
    margin-bottom: 0.5rem;
}

.timeline-item .content p {
    color: #666;
    line-height: 1.6;
}

/* Benefits */
.benefits {
    padding: 5rem 0;
    background: transparent;
}

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

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

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #006400;
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Guarantee */
.guarantee {
    padding: 5rem 0;
    background: transparent;
}

.guarantee-content {
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-items {
    margin-bottom: 3rem;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: #F5F5F5;
    border-radius: 10px;
}

.guarantee-item i {
    font-size: 1.5rem;
    color: #4CAF50;
    margin-top: 0.2rem;
}

.guarantee-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.guarantee-seal {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    color: white;
    border-radius: 15px;
}

.guarantee-seal i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.guarantee-seal p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Instructor */
.instructor {
    padding: 5rem 0;
    background: transparent;
}

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

.instructor-info {
    margin-bottom: 2rem;
}

.experience-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.experience-item i {
    font-size: 1.5rem;
    color: #4CAF50;
}

.experience-item span {
    font-size: 1.1rem;
}

.instructor-description {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2196F3 0%, #4CAF50 100%);
    color: white;
    text-align: center;
}

.final-cta .section-title {
    color: white;
}

.cta-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #006400;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-event-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #424242;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #006400;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #4CAF50;
}

.footer-bottom {
    border-top: 1px solid #666;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .event-info {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-cards {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-item .time {
        min-width: auto;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-item,
.audience-item,
.deliverable-item,
.benefit-card {
    animation: fadeInUp 0.6s ease-out;
}



.instructor-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    border: 5px solid #4CAF50;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

