/*
 * Custom CSS
 */

:root {
    --bs-body-bg: var(--bs-gray-100);
}

* {
    font-family: "Exo 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.bg-orange {
    background-color: #c16834;
}

.bg-light-orange{
    background-color: #EEA90C;
}

.text-orange{
    color: #c16834;
}

.text-light-orange{
    color: #EEA90C;
}

.nav-top {
    text-transform: uppercase;
}

.nav-top .nav-link {
    background-color: #FFFFFF;
    color: #c16834;
    margin-left: 10px;
    margin-right: 10px;
    border-radius: 20px;
    padding: 5px 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    text-decoration: none;
}

/***
########################################################
########## HERO ########################################
########################################################
*/

#hero {
    background-image: url('/assets/img/hero/bg.png?a');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 16 / 9;
    width: 100%;
    /* Remova a altura fixa para garantir a proporção 16x9 */
    /* height: auto; */
    border: 1px solid transparent;
}


#hero .title-hero {
    color: #ffffff;
    font-weight: 900;
    font-size: 3.5rem;
    margin-left: 26%;
    /* border: 1px solid blue; */
    text-align: left;
    max-width: 280px;
    margin-top: 5%;
    /* Sombra usando a cor #c16834 */
    text-shadow: 2px 2px 8px #c16834, 0 0 2px #c16834;
}

@media (min-width: 992px) {
    #hero .title-hero {
        margin-left: 15%;
        margin-top: 12%;
    }
}


#hero .subtitle-hero {
    color: #ffffff;
    font-weight: 400;
    font-size: 1.4rem;
    /* border: 1px solid green; */
    text-transform: uppercase;
}

/***
########################################################
########## ABOUT #######################################
########################################################
*/
#about{
    font-size: 1.1rem;
}

#about .bg-info{
    background-image: url('/assets/img/about/palestra.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 300px;
}

#about .date-event {
    /* font-size: 1.4rem; */
    text-transform: uppercase;
    border: 2px solid #EEA90C;
}
#about .date-event p{
    font-weight: 600;
}

#about .orange-line {
    height: 2px;
    background-color: #EEA90C;
    border-radius: 2px;
    position: relative;
}
#about .orange-line.line-1{
    width: 130%;
    margin-top: 10px;
    left: -96%;
}
#about .orange-line.line-2{
    margin-bottom: 10px;
    width: 160%;
    right: 60%;
}
/***
########################################################
########## SHARE OF LIFE ###############################
########################################################
*/
#share-of-life{
    text-align: center;
}
#share-of-life h1{
    font-weight: 900;
}

/***
########################################################
########## DESCRIPTION #################################
########################################################
*/

#description .bg-plateia{
    background-image: url('/assets/img/description/plateia.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80%;
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: 10%;

}
#description .bg-presidente-galassi{
    background-image: url('/assets/img/description/apresentacao.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80%;
    width: 90%;
    margin: 0 auto;
    border-radius: 10px;
    margin-top: 10%;
}

/***
########################################################
########## LOCAL #######################################
########################################################
*/
#local.bg-gold{
    background: #FFFFFF;
    background: linear-gradient(
        90deg, rgba(143, 131, 29, 1) 35%, 
        rgba(166, 123, 1, 1) 45%, 
        rgba(166, 123, 1, 1) 49%, 
        rgba(143, 131, 29, 1) 100%
    );
}

#local .faca-sua-reserva{
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 10px;
    font-size: 0.8rem;
}

#local .faca-sua-reserva .btn{
    border-radius: 15px;
    font-size: 0.8rem;
}

/***
########################################################
########## PATROCINADORES #############################
########################################################
*/

#patrocinadores{
    background-color: #FFFFFF;
    padding: 60px 0;
}

/* Patrocinadores Flexbox Layout */
.diamante {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.diamante li {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    padding: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.diamante li:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.diamante a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 100%;
    width: 100%;
}

.diamante img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* transition: filter 0.3s ease; */
}

/* .diamante img:hover {
    filter: grayscale(0%);
} */

