@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Libertinus+Serif:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/* ...existing code... */
:root {
    /* 🎨 Paleta Primária */
    --congresso-primary-black: #000000; /* Pantone Black C */
    --congresso-primary-green: #86bd40; /* Pantone 375 C */
    --congresso-primary-yellow: #fab41c; /* Pantone 7549 C */
    --congresso-primary-orange: #e56525; /* Pantone Bright Orange C */
    --congresso-primary-purple: #6c2c84; /* Pantone 520 C */
    --congresso-primary-blue: #00b2e8; /* Pantone 306 C */

    /* 🎨 Paleta Secundária */
    --congresso-secondary-darkgreen: #008e48; /* Pantone 3415 C */
    --congresso-secondary-lightyellow: #ffd471; /* Pantone 1205 C */
    --congresso-secondary-red: #d83728; /* Pantone 485 C */
    --congresso-secondary-wine: #912e33; /* Pantone 7622 C */
    --congresso-secondary-violet: #98258d; /* Pantone 248 C */
    /* 
    --congresso-font-text: "New June Light", system-ui, -apple-system,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --congresso-font-subtitle: "New June Book", system-ui, -apple-system,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --congresso-font-title: "New June Bold", system-ui, -apple-system,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; */

    --congresso-font-text: 300 "Montserrat", system-ui, -apple-system,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --congresso-font-subtitle: 400 "Montserrat", system-ui, -apple-system,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --congresso-font-title: 700 "Montserrat", system-ui, -apple-system,
        "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Estilos para o cabeçalho do congresso */
#cabecalho-congresso {
    background-color: white;
    border-bottom: 3px solid var(--congresso-primary-green);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#cabecalho-congresso .logo-container {
    max-width: 450px;
}

/* Estilo para o menu de navegação */
.cabecalho-nav {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cabecalho-menu {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.cabecalho-menu-link {
    font-family: var(--congresso-font-subtitle);
    color: var(--congresso-primary-black);
    font-size: 1.2rem;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 600;
}

.cabecalho-menu-link:hover,
.cabecalho-menu-link:focus {
    color: var(--congresso-primary-green);
}

.cabecalho-menu-link.active {
    color: var(--congresso-primary-green);
    font-weight: 700;
}

.cabecalho-menu-link.active:after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--congresso-primary-green);
    border-radius: 2px;
}

/* Estilo para as informações do evento */
.cabecalho-evento-info {
    font-family: var(--congresso-font-title);
}

.cabecalho-data {
    color: var(--congresso-primary-black);
    font-size: 1.25rem;
}

.cabecalho-local {
    color: var(--congresso-primary-green);
    font-size: 1.25rem;
}

/* Banner principal do congresso com logo e informações */
#banner-congresso {
    padding: 2rem 0 3rem;
    background-color: white;
}

#banner-congresso .logo-container {
    max-width: 90vw;
    margin: 0 auto;
}

/* Estilos para as informações em destaque */
.evento-destaque {
    margin-top: 2rem;
}

.evento-data,
.evento-local {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-black);
    font-size: 6rem;
    margin-bottom: 0;
    font-weight: 700;
    line-height: 1;
    text-shadow: 2px 4px 16px rgba(0, 0, 0, 0.18),
        /* sombra mais forte */ 0px 0px 2px rgba(0, 0, 0, 0.18),
        0px 2px 4px rgba(0, 0, 0, 0.18), 2px 0px 4px rgba(0, 0, 0, 0.18);
}

.evento-mes,
.evento-tipo {
    font-family: var(--congresso-font-text);
    color: var(--congresso-primary-black);
    font-size: 3rem;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.2;
    text-shadow: 2px 4px 16px rgba(0, 0, 0, 0.18),
        /* sombra mais forte */ 0px 0px 2px rgba(0, 0, 0, 0.18),
        0px 2px 4px rgba(0, 0, 0, 0.18), 2px 0px 4px rgba(0, 0, 0, 0.18);
}

.evento-mes {
    padding-right: 40px;
}

@media (max-width: 1200px) {
    .evento-mes {
        padding-right: 0px;
    }
}
/* Responsividade */
@media (max-width: 1024px) {
    .evento-data,
    .evento-local {
        font-size: 3.5rem;
        text-align: center;
    }

    .evento-mes,
    .evento-tipo {
        font-size: 2rem;
        text-align: center;
    }

    .evento-destaque {
        margin-bottom: 1rem;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .evento-data,
    .evento-local {
        font-size: 3.5rem;
        text-align: center;
    }

    .evento-mes,
    .evento-tipo {
        font-size: 2rem;
        text-align: center;
    }

    .evento-destaque {
        padding-bottom: 2rem;
        margin-bottom: 1rem;
    }

    .cabecalho-menu {
        gap: 10px;
    }

    .cabecalho-menu-link {
        font-size: 1rem;
    }

    .cabecalho-data,
    .cabecalho-local {
        font-size: 1rem;
    }
}

/* Responsividade */
@media (max-width: 576px) {
    .evento-mes,
    .evento-tipo {
        padding-bottom: 30px;
    }
}

/*------------------------------------------------------*/
/* Seção 1 - Chamada Inicial */
/*------------------------------------------------------*/
#secao1-congresso {
    background-color: #f6f4f6;
    margin: 4rem 0;
    padding: 0 0 4rem 0;
    position: relative;
}

