/* Hotsite Styles - 2º Dia do Programador */

/* Hotsite Header */
.hotsite-header {
    background: linear-gradient(135deg, #07ac0a 0%, #05a008 50%, #034004 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hotsite-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hotsite-header .header-content {
    position: relative;
    z-index: 2;
}

.hotsite-header .header-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hotsite-header .header-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hotsite-header .header-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-dates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.date-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.date-separator {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.date-month {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-locations {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.location-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

/* Cartaz Promocional */
.cartaz-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(7, 172, 10, 0.1);
}

.cartaz-content {
    position: relative;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cartaz-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.cartaz-image:hover {
    transform: scale(1.02);
}

.cartaz-overlay {
    margin-top: 1.5rem;
}

.cartaz-overlay h2 {
    color: #07ac0a;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cartaz-overlay p {
    color: #4a4a4a;
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.8;
}

/* Navigation */
.nav-logo {
    height: 35px;
    transition: all 0.3s ease;
}

/* Sobre Section */
.sobre-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
}

.sobre-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.destaque-box {
    background: linear-gradient(135deg, rgba(7, 172, 10, 0.1) 0%, rgba(5, 160, 8, 0.05) 100%);
    border: 2px solid rgba(7, 172, 10, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.destaque-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #07ac0a, #05a008);
}

.destaque-box h3 {
    color: #07ac0a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.destaque-box h3 i {
    color: #ffd700;
    font-size: 1.1rem;
}

.destaque-box p {
    color: #4a4a4a;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/* Programação Section */
.programacao-section {
    background: white;
    padding: 5rem 0;
}

.programacao-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.programacao-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
}

.programacao-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.programacao-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    background: linear-gradient(135deg, #07ac0a 0%, #05a008 100%);
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.data-info {
    text-align: center;
}

.dia {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.mes {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.local-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.local-info p {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.local-info i {
    color: rgba(255, 255, 255, 0.8);
    width: 16px;
}

.card-content {
    padding: 2rem;
}

.card-content h4 {
    color: #07ac0a;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
}

.card-content h4 i {
    font-size: 1.2rem;
}

.palestrantes {
    margin-bottom: 2rem;
}

.palestrante {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    padding: 0.8rem;
    background: rgba(7, 172, 10, 0.05);
    border-radius: 10px;
    border-left: 3px solid #07ac0a;
}

.palestrante i {
    color: #07ac0a;
    font-size: 1rem;
    width: 16px;
}

.palestrante span {
    color: #4a4a4a;
    font-size: 0.95rem;
    font-weight: 500;
}

.inscricao-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #07ac0a, #05a008);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(7, 172, 10, 0.3);
    width: 100%;
    justify-content: center;
}

.inscricao-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(7, 172, 10, 0.4);
    color: white;
}

/* Por que 256 Section */
.porque-256-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    padding: 5rem 0;
}

.porque-256-content {
    max-width: 800px;
    margin: 0 auto;
}

.explicacao-box {
    background: white;
    border: 2px solid rgba(7, 172, 10, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 3rem;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.explicacao-box.animate {
    opacity: 1;
    transform: translateY(0);
}

.numero-destaque {
    text-align: center;
    flex-shrink: 0;
}

.numero {
    display: block;
    font-size: 6rem;
    font-weight: 700;
    color: #07ac0a;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
}

.unidade {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.explicacao-texto {
    text-align: left;
}

.explicacao-texto p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.formula {
    background: rgba(7, 172, 10, 0.2);
    border: 1px solid rgba(7, 172, 10, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 2rem;
}

.formula-text {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: #07ac0a;
    margin-bottom: 0.5rem;
}

.formula-desc {
    display: block;
    font-size: 1rem;
    color: #6c757d;
}

/* NUTEC Section */
.nutec-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

/* Galeria Section */
.galeria-section {
    background: white;
    padding: 5rem 0;
}

.galeria-content {
    max-width: 1200px;
    margin: 0 auto;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.galeria-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.galeria-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.galeria-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.galeria-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-image {
    transform: scale(1.05);
}

.galeria-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(7, 172, 10, 0.9) 0%, rgba(5, 160, 8, 0.8) 100%);
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.galeria-item:hover .galeria-overlay {
    transform: translateY(0);
}

.galeria-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.galeria-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.galeria-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.info-highlight {
    background: linear-gradient(135deg, rgba(7, 172, 10, 0.1) 0%, rgba(5, 160, 8, 0.05) 100%);
    border: 2px solid rgba(7, 172, 10, 0.2);
    border-radius: 15px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.info-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #07ac0a, #05a008);
}

.info-highlight i {
    color: #07ac0a;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.info-highlight h3 {
    color: #07ac0a;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-highlight p {
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.nutec-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-item i {
    color: #07ac0a;
    font-size: 2rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.info-item h4 {
    color: #07ac0a;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.info-item p {
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

/* Inscrições Section */
.inscricoes-section {
    background: white;
    padding: 5rem 0;
}

.inscricoes-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: linear-gradient(135deg, rgba(7, 172, 10, 0.05) 0%, rgba(5, 160, 8, 0.02) 100%);
    border: 2px solid rgba(7, 172, 10, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.info-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(7, 172, 10, 0.3);
    box-shadow: 0 10px 30px rgba(7, 172, 10, 0.1);
}

.info-card i {
    color: #07ac0a;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #07ac0a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

.sympla-info {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 2px dashed #07ac0a;
}

.sympla-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.sympla-info p {
    color: #4a4a4a;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.cta-inscricoes {
    text-align: center;
    margin-top: 3rem;
}

.cta-inscricoes h3 {
    color: #07ac0a;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.cta-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #07ac0a, #05a008);
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(7, 172, 10, 0.3);
    justify-content: center;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(7, 172, 10, 0.4);
    color: white;
}

.cta-btn.primary:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Footer */
.hotsite-footer {
    background: white;
    color: #2c3e50;
    padding: 3rem 0 2rem;
}

/* Parceiros Section */
.parceiros-section {
    margin-bottom: 2rem;
}

.realizacao-section,
.empresas-section,
.apoio-section {
    margin-bottom: 2rem;
}

.realizacao-section h3,
.apoio-section h3 {
    color: #07ac0a;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.realizacao-logos,
.apoio-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.logo-item {
    text-align: center;
    flex: 0 0 auto;
}

.parceiro-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.parceiro-logo:hover {
    transform: scale(1.05);
}

.logo-item p {
    font-size: 0.85rem;
    color: #4a4a4a;
    margin: 0.2rem 0;
    font-weight: 500;
}

/* Empresas Grid */
.empresas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.empresa-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: rgba(7, 172, 10, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(7, 172, 10, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.empresa-logo:hover {
    transform: translateY(-5px);
    background: rgba(7, 172, 10, 0.1);
}

.empresa-logo img {
    max-width: 80px;
    height: auto;
    margin-bottom: 0.8rem;
    transition: transform 0.3s ease;
}

.empresa-logo:hover img {
    transform: scale(1.05);
}

.empresa-logo span {
    font-size: 0.8rem;
    color: #4a4a4a;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
}

.footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #07ac0a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section i {
    color: #07ac0a;
    margin-right: 0.5rem;
    width: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hotsite-header .header-title {
        font-size: 2.5rem;
    }
    
    .hotsite-header .header-subtitle {
        font-size: 1.2rem;
    }
    
    .date-badge {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .header-dates {
        flex-direction: column;
        gap: 1rem;
    }
    
    .explicacao-box {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem;
    }
    
    .numero {
        font-size: 4rem;
    }
    
    .programacao-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .nutec-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .inscricoes-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Responsive adjustments for parceiros section */
    .realizacao-logos,
    .apoio-logos {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .empresas-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
    
    .empresa-logo {
        padding: 0.8rem;
    }
    
    .empresa-logo img {
        max-width: 60px;
    }
    
    .empresa-logo span {
        font-size: 0.75rem;
    }
    
         .parceiro-logo {
         max-width: 100px;
     }
     
     /* Responsive adjustments for galeria section */
     .galeria-grid {
         grid-template-columns: 1fr;
         gap: 1.5rem;
     }
     
     .galeria-image {
         height: 200px;
     }
     
     .info-highlight {
         padding: 2rem;
     }
     
     .info-highlight h3 {
         font-size: 1.3rem;
     }
     
     .info-highlight p {
         font-size: 1rem;
     }
 }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(7, 172, 10, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #4a4a4a;
    margin: 0;
    font-size: 0.9rem;
}

.politica-link {
    margin-top: 1rem;
    text-align: center;
}

.politica-link a {
    color: #07ac0a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.politica-link a:hover {
    color: #05a008;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .hotsite-header {
        padding: 3rem 0;
    }
    
    .hotsite-header .header-title {
        font-size: 2rem;
    }
    
    .hotsite-header .header-subtitle {
        font-size: 1rem;
    }
    
    .cartaz-section {
        padding: 2rem 0;
    }
    
    .cartaz-overlay h2 {
        font-size: 1.5rem;
    }
    
    .cartaz-overlay p {
        font-size: 1rem;
    }
    
    .date-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .programacao-card {
        margin: 0 1rem;
    }
    
    .explicacao-box {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
         .numero {
         font-size: 3rem;
     }
     
     /* Responsive adjustments for galeria section on small devices */
     .galeria-section {
         padding: 3rem 0;
     }
     
     .galeria-grid {
         gap: 1rem;
     }
     
     .galeria-image {
         height: 180px;
     }
     
     .galeria-overlay {
         padding: 1rem;
     }
     
     .galeria-overlay h3 {
         font-size: 1.1rem;
     }
     
     .galeria-overlay p {
         font-size: 0.8rem;
     }
     
     .info-highlight {
         padding: 1.5rem;
         margin: 0 1rem;
     }
     
     .info-highlight i {
         font-size: 2.5rem;
     }
     
     .info-highlight h3 {
         font-size: 1.2rem;
     }
     
     .info-highlight p {
         font-size: 0.9rem;
     }
 }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.programacao-card,
.info-card,
.explicacao-box {
    animation: fadeInUp 0.6s ease-out forwards;
}

.programacao-card:nth-child(1) { animation-delay: 0.1s; }
.programacao-card:nth-child(2) { animation-delay: 0.2s; }
.programacao-card:nth-child(3) { animation-delay: 0.3s; }
.programacao-card:nth-child(4) { animation-delay: 0.4s; }

.info-card:nth-child(1) { animation-delay: 0.1s; }
.info-card:nth-child(2) { animation-delay: 0.2s; }
.info-card:nth-child(3) { animation-delay: 0.3s; } 