/* Responsive adjustments */
@media (max-width: 768px) {
    .diamante {
        gap: 20px;
    }
    
    .diamante li {
        min-height: 60px;
        padding: 10px;
    }
    
    .diamante img {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .diamante {
        gap: 15px;
    }
    
    .diamante li {
        min-height: 50px;
        padding: 8px;
    }
    
    .diamante img {
        max-height: 50px;
    }
}

.bg-pink{
    background-color: #f3f2ee;
}

/* Patrocínio Platina */
.platina {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px; /* Um pouco menos de gap */
    list-style: none;
    padding: 0;
    margin: 0;
}

.platina li {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px; /* Altura mínima um pouco menor */
    padding: 12px; /* Padding um pouco menor */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.platina li:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.platina a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 100%;
    width: 100%;
}

.platina img {
    max-width: 100%;
    max-height: 60px; /* Tamanho para Platina, menor que Diamante */
    width: auto;
    height: auto;
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* transition: filter 0.3s ease; */
}

/* .platina img:hover {
    filter: grayscale(0%);
} */

/* Patrocínio Ouro, Apoio, Divulgação, Realização (tamanhos menores) */
.ouro, .apoio, .divulgacao, .realizacao, .parceria-social, .agencia-parceira {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Gap ainda menor */
    list-style: none;
    padding: 0;
    margin: 0;
}

.ouro li, .apoio li, .divulgacao li, .realizacao li, .parceria-social li, .agencia-parceira li {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px; /* Altura mínima menor */
    padding: 10px; /* Padding menor */
    transition: transform 0.3s ease, filter 0.3s ease;
}

.ouro li:hover, .apoio li:hover, .divulgacao li:hover, .realizacao li:hover, .parceria-social li:hover, .agencia-parceira li:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.ouro a, .apoio a, .divulgacao a, .realizacao a, .parceria-social a, .agencia-parceira a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    height: 100%;
    width: 100%;
}

.ouro img, .apoio img, .divulgacao img, .realizacao img, .parceria-social img, .agencia-parceira img {
    max-width: 100%;
    max-height: 50px; /* Tamanho para Ouro e abaixo, ainda menor */
    width: auto;
    /* height: auto; */
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* transition: filter 0.3s ease; */
}

.parceria-social img {
    max-height: 60px; /* Tamanho para Ouro e abaixo, ainda menor */
}

/* .ouro img:hover, .apoio img:hover, .divulgacao img:hover, .realizacao img:hover {
    filter: grayscale(0%);
} */

/***
########################################################
########## SPEAKERS ###################################
########################################################
*/
/* Speaker Cards */
.speaker-card {
    background: #dcb76a;
    border: 0px solid #333;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.speaker-card .card-header {
    margin-bottom: 20px;
}

.speaker-card .abras-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 5px;
}

.speaker-card .abras-logo i {
    color: #228B22;
    font-size: 16px;
}

.speaker-card .abras-logo span {
    color: #228B22;
    font-weight: bold;
    font-size: 14px;
}

.speaker-card .abras-subtitle {
    color: #228B22;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
}

.speaker-image {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

#speakers .speaker-photo {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.speaker-photo {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.speaker-info {
    text-align: center;
}

.speaker-topic {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 15px;
    min-height: 60px;
    text-transform: uppercase;
}

.speaker-separator {
    width: 50px;
    height: 2px;
    background-color: #fd7e14;
    margin: 0 auto 15px;
    border-radius: 1px;
}

.speaker-name {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.speaker-name .name {
    color: #333;
    font-weight: bold;
    font-size: 16px;
}

.speaker-name .flag {
    font-size: 20px;
}

.speaker-affiliation {
    color: #333;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

/* Responsive adjustments for speaker cards */
@media (max-width: 768px) {
    .speaker-card {
        padding: 15px;
        margin-bottom: 20px;
    }

    .speaker-photo {
        width: 180px;
        height: 180px;
    }

    .speaker-topic {
        font-size: 12px;
        min-height: 50px;
    }

    .speaker-name .name {
        font-size: 14px;
    }

    .speaker-affiliation {
        font-size: 11px;
    }
}

/* Responsive adjustments for speaker cards */
@media (max-width: 480px) {
    .speaker-card {
        padding: 15px;
        margin-bottom: 20px;
    }

    .speaker-photo {
        width: 150px;
        height: 150px;
    }

    .speaker-topic {
        font-size: 12px;
        min-height: 50px;
    }

    .speaker-name .name {
        font-size: 14px;
    }

    .speaker-affiliation {
        font-size: 11px;
    }
}