#secao1-congresso::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(246, 244, 246, 0) 0%,
        rgba(246, 244, 246, 0.7) 40%,
        #fff 100%
    );
    z-index: 1;
}
.secao1-imagem {
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 -10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.secao1-imagem img {
    transition: transform 0.5s ease;
}

.secao1-imagem:hover img {
    transform: scale(1.02);
}

.secao1-titulo {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-black);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    padding: 2rem;
}

.secao1-titulo::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--congresso-primary-orange);
    margin-top: 1.5rem;
    border-radius: 2px;
}

.secao1-titulo__destaque {
    color: var(--congresso-primary-orange);
}

.secao1-texto {
    font-family: var(--congresso-font-text);
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--congresso-primary-black);
    padding: 0rem 5rem 0rem 0rem;
}

.secao1-texto p {
    margin-bottom: 1rem;
}

.secao1-texto strong {
    font-weight: 600;
    color: var(--congresso-primary-purple);
}

.btn-secao1-inscricao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--congresso-primary-orange);
    color: #fff;
    font-family: var(--congresso-font-title);
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 0.8rem 5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(229, 101, 37, 0.3);
}

.btn-secao1-inscricao:hover,
.btn-secao1-inscricao:focus {
    background-color: var(--congresso-primary-yellow);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(250, 180, 28, 0.4);
}

.btn-secao1-inscricao ion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-secao1-inscricao:hover ion-icon {
    transform: translateX(5px);
}

.secao1-nota {
    color: #777;
    font-size: 0.85rem;
    font-style: italic;
}

/* Responsividade */
@media (max-width: 992px) {
    .secao1-titulo {
        font-size: 2.4rem;
        text-align: center;
    }

    .secao1-titulo::after {
        margin-left: auto;
        margin-right: auto;
    }

    .secao1-texto {
        text-align: left;
        padding: 1rem;
    }

    .btn-secao1-inscricao {
        margin: 0 auto;
        display: flex;
    }
}

@media (max-width: 768px) {
    .secao1-titulo {
        font-size: 2rem;
    }

    .secao1-texto {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .secao1-titulo {
        font-size: 1.8rem;
    }

    #secao1-congresso {
        padding: 2rem 0;
    }
}

/*------------------------------------------------------*/
/* Seção 2 - Apresentação */
/*------------------------------------------------------*/
#secao2-congresso {
    background-color: #fff;
    padding: 5rem 0;
    position: relative;
}

.secao2-titulo {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-purple);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.secao2-titulo::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--congresso-primary-orange);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.secao2-linha-fina {
    font-family: var(--congresso-font-subtitle);
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--congresso-primary-black);
    max-width: 85%;
    margin: 0 auto;
    font-style: italic;
}

.secao2-coluna {
    font-family: var(--congresso-font-text);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--congresso-primary-black);
    height: 100%;
    padding: 1.5rem;
    text-align: justify;
    /* border-left: 3px solid var(--congresso-primary-yellow);
    background-color: rgba(250, 180, 28, 0.05); */
    transition: all 0.3s ease;
}

/* .secao2-coluna:hover {
    background-color: rgba(250, 180, 28, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
} */

/* Responsividade */
@media (max-width: 992px) {
    .secao2-titulo {
        font-size: 2.5rem;
    }

    .secao2-linha-fina {
        font-size: 1.2rem;
        max-width: 95%;
    }

    .secao2-coluna {
        padding: 1.2rem;
    }
}

@media (max-width: 768px) {
    #secao2-congresso {
        padding: 4rem 0;
    }

    .secao2-titulo {
        font-size: 2.2rem;
    }

    .secao2-linha-fina {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .secao2-titulo {
        font-size: 1.8rem;
    }

    .secao2-linha-fina {
        font-size: 1rem;
    }

    #secao2-congresso {
        padding: 3rem 0;
    }

    .secao2-coluna {
        margin-bottom: 1rem;
    }
}

/*------------------------------------------------------*/
/* Seção 3 - Sobre o Evento */
/*------------------------------------------------------*/
#secao3-congresso {
    background-color: #f6f4f6;
    padding: 5rem 0;
    position: relative;
}

#secao3-congresso::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        #fff 0%,
        rgba(246, 244, 246, 0.7) 60%,
        #f6f4f6 100%
    );
    z-index: 1;
}

#secao3-congresso::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(246, 244, 246, 0) 0%,
        rgba(246, 244, 246, 0.7) 40%,
        #fff 100%
    );
    z-index: 1;
}

.secao3-conteudo {
    padding: 2rem;
}

.secao3-titulo {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-blue);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
}

.secao3-titulo::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--congresso-primary-blue);
    margin-top: 1.5rem;
    border-radius: 2px;
}

.secao3-texto {
    font-family: var(--congresso-font-text);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--congresso-primary-black);
}

.secao3-texto p {
    margin-bottom: 1rem;
}

.secao3-texto strong {
    font-weight: 600;
    color: var(--congresso-primary-blue);
}

.secao3-imagem-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.secao3-imagem {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.secao3-imagem-container:hover .secao3-imagem {
    transform: scale(1.02);
}

.secao3-legenda {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.8rem 1rem;
    font-family: var(--congresso-font-subtitle);
    font-size: 0.9rem;
    font-style: italic;
    text-align: center;
}

.btn-secao3-transmissao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--congresso-primary-blue);
    color: #fff;
    font-family: var(--congresso-font-title);
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 0.8rem 3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 178, 232, 0.3);
}

.btn-secao3-transmissao:hover,
.btn-secao3-transmissao:focus {
    background-color: var(--congresso-primary-purple);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(108, 44, 132, 0.4);
}

