/* CONEF Custom Styles - Padrão Visual Oficial */

/* Cores principais baseadas no car.banner-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--conef-gold);
    opacity: 1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}ramação */
:root {
    --conef-primary-blue: #1e3a8a;
    --conef-dark-blue: #1e2a5a;
    --conef-gold: #ffd700;
    --conef-light-gold: #ffed4e;
    --conef-text-light: #ffffff;
    --conef-text-dark: #1a1a1a;
    --conef-background: #f8fafc;
}

/* Ajustes gerais de tipografia */
body {
    font-family: 'Roboto', 'Inter', sans-serif;
    color: var(--conef-text-dark);
    font-weight: 400;
    line-height: 1.6;
}

/* Tipografia específica para seções */
.section-title .title {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.section-title .subtitle {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Texto da programação */
.event-item h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.event-item p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.5;
}

/* Menu de navegação */
.main-header .navigation li a {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    line-height: 1.3;
}

/* Header e navegação */
.main-header .navigation li a {
    /* color: var(--conef-primary-blue) !important; */
    font-weight: 500;
}

.main-header .navigation li a:hover {
    color: var(--conef-gold) !important;
}

.theme-btn.style-three {
    background: linear-gradient(135deg, var(--conef-primary-blue), var(--conef-dark-blue));
    border-color: var(--conef-primary-blue);
    color: var(--conef-text-light);
}

.theme-btn.style-three:hover {
    background: linear-gradient(135deg, var(--conef-gold), var(--conef-light-gold));
    border-color: var(--conef-gold);
    color: var(--conef-text-dark);
}

/* Banner principal */
.main-slider-two {
    background: linear-gradient(135deg, var(--conef-primary-blue) 0%, var(--conef-dark-blue) 100%);
}

.banner-subtitle {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--conef-light-gold);
    opacity: 1;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-date, .event-location {
    font-family: 'Roboto', sans-serif;
    color: var(--conef-text-light);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.event-date {
    font-weight: 500;
    color: var(--conef-gold);
}

/* Logo CONEF no banner */
.conef-logo {
    max-height: 140px;
    width: auto;
    margin: 25px 0;
    filter: brightness(1.1) drop-shadow(0 4px 10px rgba(0,0,0,0.3));
    transition: all 0.3s ease;
}

.conef-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2) drop-shadow(0 6px 15px rgba(0,0,0,0.4));
}

/* Seção de boas-vindas */
.about-us-area {
    background: var(--conef-background);
}

