/* CSS para página agenda.php */

/* PDF Viewer Section */
.pdf-viewer-container {
    width: 100%;
    margin: 1rem 0;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pdf-viewer-container iframe {
    width: 100%;
    min-height: 600px;
    border: none;
}

@media (max-width: 768px) {
    .pdf-viewer-container iframe {
        min-height: 400px;
    }
}

/* About Section - Próximos Eventos */
.about {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8rem;
}

.about .content {
    flex: 1 1 42rem;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px;
}

.about .content span {
    font-size: 2rem;
    color: #ff0000;
}

.about .content .title {
    font-size: 4rem;
    color: #000;
    margin-top: .5rem;
}

.about .content p {
    font-size: 1.5rem;
    color: #000;
    padding: 1rem 0;
    line-height: 2;
}

/* Features Section - Calendário de Eventos */
.features .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

.features .box-container .box {
    background: #111;
}

.features .box-container .box.second {
    display: flex;
    flex-flow: column-reverse;
}

.features .box-container .box:hover .image img {
    transform: scale(1.1);
}

.features .box-container .box .image {
    height: 30rem;
    width: 100%;
    overflow: hidden;
}

.features .box-container .box .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.features .box-container .box .content {
    padding: 2rem;
    text-align: center;
}

.features .box-container .box .content img {
    height: 9rem;
    margin-bottom: 1rem;
    filter: invert(1);
}

.features .box-container .box .content h3 {
    font-size: 2rem;
    color: #ff0000;
}

.features .box-container .box .content p {
    line-height: 2;
    font-size: 1.5rem;
    color: #fff;
    padding: 1rem 0;
}

/* Pricing Section - Informações Importantes */
.pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
    gap: 1.5rem;
}

.pricing .information span {
    font-size: 2rem;
    color: #ff0000;
}

.pricing .information h3 {
    font-size: 4rem;
    padding-top: .5rem;
    color: #fff;
}

.pricing .information p {
    line-height: 2;
    padding: 1rem 0;
    font-size: 1.4rem;
    color: #fff;
}

.pricing .information p i {
    padding-right: 1rem;
    color: #ff0000;
}

.pricing .plan {
    text-align: center;
    padding: 1.5rem;
}

.pricing .plan.basic {
    background: linear-gradient(130deg, #111 93%, transparent 90%);
}

.pricing .plan h3 {
    font-size: 2rem;
    margin: 0.8rem 0;
    color: #fff;
}

.pricing .plan .price {
    font-size: 4rem;
    font-weight: bolder;
    color: #ff0000;
}

.pricing .plan .price span {
    color: #fff;
    font-size: 1.6rem;
}

.pricing .plan .list {
    padding: 0.8rem 0;
}

.pricing .plan .list p {
    line-height: 1.8;
    padding: 0.8rem 0;
    font-size: 1.6rem;
    color: #fff;
}

.pricing .plan .list p i {
    padding-right: 1rem;
    color: #ff0000;
}

/* Badges para tipos de eventos */
.event-badges {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.event-type-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-type-campeonato {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.event-type-graduacao {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.event-type-seminario {
    background: linear-gradient(45deg, #007bff, #6610f2);
    color: white;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.event-type-treinamento {
    background: linear-gradient(45deg, #6f42c1, #e83e8c);
    color: white;
    box-shadow: 0 2px 8px rgba(111, 66, 193, 0.3);
}

.event-type-social {
    background: linear-gradient(45deg, #fd7e14, #dc3545);
    color: white;
    box-shadow: 0 2px 8px rgba(253, 126, 20, 0.3);
}

.event-type-event {
    background: linear-gradient(45deg, #6c757d, #495057);
    color: white;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

/* Animação hover para badges */
.event-type-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

/* Estilo para eventos sem eventos */
.features .box-container .box .content h3 i.fa-calendar-times {
    color: #6c757d;
}

/* Melhorias na exibição dos eventos */
.features .box-container .box .content p strong {
    color: #ff0000;
}

.features .box-container .box .content p {
    margin-bottom: 0.5rem;
}

/* Responsividade para badges */
@media (max-width: 768px) {
    .event-type-badge {
        font-size: 1rem;
        padding: 0.4rem 0.8rem;
    }
    
    .event-badges {
        margin-top: 0.8rem;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .about {
        gap: 3rem;
        flex-direction: column;
    }

    .about .content {
        flex: 1 1 100%;
    }
    
    .about .content .title {
        font-size: 3rem;
    }
    
    .features .box-container {
        grid-template-columns: 1fr;
    }
    
    .features .box-container .box.second {
        flex-flow: column;
    }
    
    .pricing {
        max-width: 100%;
        padding: 0 1rem;
        grid-template-columns: 1fr;
    }
    
    .pricing .plan .list {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
    
    .pricing .plan .list p {
        padding: 0.3rem 0;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .about {
        gap: 2rem;
        padding-top: 10px !important;
        margin-top: 10px !important;
    }
    
    .about .content .title {
        font-size: 2.5rem;
    }
    
    .about .content span {
        font-size: 1.6rem;
    }
    
    .features .box-container .box .image {
        height: 25rem;
    }
    
    .event-type-badge {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }
}