.btn-secao3-transmissao ion-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-secao3-transmissao:hover ion-icon {
    transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 992px) {
    .secao3-titulo {
        font-size: 2.5rem;
        text-align: center;
    }

    .secao3-conteudo {
        padding: 1rem;
    }

    .secao3-titulo::after {
        margin-left: auto;
        margin-right: auto;
    }

    .secao3-texto {
        text-align: left;
        font-size: 1.05rem;
    }

    .secao3-imagem-container {
        margin-top: 2rem;
    }

    .btn-secao3-transmissao {
        margin: 0 auto;
        display: flex;
    }
}

@media (max-width: 768px) {
    #secao3-congresso {
        padding: 4rem 0;
    }

    .secao3-titulo {
        font-size: 2.2rem;
    }

    .secao3-texto {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .secao3-titulo {
        font-size: 1.8rem;
    }

    #secao3-congresso {
        padding: 3rem 0;
    }

    .secao3-legenda {
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .btn-secao3-transmissao {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }
}

/*------------------------------------------------------*/
/* Seção 4 - Experiência Nutricional */
/*------------------------------------------------------*/
#secao4-congresso {
    background-color: #fff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.secao4-titulo {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-black);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
    position: relative;
}

.secao4-titulo::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--congresso-primary-green);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.secao4-titulo__destaque {
    color: var(--congresso-primary-green);
}

.secao4-conteudo {
    position: relative;
}

.secao4-texto {
    font-family: var(--congresso-font-text);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--congresso-primary-black);
    text-align: justify;
    /* background-color: rgba(255, 255, 255, 0.9); */
    padding: 2rem;
    border-radius: 10px;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); */
    position: relative;
    z-index: 2;
}

.secao4-texto p {
    margin-bottom: 1.3rem;
}

.secao4-texto strong {
    font-weight: 600;
    color: var(--congresso-primary-green);
}

.secao4-imagens-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.secao4-imagem {
    position: absolute;
    max-width: 200px;
    opacity: 0.7;
    filter: grayscale(0.8);
    transition: all 0.5s ease;
}

.secao4-imagem-1 {
    top: -200px;
    left: 1%;
    transform: rotate(-15deg);
}

.secao4-imagem-2 {
    right: 2%;
    top: -200px;
    transform: rotate(10deg);
}

.secao4-imagem-3 {
    bottom: -70px;
    right: 50%;
    transform: rotate(15deg);
}

.secao4-imagem-4 {
    bottom: -100px;
    left: 1%;
    transform: rotate(-10deg);
}

.secao4-imagem-5 {
    bottom: -100px;
    right: 1%;
    transform: rotate(5deg);
}

/* Efeitos hover nas imagens */
#secao4-congresso:hover .secao4-imagem {
    opacity: 0.9;
    filter: grayscale(0.4);
}
/* Responsividade */
@media (max-width: 1366px) {
    .secao4-titulo {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .secao4-titulo {
        font-size: 1.5rem;
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .secao4-titulo {
        font-size: 1.8rem;
    }

    .secao4-texto {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .secao4-imagem {
        max-width: 100px;
    }
}

@media (max-width: 768px) {
    #secao4-congresso {
        padding: 4rem 0;
    }

    .secao4-titulo {
        font-size: 1.6rem;
    }

    .secao4-texto {
        font-size: 1rem;
    }

    .secao4-imagem {
        max-width: 80px;
    }

    .secao4-imagem-1 {
        left: 2%;
    }

    .secao4-imagem-3 {
        right: 2%;
    }

    .secao4-imagem-5 {
        bottom: -60px;
        right: 50%;
        transform: rotate(5deg);
    }
    .secao4-imagem-4,
    .secao4-imagem-3 {
        bottom: -40px;
    }
}

@media (max-width: 576px) {
    .secao4-titulo {
        font-size: 1.5rem;
    }

    .secao4-texto {
        padding: 1rem;
    }

    .secao4-imagem {
        max-width: 60px;
    }

    .secao4-imagem-1,
    .secao4-imagem-2,
    .secao4-imagem-3,
    .secao4-imagem-4,
    .secao4-imagem-5 {
        display: none;
    }
}

/*------------------------------------------------------*/
/* Seção 5 - Programação */
/*------------------------------------------------------*/
#secao5-congresso {
    background-color: #fff;
    padding: 5rem 0 7rem;
    position: relative;
    overflow: hidden;
}

#secao5-congresso::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(246, 244, 246, 0.7) 0%,
        rgba(255, 255, 255, 0.7) 60%,
        #fff 100%
    );
    z-index: 1;
}

.secao5-tab-content {
    padding: 2rem;
}

.secao5-titulo {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-black);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
    position: relative;
}

.secao5-titulo::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--congresso-primary-purple);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.secao5-titulo__destaque {
    color: var(--congresso-primary-purple);
}

/* Estilo das abas */
.secao5-tabs {
    margin-top: 3rem;
}

.secao5-nav-tabs {
    border-bottom: none;
    margin-bottom: 2.5rem;
}

.secao5-nav-link {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-black);
    font-size: 1.5rem;
    padding: 0.75rem 3rem;
    margin: 0 0.5rem;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.secao5-nav-link:hover,
.secao5-nav-link:focus {
    color: var(--congresso-primary-purple);
}

.secao5-nav-link.active {
    color: #fff;
    background-color: var(--congresso-primary-purple);
    font-weight: 700;
}