.section-title .subtitle {
    color: var(--conef-primary-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.section-title .title {
    /* color: var(--conef-dark-blue); */
    font-weight: 700;
}

.feature-item-two .title {
    color: var(--conef-primary-blue);
    font-weight: 600;
}

.data-local .feature-item-two h5 i {
    color: var(--conef-gold) !important;
    margin-right: 10px;
    font-size: 26px;
}


    .data-local p {
        font-size: 18px;
        font-weight: 900;
        margin-bottom: 5px;
}

.data-local span {
    text-decoration: underline;
}

.alert-warning-rounded {
    background: linear-gradient(135deg, var(--conef-gold), var(--conef-light-gold));
    border: none;
    color: var(--conef-text-dark);
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
}

.theme-btn.style-two {
    background: linear-gradient(135deg, var(--conef-primary-blue), var(--conef-dark-blue));
    border-color: var(--conef-primary-blue);
    color: var(--conef-text-light);
    font-weight: 600;
}

.theme-btn.style-two:hover {
    background: linear-gradient(135deg, var(--conef-gold), var(--conef-light-gold));
    border-color: var(--conef-gold);
    color: var(--conef-text-dark);
}

/* Seção de programação */
.our-event-area {
    background: linear-gradient(135deg, var(--conef-primary-blue) 0%, var(--conef-dark-blue) 100%);
    position: relative;
}

.our-event-area::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="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.event-item {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    border-left: 4px solid var(--conef-gold);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.event-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(255,215,0,0.2);
}

.event-item h4 {
    color: var(--conef-text-light);
    margin-bottom: 10px;
    font-weight: 600;
}

.event-item p {
    color: #e2e8f0;
    margin-bottom: 0;
}

.blog-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.blog-meta li {
    color: var(--conef-gold);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta li i {
    color: var(--conef-light-gold);
}

/* Patrocinadores */
.client-logo-area {
    background: var(--conef-background);
    position: relative;
}

.client-logo-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(30,58,138,0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255,215,0,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.category-badge {
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 16px;

}

.patrocinadores-title .title {
    border-radius: 5px;
    background-color: var(--conef-primary-blue);
    color: white;
}

.header-patrocinio hr{
    height: 2px;
    background-color: var(--conef-primary-blue);
    border-radius: 10px;
    margin: 0;
}

.header-patrocinio h4 {
    color: var(--conef-primary-blue);
    font-weight: 700;

}

/* Containers dos logos */
.sponsor-master-container, .sponsor-ouro-container {
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sponsor-master-container {
    height: 110px;
}

.sponsor-ouro-container {
    height: 90px;
}

.client-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-logo-item:hover .sponsor-master-container,
.client-logo-item:hover .sponsor-ouro-container {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(30,58,138,0.2);
    background: rgba(255,255,255,0.95);
}

.sponsor-logo-img {
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(20%);
    display: block;
    margin: 0 auto;
}

.sponsor-logo-master {
    max-height: 85px;
}

.sponsor-logo-ouro {
    max-height: 65px;
}

.client-logo-item:hover .sponsor-logo-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--conef-dark-blue) 0%, #0f1729 100%);
}

.footer-widget h4 {
    color: var(--conef-gold);
    font-weight: 700;
}

.footer-widget h5 {
    color: var(--conef-light-gold);
    font-weight: 600;
}

.alert-warning-rounded-sm {
    background: linear-gradient(135deg, var(--conef-gold), var(--conef-light-gold));
    border: none;
    color: var(--conef-text-dark);
}

.footer-bottom {
    background-color: var(--conef-dark-blue);
}

/* Botões gerais */
.theme-btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 25px;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Utilitários */
.slider-content-bg {
    background-image: url();
}

.slider-object-hidden {
    display: none;
}

.alert-warning-rounded {
    border-radius: 15px;
}

.contact-image-bg {
    background-image: url(assets/images/fortaleza/contato.jpg);
}

/* Responsividade */
@media (max-width: 768px) {
    .conef-logo {
        max-height: 100px;
        margin: 20px 0;
    }
    
    .banner-subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .event-item {
        padding: 20px 15px;
    }
    
    .category-badge {

        font-size: 14px;
        letter-spacing: 0.05em;
    }
    
    /* Melhor alinhamento dos patrocinadores em mobile */
    .client-logo-item {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .sponsor-master-container {
        height: 85px;
        padding: 15px;
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sponsor-ouro-container {
        height: 75px;
        padding: 12px;
        width: 100%;
        max-width: 160px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .sponsor-logo-master {
        max-height: 65px;
        max-width: 100%;
        object-fit: contain;
    }
    
    .sponsor-logo-ouro {
        max-height: 50px;
        max-width: 100%;
        object-fit: contain;
    }
    
    /* Ajustar grid para melhor distribuição */
    .client-logo-area .row {
        margin: 0 -10px;
    }
    
    .client-logo-area .col-lg-3,
    .client-logo-area .col-lg-2 {
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .banner-subtitle {
        font-size: 14px;
    }
    
    .event-date, .event-location {
        font-size: 16px;
    }
    
    .category-badge {
        font-size: 12px;
    }
    
    /* Ajustes específicos para telas muito pequenas */
    .sponsor-master-container {
        height: 75px;
        padding: 10px;
        max-width: 180px;
    }
    
    .sponsor-ouro-container {
        height: 65px;
        padding: 8px;
        max-width: 140px;
    }
    
    .sponsor-logo-master {
        max-height: 55px;
    }
    
    .sponsor-logo-ouro {
        max-height: 42px;
    }
    
    /* Garantir centralização em telas pequenas */
    .client-logo-area .col-6 {
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .client-logo-area .row {
        margin: 0 -5px;
    }
    
    .client-logo-area .col-lg-3,
    .client-logo-area .col-lg-2,
    .client-logo-area .col-6 {
        padding: 0 5px;
    }
}

/* ===== NOVOS ESTILOS - PROGRAMAÇÃO OFICIAL CONEF ===== */

/* Seção de programação - Design Oficial CONEF */
.program-area-official {
    background: linear-gradient(135deg, var(--conef-primary-blue) 0%, var(--conef-dark-blue) 100%);
    position: relative;
    color: white;
    overflow: hidden;
}

.bgc-primary-blue {
    background-color: var(--conef-primary-blue);
}

/* Header da Programação */
.program-header {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-title-section {
    position: relative;
    z-index: 10;
}

.program-main-title {
    font-family: 'Roboto', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.program-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
    font-weight: 400;
}

/* Elementos gráficos decorativos */
.program-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.graphic-element {
    position: absolute;
    opacity: 0.3;
}

.graphic-lines {
    top: 20%;
    left: -10px;
    width: 80px;
    height: 200px;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.1) 2px,
        rgba(255,255,255,0.1) 4px
    );
}

.graphic-dots {
    top: 10%;
    right: -50px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    border-radius: 50%;
}

.graphic-waves {
    bottom: 20%;
    right: -30px;
    width: 100px;
    height: 150px;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 3px,
        rgba(255,255,255,0.08) 3px,
        rgba(255,255,255,0.08) 6px
    );
    transform: rotate(45deg);
}

/* Card de informações do evento */
.event-info-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-header {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.event-logos {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-ibef {
    background: white;
    color: var(--conef-primary-blue);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
}

.logo-conef {
    text-align: right;
}

.conef-text {
    font-family: 'Roboto', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--conef-gold);
    display: block;
    line-height: 1;
}

.conef-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: white;
    display: block;
    margin-top: -5px;
}

.conef-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    display: block;
    margin-top: 5px;
    line-height: 1.2;
}

/* Container da programação detalhada */
.schedule-container {
    background: rgba(255,255,255,0.03);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
}

.schedule-section {
    margin-bottom: 40px;
}

.schedule-period {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    position: relative;
}

.schedule-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.schedule-item.interval {
    color: rgba(255,255,255,0.7);
}

.schedule-time {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: white;
    min-width: 150px;
    flex-shrink: 0;
}

.schedule-content {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: white;
    line-height: 1.5;
    flex: 1;
}

/* Gráficos da programação */
.schedule-graphics {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 200px;
    pointer-events: none;
    opacity: 0.1;
}

.graphic-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
}

.icon-clock {
    top: 20%;
    right: 30px;
}

.icon-chart {
    bottom: 30%;
    right: 60px;
    transform: rotate(45deg);
}

.pattern-dots {
    top: 50%;
    right: 10px;
    width: 60px;
    height: 100px;
    background: repeating-radial-gradient(
        circle,
        rgba(255,255,255,0.1) 0px,
        rgba(255,255,255,0.1) 2px,
        transparent 2px,
        transparent 10px
    );
}

/* Responsividade para a nova programação */
@media (max-width: 768px) {
    .program-main-title {
        font-size: 3rem;
    }
    
    .event-info-card {
        margin-top: 30px;
        padding: 20px;
    }
    
    .event-logos {
        gap: 15px;
    }
    
    .conef-text {
        font-size: 24px;
    }
    
    .schedule-container {
        padding: 25px 20px;
    }
    
    .schedule-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .schedule-time {
        min-width: auto;
        font-weight: 600;
        color: var(--conef-text-light);
    }
    
    .graphic-element,
    .schedule-graphics {
        display: none;
    }
}

/* Ajuste para logos lado a lado no container Ouro */
.sponsor-ouro-container.d-flex img:first-child {
    max-width: 40%;
    margin-right: 0.15rem !important; /* Reduz espaçamento */
    margin-left: 0.5rem; /* Move um pouco para a direita */
}
.sponsor-ouro-container.d-flex img:last-child {
    max-width: 45%;
}

/* Aumenta o tamanho do card para logos duplas */
.double-logo {
    flex: 0 0 25%;
    max-width: 25%;
}

/* Ajustes para mobile - aumentar logos */
@media(max-width: 768px) {
    .sponsor-ouro-container.d-flex img:first-child {
        max-width: 45%;
        margin-left: 0.25rem;
    }
    .sponsor-ouro-container.d-flex img:last-child {
        max-width: 50%;
    }
    .double-logo {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }
}

/* Ajustes para mobile - uma logo por linha e tamanhos maiores */
@media(max-width: 768px) {
    .client-logo-area .col-lg-2,
    .client-logo-area .col-lg-3,
    .client-logo-area .col-md-3,
    .client-logo-area .col-sm-4,
    .client-logo-area .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }
    .sponsor-master-container {
        height: 120px;
        max-width: 300px;
    }
    .sponsor-ouro-container {
        height: 100px;
        max-width: 250px;
    }
    .sponsor-logo-master {
        max-height: 100px;
    }
    .sponsor-logo-ouro {
        max-height: 80px;
    }
    /* Para o card duplo, manter lado a lado mas maiores */
    .double-logo {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .sponsor-ouro-container.d-flex {
        justify-content: center;
    }
    .sponsor-ouro-container.d-flex img:first-child {
        max-width: 40%;
    }
    .sponsor-ouro-container.d-flex img:last-child {
        max-width: 45%;
    }
}