/* ========================================
   GALERIA DE VÍDEOS - CONVENÇÃO 2025
   ======================================== */
   
   @font-face {
  font-family: "Orchidea Pro Medium";
  src: url("https://db.onlinewebfonts.com/t/45d8705721070119ca356131dff76f7b.eot");
  src: url("https://db.onlinewebfonts.com/t/45d8705721070119ca356131dff76f7b.eot?#iefix")
      format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/45d8705721070119ca356131dff76f7b.woff2")
      format("woff2"),
    url("https://db.onlinewebfonts.com/t/45d8705721070119ca356131dff76f7b.woff")
      format("woff"),
    url("https://db.onlinewebfonts.com/t/45d8705721070119ca356131dff76f7b.ttf")
      format("truetype"),
    url("https://db.onlinewebfonts.com/t/45d8705721070119ca356131dff76f7b.svg#Orchidea Pro Medium")
      format("svg");
}

.convencao-video-gallery-section {
    font-family: 'Poppins', sans-serif;
    1background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

.convencao-wrapper-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    color: #4a5f7f;
}

/* Estilos do Cabeçalho */
.convencao-header-block {
    margin-bottom: 60px;
}

.convencao-main-title {
    font-family: "Orchidea Pro Lt";
    1font-size: 48px;
    font-size: 3vw;
    font-weight: 300;
    color: #1e498b;
    margin-bottom: 15px;
}

.convencao-title-divider {
    display: block;
    width: 200px;
    height: 2px;
    background-color: #d4a574;
    margin-bottom: 40px;
}

.convencao-secondary-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #1e498b;
    margin-bottom: 30px;
    letter-spacing: 0px;
}

.convencao-text-content {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.convencao-paragraph {
    margin-bottom: 20px;
}

/* Grid de Vídeos */
.convencao-media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.convencao-video-box {
    display: flex;
    flex-direction: column;
}

.convencao-video-link {
    position: relative;
    background-color: #b8b8b8;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin-bottom: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
    display: block;
    text-decoration: none;
}

.convencao-video-link:hover {
    opacity: 0.9;
}

/* Thumbnail do vídeo */
.convencao-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.convencao-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 50px;
    background-color: #ff0000;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    z-index: 2;
}

.convencao-video-link:hover .convencao-play-btn {
    background-color: #cc0000;
}

.convencao-play-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 4px;
}

.convencao-title-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.convencao-feather-symbol {
    color: #d4a574;
    font-size: 20px;
    margin-top: 4px;
    flex-shrink: 0;
}

.convencao-video-label {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #4a5f7f;
    line-height: 1.4;
    margin: 0;
}

/* Modal Pop-up */
.convencao-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.convencao-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.convencao-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.convencao-modal-overlay.active .convencao-modal-content {
    transform: scale(1);
}

.convencao-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.convencao-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 36px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
    z-index: 10000;
}

.convencao-modal-close:hover {
    color: #ff0000;
}

/* Tablet - 2 Colunas */
@media (max-width: 1024px) {
    .convencao-wrapper-main {
        padding: 50px 30px;
    }

    .convencao-main-title {
        font-size: 40px;
    }

    .convencao-secondary-title {
        font-size: 22px;
    }

    .convencao-media-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

/* Mobile - 1 Coluna */
@media (max-width: 768px) {
    .convencao-wrapper-main {
        padding: 40px 20px;
    }

    .convencao-main-title {
        font-size: 32px;
    }

    .convencao-title-divider {
        width: 150px;
        margin-bottom: 30px;
    }

    .convencao-secondary-title {
        font-size: 20px;
    }

    .convencao-text-content {
        font-size: 15px;
    }

    .convencao-media-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .convencao-video-label {
        font-size: 25px;
    }

    .convencao-modal-content {
        width: 95%;
    }

    .convencao-modal-close {
        top: -45px;
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .convencao-wrapper-main {
        padding: 30px 15px;
    }
	
.convencao-title-row {
   justify-content: center;
}
    .convencao-main-title {
        font-family: "Orchidea Pro Lt";
        font-size: 8vw;
        text-align: center;
    }

    .convencao-secondary-title {
        font-size: 4.5vw;
		1text-align: center;
		line-height: 1.3;
		letter-spacing: 0px;
		font-weight: bold;
    }

    .convencao-text-content {
        font-size: 15px;
		text-align: justify;
    }

    .convencao-play-btn {
        width: 60px;
        height: 42px;
    }

    .convencao-modal-close {
        top: -40px;
        font-size: 28px;
    }
}