/* Estilo do card de programação */
.secao5-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.secao5-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.secao5-card-header {
    background: linear-gradient(
        135deg,
        var(--congresso-primary-purple) 0%,
        var(--congresso-secondary-violet) 100%
    );
    padding: 2.5rem 2rem;
    position: relative;
}

.secao5-card-titulo {
    font-family: var(--congresso-font-title);
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.secao5-card-subtitulo {
    font-family: var(--congresso-font-subtitle);
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0;
    opacity: 0.9;
    max-width: 80%;
}

.secao5-card-body {
    padding: 2rem;
}

/* Estilo dos itens de programação */
.secao5-programacao {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.secao5-item {
    display: flex;
    gap: 2rem;
    position: relative;
    padding-bottom: 2rem;
    border-bottom: 1px dashed rgba(108, 44, 132, 0.3);
}

.secao5-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.secao5-item-horario {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-purple);
    font-size: 1.25rem;
    min-width: 120px;
    text-align: right;
    line-height: 1.4;
}

.secao5-item-conteudo {
    flex: 1;
}

.secao5-item-titulo {
    font-family: var(--congresso-font-subtitle);
    color: var(--congresso-primary-black);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.secao5-item-detalhes {
    font-family: var(--congresso-font-text);
    color: var(--congresso-primary-black);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.secao5-item-detalhes strong {
    color: var(--congresso-primary-purple);
    font-weight: 600;
}

.secao5-item-descricao {
    font-family: var(--congresso-font-text);
    color: #666;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.5;
}

/* Estilos do carrossel */
#palcosCarousel {
    position: relative;
    padding-bottom: 3rem;
}

.secao5-carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.secao5-carousel-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--congresso-primary-purple);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 3px 10px rgba(108, 44, 132, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.secao5-carousel-control:hover {
    background-color: var(--congresso-secondary-violet);
    transform: scale(1.1);
}

.secao5-carousel-control ion-icon {
    font-size: 1.5rem;
}

.secao5-carousel-control-prev {
    margin-left: -40px;
}

.secao5-carousel-control-next {
    margin-right: -40px;
}

.secao5-carousel-indicators {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    z-index: 10;
}

.secao5-carousel-indicators button {
    background-color: transparent;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-family: var(--congresso-font-subtitle);
    font-size: 1rem;
    font-weight: 600;
    color: var(--congresso-primary-black);
    transition: all 0.3s ease;
    opacity: 0.6;
}

.secao5-carousel-indicators button.active {
    background-color: var(--congresso-primary-purple);
    color: white;
    opacity: 1;
}

.secao5-carousel-indicators button:hover {
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 992px) {
    .secao5-titulo {
        font-size: 2.8rem;
    }

    .secao5-nav-link {
        font-size: 1.3rem;
        padding: 0.6rem 2rem;
    }

    .secao5-card-titulo {
        font-size: 2rem;
    }

    .secao5-card-subtitulo {
        font-size: 1rem;
        max-width: 100%;
    }

    .secao5-carousel-indicators button {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 768px) {
    #secao5-congresso {
        padding: 4rem 0 6rem;
    }

    .secao5-titulo {
        font-size: 2.2rem;
    }

    .secao5-nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 1.5rem;
        margin: 0 0.3rem;
    }

    .secao5-card-header {
        padding: 1.8rem 1.5rem;
    }

    .secao5-card-titulo {
        font-size: 1.8rem;
    }

    .secao5-card-subtitulo {
        font-size: 0.9rem;
    }

    .secao5-item {
        flex-direction: column;
        gap: 0.5rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .secao5-item-horario {
        text-align: left;
        min-width: unset;
        font-size: 1.1rem;
    }

    .secao5-item-titulo {
        font-size: 1.3rem;
    }

    .secao5-item-detalhes {
        font-size: 1rem;
    }

    .secao5-carousel-control {
        width: 40px;
        height: 40px;
    }

    .secao5-carousel-indicators {
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .secao5-carousel-indicators button {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 576px) {
    .secao5-titulo {
        font-size: 1.8rem;
    }

    .secao5-card-header {
        padding: 1.5rem;
    }

    .secao5-card-body {
        padding: 1.5rem;
    }

    .secao5-card {
        margin-bottom: 6rem;
    }
    
    .secao5-card-titulo {
        font-size: 1.5rem;
    }

    .secao5-item-titulo {
        font-size: 1.2rem;
    }

    .secao5-carousel-control {
        width: 35px;
        height: 35px;
    }

    .secao5-carousel-control ion-icon {
        font-size: 1.2rem;
    }

    .secao5-carousel-control-prev {
        margin-left: -10px;
    }

    .secao5-carousel-control-next {
        margin-right: -10px;
    }
}

/*------------------------------------------------------*/
/* Seção 6 - Palestrantes */
/*------------------------------------------------------*/
#secao6-congresso {
    background-color: #f6f4f6;
    padding: 5rem 0 7rem;
    position: relative;
    overflow: hidden;
}

#secao6-congresso::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        #fff 0%,
        rgba(246, 244, 246, 0.7) 60%,
        #f6f4f6 100%
    );
    z-index: 1;
}

.secao6-titulo {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-black);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
    position: relative;
}

.secao6-titulo::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--congresso-primary-orange);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.secao6-titulo__destaque {
    color: var(--congresso-primary-orange);
}

.secao6-carrossel-container {
    position: relative;
    padding: 2rem;
}

