.hero-section {
    position: relative;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    padding: 4rem 2rem;
    background-color: #E09200;
    overflow: hidden;
}

/* Efeitos de blur decorativos aprimorados */
.blur-effect-1 {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 800px;
    height: 600px;
    background: radial-gradient(
        ellipse at center,
        rgba(224, 146, 0, 0.6) 0%,
        rgba(224, 146, 0, 0.4) 25%,
        rgba(224, 146, 0, 0.2) 50%,
        rgba(212, 175, 55, 0.1) 75%,
        transparent 100%
    );
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
    animation: floatEffect 8s ease-in-out infinite;
}

.blur-effect-2 {
    position: absolute;
    bottom: 15%;
    right: -15%;
    width: 600px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(212, 175, 55, 0.4) 0%,
        rgba(224, 146, 0, 0.3) 40%,
        transparent 80%
    );
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
    animation: floatEffect 10s ease-in-out infinite reverse;
}

/* Container principal com duas seções */
.hero-section .container {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    margin-bottom: 4rem; 
}

.agenda-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #000000;
    border-radius: 24px;
    padding: 20px 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 10px 30px rgba(232, 149, 19, 0.2);
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
    animation: slideIn 0.8s ease-out;
    margin: 0 auto; /* Centraliza o calendário */
    z-index: 10;
}

.content {
    position: relative;
    animation: fadeInLeft 1.2s ease-out;
    padding-right: 2rem;
    margin-bottom: 2rem;
}

.event-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(35, 35, 35, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(224, 146, 0, 0.4);
    position: relative;
    overflow: hidden;
    font-weight: 500;
}

.event-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(224, 146, 0, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.event-badge .label {
    color: #E09200;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-badge .separator {
    color: #FFFFFF;
    font-weight: 300;
}

.event-badge .details {
    color: #FFFFFF;
    font-weight: 500;
}

.mission-title {
    font-size: 1.4rem;
    color: #FFFFFF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(224, 146, 0, 0.8);
    position: relative;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60%;
    height: 3px;
    background: #000000;
    box-shadow: 0 0 12px rgba(224, 146, 0, 0.3);
    animation: pulseGlow 4s ease-in-out infinite;
    border-radius: 2px;
}

.main-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2.5rem;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.main-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent, rgba(224, 146, 0, 0.1), transparent);
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
    animation: titleGlow 4s ease-in-out infinite;
}

.description {
    color: #FFFFFF;
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 700;
    opacity: 0.95;
}

.instructor-info {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(35, 35, 35, 0.6);
    border-radius: 15px;
    border-left: 4px solid #E09200;
    backdrop-filter: blur(10px);
}

.instructor-name {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.instructor-experience {
    color: #E09200;
    font-size: 1.1rem;
    font-weight: 600;
}

.event-description {
    color: #FFFFFF;
    font-size: 1.357rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.9;
}

.reserveVaga {
    background: #fafafa;
    background-size: 200% 200%;
    color: #000000;
    padding: 1.3rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    animation: buttonPulse 3s ease-in-out infinite;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 2rem;
}

.reserveVaga::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgb(255, 166, 0), transparent);
    transition: left 0.5s;
}

.reserveVaga:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.6);
    background-position: 100% 0;
}

.reserveVaga:hover::before {
    left: 100%;
}

.reserveVaga:active {
    transform: translateY(-1px) scale(1.01);
}

.instructor-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeInRight 1.2s ease-out;
    height: 100%;
}

.instructor-image {
    background: #c5c6bb;
    width: 100%;
    max-width: 600px;
    height: 700px;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 3px rgba(224, 146, 0, 0.2),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.instructor-image:hover {
    transform: scale(1.02);
}

.instructor-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/imgs/diegoPrincipal.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.instructor-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.3) 80%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 2;
}

.specialist-badge {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    left: 2.5rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(224, 146, 0, 0.4);
    z-index: 3;
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    animation: badgeSlideUp 1s ease-out 1.5s forwards;
}

.specialist-label {
    color: #E09200;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.specialist-name {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.specialist-title {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
}

/* Decorative elements */
.content::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(224, 146, 0, 0.3) 0%,
        rgba(224, 146, 0, 0.1) 50%,
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: rotateEffect 15s linear infinite;
}

/* Responsividade aprimorada */
@media (max-width: 1024px) {
    .hero-section .container {
        grid-template-columns: 45% 55%;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    .main-title {
        font-size: 3.8rem;
    }
    .instructor-image {
        height: 600px;
    }
    .agenda-container {
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem;
    }
    .hero-section .container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        gap: 3rem;
        text-align: center;
        margin-bottom: 2.5rem;
    }
    .content {
        padding-right: 0;
        order: 2;
        margin-bottom: 0;
    }
    .instructor-section {
        order: 1;
    }
    .main-title {
        font-size: 3rem;
    }
    .mission-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .instructor-image {
        max-width: 450px;
        height: 550px;
    }
    .description {
        font-size: 1.2rem;
    }
    .reserveVaga {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    .agenda-container {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 1rem;
        padding-top: 5rem;
    }
    .hero-section .container {
        margin-bottom: 2rem;
    }
    .main-title {
        font-size: 2.5rem;
    }
    .instructor-image {
        max-width: 350px;
        height: 450px;
    }
    .mission-title {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    .mission-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .description {
        font-size: 1.1rem;
    }
    .event-badge {
        font-size: 0.9rem;
        padding: 0.7rem 1.2rem;
    }
    .agenda-container {
        max-width: 95%;
        padding: 30px 20px;
    }
}

/* Animações */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatEffect {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.1);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes titleGlow {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.3;
    }
}

@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(224, 146, 0, 0.4);
    }
    50% {
        box-shadow: 0 12px 35px rgba(224, 146, 0, 0.5);
    }
}