.secao6-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.secao6-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.secao6-imagem-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--congresso-primary-orange);
    background: linear-gradient(
        135deg,
        var(--congresso-primary-orange) 0%,
        var(--congresso-primary-yellow) 100%
    );
    padding: 1rem;
}

.secao6-imagem {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.secao6-imagem-container:hover .secao6-imagem {
    transform: scale(1.05);
}

.secao6-card-body {
    padding: 1.5rem;
}

.secao6-card-nome {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-orange);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.secao6-card-tema {
    font-family: var(--congresso-font-subtitle);
    color: var(--congresso-primary-black);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.secao6-card-bio {
    font-family: var(--congresso-font-text);
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Controles do carrossel */
.secao6-carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.secao6-carousel-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--congresso-primary-orange);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 3px 10px rgba(229, 101, 37, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.secao6-carousel-control:hover {
    background-color: var(--congresso-primary-yellow);
    transform: scale(1.1);
}

.secao6-carousel-control ion-icon {
    font-size: 1.5rem;
}

.secao6-carousel-control-prev {
    margin-left: -25px;
}

.secao6-carousel-control-next {
    margin-right: -25px;
}

/* Indicadores do carrossel */
.secao6-carousel-indicators {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
    z-index: 10;
}

.secao6-carousel-indicators button {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 2px solid var(--congresso-primary-orange);
    border-radius: 50%;
    padding: 0;
    margin: 0;
    font-family: var(--congresso-font-subtitle);
    font-size: 1rem;
    font-weight: 600;
    color: var(--congresso-primary-orange);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secao6-carousel-indicators button.active {
    background-color: var(--congresso-primary-orange);
    color: white;
}

.secao6-carousel-indicators button:hover {
    background-color: rgba(229, 101, 37, 0.1);
}

/* Responsividade */
@media (max-width: 992px) {
    .secao6-titulo {
        font-size: 2.8rem;
    }

    .secao6-card-nome {
        font-size: 1.6rem;
    }

    .secao6-card-tema {
        font-size: 1.1rem;
    }

    .secao6-card-bio {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    #secao6-congresso {
        padding: 4rem 0 6rem;
    }

    .secao6-titulo {
        font-size: 2.2rem;
    }

    .secao6-card {
        margin-bottom: 2rem;
    }

    .secao6-imagem-container {
        max-height: 200px;
    }

    .secao6-carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .secao6-carousel-indicators {
        bottom: -80px;
    }

    .secao6-carousel-indicators button {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .secao6-titulo {
        font-size: 1.8rem;
    }

    .secao6-card-body {
        padding: 1rem;
    }

    .secao6-card-nome {
        font-size: 1.4rem;
    }

    .secao6-card-tema {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .secao6-card-bio {
        font-size: 0.85rem;
    }

    .secao6-carousel-control-prev {
        margin-left: -10px;
    }

    .secao6-carousel-control-next {
        margin-right: -10px;
    }
}

/*------------------------------------------------------*/
/* Seção 7 - Fórum CRN-3 Mato Grosso do Sul */
/*------------------------------------------------------*/
#secao7-congresso {
    background-color: #fff;
    padding: 5rem 0;
    position: relative;
}

#secao7-congresso::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(246, 244, 246, 0.7) 0%,
        rgba(255, 255, 255, 0.7) 60%,
        #fff 100%
    );
    z-index: 1;
}

.secao7-imagem {
    margin-bottom: 3rem;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1), 0 -10px 30px rgba(0, 0, 0, 0.08); */
    overflow: hidden;
}

.secao7-imagem img {
    transition: transform 0.5s ease;
    width: 80%;
}

.secao7-imagem:hover img {
    transform: scale(1.02);
}

.secao7-titulo {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-black);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    position: relative;
}

.secao7-titulo::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--congresso-secondary-red);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.secao7-titulo__destaque {
    color: var(--congresso-secondary-red);
}

.secao7-texto {
    font-family: var(--congresso-font-text);
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--congresso-primary-black);
    margin: 0 auto;
    padding: 2rem;
}

.secao7-texto p {
    margin-bottom: 1.3rem;
}

.secao7-texto strong {
    font-weight: 600;
    color: var(--congresso-secondary-red);
}

.btn-secao7-inscricao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--congresso-secondary-red);
    color: #fff;
    font-family: var(--congresso-font-title);
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 0.8rem 5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(216, 55, 40, 0.3);
}

.btn-secao7-inscricao:hover,
.btn-secao7-inscricao:focus {
    background-color: var(--congresso-secondary-wine);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(145, 46, 51, 0.4);
}

.btn-secao7-inscricao ion-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-secao7-inscricao:hover ion-icon {
    transform: translateX(5px);
}

/* Responsividade */
@media (max-width: 992px) {
    .secao7-titulo {
        font-size: 2.8rem;
    }

    .secao7-texto {
        font-size: 1.1rem;
        max-width: 95%;
        padding: 1rem;
    }
}

@media (max-width: 768px) {
    #secao7-congresso {
        padding: 4rem 0;
    }

    .secao7-titulo {
        font-size: 2.2rem;
    }

    .secao7-texto {
        font-size: 1rem;
    }

    .btn-secao7-inscricao {
        padding: 0.7rem 3rem;
    }
}

@media (max-width: 576px) {
    .secao7-imagem img {
        width: 100%;
    }
    .secao7-titulo {
        font-size: 1.8rem;
    }

    .secao7-texto {
        max-width: 100%;
    }

    .btn-secao7-inscricao {
        width: 80%;
        padding: 0.7rem 1rem;
    }
}

/*------------------------------------------------------*/
/* Seção 9 - Premiações */
/*------------------------------------------------------*/
#secao9-congresso {
    background-color: #f6f4f6;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

#secao9-congresso::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 100%
    );
    z-index: 1;
}

.secao9-titulo {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-black);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
    position: relative;
}

.secao9-titulo::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--congresso-primary-yellow);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.secao9-titulo__destaque {
    color: var(--congresso-primary-yellow);
}

.secao9-texto {
    font-family: var(--congresso-font-text);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--congresso-primary-black);
    text-align: justify;
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.secao9-texto p {
    margin-bottom: 1.3rem;
}

.secao9-texto strong {
    font-weight: 600;
    color: var(--congresso-primary-yellow);
}

.secao9-cards {
    margin-top: 1rem;
    margin-bottom: 3rem;
}

.secao9-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.secao9-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.secao9-card-destaque {
    border-left: 5px solid var(--congresso-primary-yellow);
}

.secao9-card-jovem {
    border-left: 5px solid var(--congresso-primary-purple);
}

.secao9-card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--congresso-primary-yellow);
    background: rgba(250, 180, 28, 0.1);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.secao9-card-jovem .secao9-card-icon {
    color: var(--congresso-primary-purple);
    background: rgba(108, 44, 132, 0.1);
}

.secao9-card:hover .secao9-card-icon {
    transform: scale(1.1);
}

.secao9-card-title {
    font-family: var(--congresso-font-subtitle);
    font-size: 1.5rem;
    color: var(--congresso-primary-black);
    margin-bottom: 1rem;
    font-weight: 600;
}

.secao9-card-text {
    font-family: var(--congresso-font-text);
    color: var(--congresso-primary-black);
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 992px) {
    .secao9-titulo {
        font-size: 3rem;
    }

    .secao9-texto {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    #secao9-congresso {
        padding: 4rem 0;
    }

    .secao9-titulo {
        font-size: 2.5rem;
    }

    .secao9-texto {
        font-size: 1rem;
    }

    .secao9-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .secao9-titulo {
        font-size: 2rem;
    }

    #secao9-congresso {
        padding: 3rem 0;
    }

    .secao9-card-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .secao9-card-title {
        font-size: 1.3rem;
    }
}

/*------------------------------------------------------*/
/* Seção 10 - Inscrições e Bancas Julgadoras */
/*------------------------------------------------------*/
#secao10-congresso {
    background-color: #f6f4f6;
    padding: 5rem 0;
    position: relative;
}

#secao10-congresso::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(246, 244, 246, 0) 100%
    );
    z-index: 1;
}

.secao10-titulo {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-black);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
    position: relative;
}

.secao10-titulo::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--congresso-primary-blue);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.secao10-titulo__destaque {
    color: var(--congresso-primary-blue);
}

.secao10-texto {
    font-family: var(--congresso-font-text);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--congresso-primary-black);
    padding: 2rem;
}

.secao10-texto p {
    margin-bottom: 1.5rem;
}

.secao10-texto strong {
    font-weight: 600;
    color: var(--congresso-primary-blue);
}

.secao10-premios {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.secao10-premio {
    flex: 1 1 300px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-top: 4px solid var(--congresso-primary-blue);
}

.secao10-premio:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.secao10-premio-titulo {
    font-family: var(--congresso-font-subtitle);
    color: var(--congresso-primary-blue);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.secao10-subtitulo {
    font-family: var(--congresso-font-subtitle);
    color: var(--congresso-primary-blue);
    font-size: 1.6rem;
    margin: 2.5rem 0 1rem;
    font-weight: 600;
}

.secao10-lista {
    list-style: none;
    padding: 0;
    margin: 1rem 0 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.secao10-lista li {
    background-color: rgba(0, 178, 232, 0.1);
    color: var(--congresso-primary-blue);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.secao10-lista li:hover {
    background-color: rgba(0, 178, 232, 0.2);
    transform: translateY(-2px);
}

.secao10-bancas {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 3rem;
}

.btn-secao10-inscricao {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--congresso-primary-blue);
    color: #fff;
    font-family: var(--congresso-font-title);
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 0.8rem 3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 178, 232, 0.3);
}

.btn-secao10-inscricao:hover,
.btn-secao10-inscricao:focus {
    background-color: var(--congresso-primary-purple);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(108, 44, 132, 0.4);
}

.btn-secao10-inscricao ion-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-secao10-inscricao:hover ion-icon {
    transform: translateX(5px);
}

/* Responsividade */
@media (max-width: 992px) {
    .secao10-titulo {
        font-size: 2.8rem;
    }

    .secao10-premio {
        flex: 1 1 100%;
    }

    .secao10-lista {
        flex-direction: column;
        gap: 0.5rem;
    }

    .secao10-lista li {
        display: block;
        text-align: center;
    }
}

@media (max-width: 768px) {
    #secao10-congresso {
        padding: 4rem 0;
    }

    .secao10-titulo {
        font-size: 2.5rem;
    }

    .secao10-subtitulo {
        font-size: 1.4rem;
    }

    .secao10-premio-titulo {
        font-size: 1.3rem;
    }

    .btn-secao10-inscricao {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .secao10-titulo {
        font-size: 2.2rem;
    }

    .secao10-texto {
        font-size: 1rem;
    }

    .secao10-premios {
        gap: 1.5rem;
    }

    .secao10-premio {
        padding: 1.5rem;
    }
}

/*------------------------------------------------------*/
/* Seção 8 - Premiações */
/*------------------------------------------------------*/
#secao8-congresso {
    background-color: #f6f4f6;
    padding: 5rem 0 7rem;
    position: relative;
    overflow: hidden;
}

#secao8-congresso::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1) 0%,
        rgba(246, 244, 246, 0) 100%
    );
    z-index: 1;
}