@keyframes badgeSlideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes rotateEffect {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 12px rgba(224, 146, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(224, 146, 0, 0.6);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* CALENDARIo */

.agenda-container {
            position: relative;
            width: 100%;
            max-width: 480px;
            background: #000000;
            border-radius: 24px;
            padding: 40px 30px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.3),
                0 10px 30px rgba(232, 149, 19, 0.2);
            overflow: hidden;
            transform: translateY(0);
            transition: all 0.3s ease;
            animation: slideIn 0.8s ease-out;
            margin: 3rem auto 2rem auto;
            z-index: 10;
        }

        .agenda-container:hover {
            transform: translateY(-10px);
            box-shadow: 
                0 30px 80px rgba(0, 0, 0, 0.4),
                0 15px 40px rgba(232, 149, 19, 0.3);
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .wave-decoration {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60%;
            height: 120px;
            background: #E89513;
            clip-path: polygon(0% 100%, 100% 60%, 100% 100%);
            opacity: 0.1;
        }

        .wave-decoration::before {
            content: '';
            position: absolute;
            bottom: 20px;
            left: -20px;
            width: 80px;
            height: 80px;
            background: #E89513;
            border-radius: 50%;
            opacity: 0.3;
            animation: pulse 3s ease-in-out infinite;
        }

        .wave-decoration::after {
            content: '';
            position: absolute;
            bottom: 40px;
            left: 40px;
            width: 40px;
            height: 40px;
            background: #E89513;
            border-radius: 50%;
            opacity: 0.2;
            animation: pulse 2s ease-in-out infinite reverse;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.2; }
            50% { transform: scale(1.2); opacity: 0.4; }
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .calendar-icon {
            display: inline-block;
            width: 40px;
            height: 40px;
            border-radius: 8px;
            position: relative;
            margin-right: 12px;
            vertical-align: middle;
            animation: bounce 2s ease-in-out infinite;
        }

       

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-8px); }
            60% { transform: translateY(-4px); }
        }

        .title {
            color: #ffffff;
            font-family: 'Montserrat', sans-serif;
            font-size: 32px;
            font-weight: bold;
            letter-spacing: 2px;
            text-transform: uppercase;
            display: inline-block;
            vertical-align: middle;
            text-shadow: 2px 2px 4px rgba(232, 149, 19, 0.3);
        }

        .year-section {
            margin-bottom: 35px;
            position: relative;
            z-index: 2;
        }

        .year {
            color: #ffffff;
            font-family: 'Montserrat', sans-serif;
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 25px;
            position: relative;
        }

        .year::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #E89513, transparent);
            border-radius: 2px;
        }

        .agenda-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(232, 149, 19, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .agenda-item:hover {
            background: rgba(232, 149, 19, 0.1);
            transform: translateX(5px);
            border-left: 3px solid #E89513;
            padding-left: 15px;
        }

        .agenda-item.highlighted {
            position: relative;
            overflow: hidden;
        }
    

        .agenda-item.highlighted::after {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            width: 100%;
            height: 2.5px;
            background: #c1121f;
            transform: translateY(-50%);
            animation: line-through 0.5s ease;
        }

        @keyframes line-through {
            from { width: 0; }
            to { width: 100%; }
        }

        .date {
            color: #E89513;
            font-weight: bold;
            font-family: 'Montserrat', sans-serif;
            min-width: 70px;
            font-size: 20px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .arrow {
            color: #E89513;
            margin: 0 15px;
            font-size: 18px;
            transition: transform 0.3s ease;
        }

        .agenda-item:hover .arrow {
            transform: translateX(5px);
        }

        .location {
            font-family: 'Inter', sans-serif;
            color: #ffffff;
            font-size: 16px;
            flex: 1;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .agenda-item:last-child {
            border-bottom: none;
        }

        .glowing-border {
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #E89513, transparent, #E89513);
            border-radius: 26px;
            z-index: -1;
            opacity: 0;
            animation: glow 4s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { opacity: 0; }
            50% { opacity: 0.3; }
        }

        .floating-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #E89513;
            border-radius: 50%;
            opacity: 0.6;
            animation: float 8s linear infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.6;
            }
            90% {
                opacity: 0.6;
            }
            100% {
                transform: translateY(-10vh) rotate(360deg);
                opacity: 0;
            }
        }

        @media (max-width: 768px) {
            .agenda-container {
                margin: 2rem auto 1rem auto;
                max-width: 90%;
            }
        }

        @media (max-width: 480px) {
            .agenda-container {
                margin: 1.5rem auto 1rem auto;
                padding: 30px 20px;
                max-width: 95%;
            }
            
            .title {
                font-size: 24px;
            }
            
            .year {
                font-size: 24px;
            }
        }