.secao8-titulo {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-black);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    position: relative;
}

.secao8-titulo::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--congresso-primary-purple);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.secao8-titulo__destaque {
    color: var(--congresso-primary-purple);
}

.secao8-subtitulo {
    font-family: var(--congresso-font-subtitle);
    font-size: 1.2rem;
    line-height: 1.5;
    color: var(--congresso-primary-black);
    max-width: 85%;
    margin: 0 auto 3rem;
}

.secao8-carrossel-container {
    position: relative;
    padding: 2rem 0;
}

.secao8-categoria-titulo {
    text-align: center;
    margin-bottom: 2.5rem;
}

.secao8-categoria-titulo h3 {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-purple);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.secao8-categoria-titulo h4 {
    font-family: var(--congresso-font-subtitle);
    color: var(--congresso-primary-black);
    font-size: 1.5rem;
    font-weight: 600;
}

.secao8-finalistas {
    padding: 1rem 0;
}

.secao8-finalista {
    text-align: center;
    transition: all 0.3s ease;
}

.secao8-finalista:hover {
    transform: translateY(-5px);
}

.secao8-finalista-foto {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--congresso-primary-purple);
    box-shadow: 0 5px 15px rgba(108, 44, 132, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.secao8-finalista:hover .secao8-finalista-foto {
    border-color: var(--congresso-secondary-violet);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(108, 44, 132, 0.3);
}

.secao8-finalista-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.secao8-finalista:hover .secao8-finalista-foto img {
    transform: scale(1.1);
}

.secao8-finalista-nome {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-black);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.secao8-finalista-crn {
    font-family: var(--congresso-font-text);
    color: var(--congresso-primary-purple);
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: 500;
}

.btn-secao8-votar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--congresso-primary-purple);
    color: #fff;
    font-family: var(--congresso-font-title);
    font-size: 1.1rem;
    text-transform: uppercase;
    padding: 0.8rem 4rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(108, 44, 132, 0.3);
}

.btn-secao8-votar:hover,
.btn-secao8-votar:focus {
    background-color: var(--congresso-secondary-violet);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(152, 37, 141, 0.4);
}

/* Controles do carrossel */
.secao8-carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.secao8-carousel-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--congresso-primary-purple);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 3px 10px rgba(108, 44, 132, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.secao8-carousel-control:hover {
    background-color: var(--congresso-secondary-violet);
    transform: scale(1.1);
}

.secao8-carousel-control ion-icon {
    font-size: 1.5rem;
}

.secao8-carousel-control-prev {
    margin-left: -5px;
}

.secao8-carousel-control-next {
    margin-right: -5px;
}

/* Indicadores do carrossel */
.secao8-carousel-indicators {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    z-index: 10;
}

.secao8-carousel-indicators button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(108, 44, 132, 0.3);
    border: none;
    transition: all 0.3s ease;
    padding: 0;
}

.secao8-carousel-indicators button.active {
    background-color: var(--congresso-primary-purple);
    transform: scale(1.2);
}

.secao8-carousel-indicators button:hover {
    background-color: var(--congresso-primary-purple);
    opacity: 0.8;
}

/* Responsividade */
@media (max-width: 992px) {
    .secao8-titulo {
        font-size: 3rem;
    }

    .secao8-subtitulo {
        font-size: 1.1rem;
        max-width: 90%;
    }

    .secao8-categoria-titulo h3 {
        font-size: 1.8rem;
    }

    .secao8-categoria-titulo h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    #secao8-congresso {
        padding: 4rem 0 6rem;
    }

    .secao8-titulo {
        font-size: 2.5rem;
    }

    .secao8-subtitulo {
        font-size: 1rem;
        max-width: 95%;
    }

    .secao8-categoria-titulo h3 {
        font-size: 1.6rem;
    }

    .secao8-categoria-titulo h4 {
        font-size: 1.2rem;
    }

    .secao8-finalista-foto {
        width: 150px;
        height: 150px;
    }

    .secao8-carousel-control {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .secao8-titulo {
        font-size: 2rem;
    }

    .secao8-subtitulo {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .secao8-categoria-titulo h3 {
        font-size: 1.4rem;
    }

    .secao8-categoria-titulo h4 {
        font-size: 1.1rem;
    }

    .secao8-finalista-foto {
        width: 120px;
        height: 120px;
    }

    .secao8-finalista-nome {
        font-size: 1rem;
    }

    .secao8-finalista-crn {
        font-size: 0.9rem;
    }

    .btn-secao8-votar {
        padding: 0.7rem 3rem;
        font-size: 1rem;
    }

    .secao8-carousel-control {
        width: 35px;
        height: 35px;
    }

    .secao8-carousel-control ion-icon {
        font-size: 1.2rem;
    }
}

/*------------------------------------------------------*/
/* Seção 11 - CRN-3 Jovem */
/*------------------------------------------------------*/
#secao11-congresso {
    background-color: #f6f4f6;
    padding: 5rem 0;
    position: relative;
}

#secao11-congresso::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 1),
        rgba(246, 244, 246, 0)
    );
    z-index: 1;
}

#secao11-congresso::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(255, 255, 255, 1),
        rgba(246, 244, 246, 0)
    );
    z-index: 1;
}

.secao11-titulo {
    font-family: var(--congresso-font-title);
    color: var(--congresso-primary-black);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
    position: relative;
}

.secao11-titulo::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--congresso-primary-blue);
    margin: 1.5rem auto 0;
    border-radius: 2px;
}

.secao11-titulo__destaque {
    color: var(--congresso-primary-blue);
}

.secao11-texto {
    font-family: var(--congresso-font-text);
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--congresso-primary-black);
    text-align: justify;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.secao11-texto p {
    margin-bottom: 1.3rem;
}

.secao11-texto strong {
    font-weight: 600;
    color: var(--congresso-primary-blue);
}

.secao11-cards {
    margin-top: 3rem;
}

.secao11-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.secao11-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.secao11-card h3 {
    font-family: var(--congresso-font-title);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.secao11-card h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 3px;
    margin-top: 0.8rem;
    border-radius: 2px;
}

.secao11-card p {
    font-family: var(--congresso-font-text);
    font-size: 1.1rem;
    line-height: 1.6;
}

.secao11-card-programa {
    border-left: 4px solid var(--congresso-primary-blue);
}

.secao11-card-programa h3 {
    color: var(--congresso-primary-blue);
}

.secao11-card-programa h3::after {
    background-color: var(--congresso-primary-blue);
}

.secao11-card-premio {
    border-left: 4px solid var(--congresso-primary-yellow);
}

.secao11-card-premio h3 {
    color: var(--congresso-primary-yellow);
}

.secao11-card-premio h3::after {
    background-color: var(--congresso-primary-yellow);
}

/* Responsividade */
@media (max-width: 992px) {
    .secao11-titulo {
        font-size: 2.8rem;
    }

    .secao11-texto {
        padding: 0;
    }
}

@media (max-width: 768px) {
    #secao11-congresso {
        padding: 4rem 0;
    }

    .secao11-titulo {
        font-size: 2.5rem;
    }

    .secao11-texto {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .secao11-titulo {
        font-size: 2.2rem;
    }

    #secao11-congresso {
        padding: 3rem 0;
    }

    .secao11-card {
        padding: 1.5rem;
    }

    .secao11-card h3 {
        font-size: 1.5rem;
    }
}

/*------------------------------------------------------*/
/* Estilos do Rodapé */
/*------------------------------------------------------*/
#rodape-congresso {
    background-color: var(--congresso-primary-orange);
    padding: 4rem 0 2rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

#rodape-congresso::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(
        to right,
        var(--congresso-primary-green),
        var(--congresso-primary-yellow),
        var(--congresso-primary-orange),
        var(--congresso-primary-purple),
        var(--congresso-primary-blue)
    );
}

.rodape-bloco {
    padding: 1.5rem;
    height: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
}

.rodape-bloco:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.rodape-bloco-congresso {
    border-left: 3px solid var(--congresso-primary-orange);
}

.rodape-bloco-forum {
    border-left: 3px solid var(--congresso-primary-blue);
}

.rodape-bloco-imprensa {
    border-left: 3px solid var(--congresso-primary-green);
}

.rodape-titulo {
    font-family: var(--congresso-font-title);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    position: relative;
    color: #fff;
    font-weight: 700;
}

.rodape-titulo::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    margin-top: 0.5rem;
    border-radius: 2px;
}

.rodape-bloco-congresso .rodape-titulo::after {
    background-color: var(--congresso-primary-orange);
}

.rodape-bloco-forum .rodape-titulo::after {
    background-color: var(--congresso-primary-blue);
}

.rodape-bloco-imprensa .rodape-titulo::after {
    background-color: var(--congresso-primary-green);
}

.rodape-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rodape-lista li {
    margin-bottom: 0.8rem;
    font-family: var(--congresso-font-text);
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.rodape-lista li strong {
    color: #fff;
    font-weight: 600;
    margin-right: 0.3rem;
}

.rodape-brand-row {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rodape-logo {
    max-width: 350px;
}

.rodape-social-titulo {
    font-family: var(--congresso-font-title);
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.rodape-social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    justify-content: flex-end;
}

.rodape-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.rodape-social-link ion-icon {
    font-size: 1.2rem;
}

.rodape-social-link:hover {
    transform: translateY(-3px);
    color: var(--congresso-primary-black);
}

.rodape-social-link:nth-child(1):hover {
    background-color: #3b5998;
}

.rodape-social-link:nth-child(2):hover {
    background-color: #e1306c;
}

.rodape-social-link:nth-child(3):hover {
    background-color: #ff0000;
}

.rodape-social-link:nth-child(4):hover {
    background-color: #0077b5;
}

.rodape-copyright {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--congresso-font-text);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsividade */
@media (max-width: 992px) {
    .rodape-social-links {
        justify-content: center;
    }

    .rodape-logo {
        max-width: 180px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    #rodape-congresso {
        padding: 3rem 0 1.5rem;
    }

    .rodape-bloco {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .rodape-titulo {
        font-size: 1.3rem;
    }

    .rodape-brand-row {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .rodape-lista li {
        font-size: 0.95rem;
    }

    .rodape-social-titulo {
        font-size: 1.2rem;
        margin-top: 1rem;
    }

    .rodape-social-link {
        width: 36px;
        height: 36px;
    }

    .rodape-copyright {
        font-size: 0.8rem;
    }
}
