/* ===== ESTILOS GLOBAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    position: relative;
    min-height: 100vh;
    margin: 0;
}

body::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #01203f, #ff6201);
    z-index: -1;
}




a{
	font-family: "Montserrat", sans-serif;
}



.texto-formatado strong {
    font-weight: bold;
    color: white; /* Ou a cor que preferir */
}

/* Se quiser manter o estilo original do h1 e p */
.intro-text h1 strong,
.intro-text p strong {
    font-weight: 700;
    color: inherit;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color:#01203f;
    color: white;
    padding: 5px 15px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    padding-bottom: 5px;
    display: inline-block;
    position: relative;
}

.cta-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.cta-section h2:hover::after {
    width: 100%;
}

h1,h2,h3,h4{
	font-family: "KoHo", sans-serif;
    text-align: left;
    font-weight: 600;
}

h2,h3,h4{
	margin: 0 auto;
    /*padding: 0 68px*/
}

p{
	font-family: "Montserrat", sans-serif;
}

.navbar-logo {
    width: auto; 
    transition: transform 0.3s ease;
    height: 85px;
}

.logo-link {
    display: flex;
    align-items: center;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

.nav-menu {
    display: flex;
    transition: all 0.3s ease;
}

.navbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar ul li {
    margin-left: 20px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    margin-right: 15px;
}

.navbar ul li a:hover {
    color: #f1c40f;
}

/* ===== SEÇÃO INÍCIO ATUALIZADA ===== */
.intro {
    height: 80vh;
    background-size: cover;
    background-position: center 55%;
    position: relative;
    margin-top: 68px;
    display: flex;
    align-items: center;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.intro-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-text {
    max-width: 100%;
    text-align: left;
    color: white;
    animation: fadeIn 1.5s ease-in-out;
}

.intro-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    margin-top: 60px;
    line-height: 1.5;
}

.participacao-btn {
    display: inline-block;
    padding: 13px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: white;
    background-color: #FF6201;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.participacao-btn:hover {
    background-color: #01203f;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SEÇÃO SOBRE (CARROSSEL) ===== */
.section {
    padding: 50px 20px;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    position: relative;
}

#sobre-swiper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

#sobre{
    background-color: transparent;
    margin-top: 50px;
    margin-bottom: 50px ;
    border-radius: 5px;
}

/* Contêiner do Swiper */
.swiper-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

/* Slides do Swiper */
.swiper-slide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Conteúdo do Slide */
.slide-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
}

/* Texto do Slide */
.text-content {
    width: 50%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.text-content h3 {
    width: 100%;
    text-align: left;
    color: white;
    margin-bottom: 50px;
    word-wrap: break-word;
    font-size: xx-large;
    padding: 0;
}

.titulo-destaque {
    position: relative;
    display: inline-block;
    color: white;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.titulo-destaque::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.titulo-destaque:hover::after {
    width: 100%;
}

.texto-formatado {
    width: 100%;
    color: white;
    margin: 0;
    word-wrap: break-word;
  	font-family: "Montserrat", sans-serif;
}

.image-content {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px; /* Espaço para a moldura */
  	border-radius: 5px;
}

.image-content img {
    width: 600px;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
    
    /* Novas propriedades para a moldura */
    border: 5px solid #ffffff;
    box-shadow: 
        0 3px 6px rgba(0,0,0,0.1),
        0 10px 20px rgba(0,0,0,0.1);
    
    /* Transição suave para hover */
    transition: all 0.3s ease;
    
    /* Melhora o aspecto 3D */
    transform-style: preserve-3d;
}

/* Efeito quando hover (opcional) */
.image-content:hover img {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.2),
        0 15px 30px rgba(0,0,0,0.15);
    border-color: #f8f8f8;
}

/* ===== BOTÕES DE NAVEGAÇÃO INFERIORES ===== */
.swiper-button-next.sobre-next, 
.swiper-button-prev.sobre-prev {
    top: auto;
    bottom: 9%;
    transform: none;
}

.swiper-button-next.sobre-next {
    right: 0%;
    margin-right: 3%;
}

.swiper-button-prev.sobre-prev {
    left: 0%;
    margin-left: 3%;
}

/* Quando passar o mouse, destacá-los */
.sobre-next:hover, .sobre-prev:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Botão Inscreva-se */
.button-container {
    text-align: left;
    margin-top: 50px;
}

.inscreva-se-btn {
    display: inline-block;
    padding: 20px 40px;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background-color: #FF6201;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-left: 15px;
}

.inscreva-se-btn:hover {
    background-color: #01203f;
}

.patrocinadores-section {
    max-width: 100%;
    border-radius: 5px;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 40px 20px;
}


.patrocinadores-section h2 {
    color: white;	
    margin-bottom: 30px;
    font-size: 2rem;
  	padding: 0 68px;
}

.patrocinadores-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 20px;
}

.patrocinador-item {
    max-width: 400px;
    height: 200px;
    display: flex
;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.patrocinador-item:hover {
    transform: translateY(-5px);
}

.patrocinador-item img {
    max-width: 60%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(30%);
    transition: filter 0.3s ease;
}

.patrocinador-item:hover img {
    filter: grayscale(0%);
}


/* ===== SEÇÃO PALESTRANTES ===== */
#palestrantes {
    background-color: transparent;
    border-radius: 5px;
    padding: 50px 20px;
    overflow: hidden;
}

.palestrantes-carrossel-container {
    position: relative;
    padding: 0 40px; /* Espaço para os botões */
}

.palestrantes-carrossel {
    width: 100%; 
    margin: 0 auto;
    padding: 10px 0; 
}


.palestrante-card.swiper-slide {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 500px;
    overflow: hidden;
    width: 100%; /* Controlado pelo Swiper */
}

.carrossel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    font-size: 2rem;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carrossel-button:hover {
    background: rgba(0,0,0,0.7);
    color: #fff;
}

.carrossel-prev {
    left: -20px; /* Ajuste conforme necessário */
}

.carrossel-next {
    right: -20px; /* Ajuste conforme necessário */
}

.palestrante-logo {
    position: absolute; /* Posicionamento absoluto */
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 0; /* Remove a margem anterior */
}

.palestrante-logo img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.palestrante-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.palestrante-imagem {
    position: relative;
    width: 100%;
    height: 200px; /* Altura fixa */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
}

.palestrante-imagem img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain; 
    transition: transform 0.3s ease;
    padding-top: 3px;
}

.palestrante-info {
    position: relative; /* Adicionado para referência de posicionamento */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
	padding: 10px 10px;
    min-height: 180px; /* Altura mínima para garantir espaço */
}

#palestrantes h2 {
    margin-bottom: 50px;
    color: white;
    padding: 0;
}

.palestrante-info h3 {
    font-size: 1.1rem;
    color: #1e3c72;
    padding: 0;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
  	text-align: justify;
    hyphens: auto;
}

.palestrante-info h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #1e3c72;
    transition: width 0.3s ease;
}

.palestrante-info h3:hover::after {
    width: 100%;
}


.palestrante-info p {
    margin: 0;
    font-size: 1rem;
    color: #555;
}

.palestrante-links {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 2;
}

.links-toggle {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.links-toggle:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.links-toggle i {
    font-size: 16px;
}

.links-menu {
    position: absolute;
    right: 0;
    bottom: 100%;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 8px;
    min-width: 40px;
}

.links-menu a {
    color: #333;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.links-menu a:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.links-menu a i {
    font-size: 16px;
}

.links-menu a[href*="linkedin"] i {
    color: #0077b5;
}

/* Mostrar menu ao passar o mouse ou quando ativo */
.palestrante-links:hover .links-menu,
.palestrante-links.active .links-menu {
    display: flex;
}

.inscricao-container {
    position: absolute; /* Posicionamento absoluto em relação ao .palestrante-info */
    bottom: 100px; /* Distância fixa acima da logo (ajuste conforme necessário) */
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    width: calc(100% - 40px); /* Considera o padding do container */
}

.inscricao-btn {
    background-color: #1e3c72;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.inscricao-btn:hover {
    background-color: #152a4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.inscricao-btn i {
    margin-left: 5px;
    font-size: 12px;
}


/* ===== SEÇÃO MINI CURSOS ===== */

#mini-cursos h2 {
    margin-bottom: 50px;
    color: white;
    padding: 0;
}

/* ===== SEÇÃO CALENDÁRIO ===== */
#calendario {
    background-color: transparent;
    border-radius: 5px;
    padding: 50px 20px;
    margin-top: 30px;
}

#calendario h2{
    color: white;
    padding: 0;
    margin-bottom: 50px;
}

.calendar-container {
    max-width: 100%;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
 	margin-bottom: 50px;
}

.calendar-container iframe {
    width: 90%;
    border: none;
}

.calendar-button-container{
	text-align: left;
}

.cta-calendario-button {
    background-color: #1e3c72;
    color: white;
    border: none;
    padding: 16px 40px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
    margin-top: 50px;
    margin-bottom: 20px;
    text-decoration: none;
}



.cta-calendario-button:hover {
    background-color: #152a4a;
}

/* DEPOIMENTOS */
/* Controles de navegação */
.sobre-swiper .swiper-button-next,
.sobre-swiper .swiper-button-prev {
    color: #333;
}

/* Estilos para a seção "Depoimentos" */
.depoimentos-swiper {
    width: 100%;
    height: auto;
}

.depm{
	color: white;
    padding: 0;
}

.depoimentos-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.depoimentos-swiper .depoimento-foto img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.depoimentos-swiper .swiper-pagination {
    position: relative;
    margin-top: 15px;
}

.depoimentos-swiper .swiper-pagination-bullet {
    background: white;
    opacity: unset;
}

.depoimentos-swiper .swiper-pagination-bullet-active {
    background: #222;
}

.depoimento-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
	min-width: 350px;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 500px;
    min-height: 500px; 
    max-height: 500px; 
    overflow: hidden;
}

.depoimento-conteudo {
    flex: 1; 
    display: flex;
    flex-direction: column;
}

.depoimento-texto {
    font-size: 1.1rem;
    line-height: 1.6;
  	max-width: 100%;
    color: #333;
    margin-top: 20px;
    margin-bottom: 20px;
    font-style: italic;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6; 
    -webkit-box-orient: vertical;
    flex-grow: 1;
    overflow-wrap: break-word;
  	cursor: pointer; /* Indica que é clicável */
    transition: -webkit-line-clamp 0.3s;
}

.depoimento-texto:hover,
.depoimento-texto:active {
    -webkit-line-clamp: initial; /* Mostra tudo */
}


.depoimento-autor {
    margin-top: auto;
    text-align: center;
}

.depoimento-foto {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.depoimento-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.depoimento-autor {
    text-align: center;
}

.depoimento-autor h4 {
    margin: 0;
    color: #2c3e50;
    text-align: center;
}

.depoimento-autor p {
    margin: 5px 0 0;
    color: #7f8c8d;
    font-size: 0.9rem;
}

.depoimento-form-container {
    max-width: 60%;
    margin: 50px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

.h3dep {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.depoimento-form {
    display: flex;
    flex-direction: column;
}

.form-group textarea {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
    font-size: 1rem;
}

.enviar-depoimento-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 15px;
    transition: background 0.3s;
}

.enviar-depoimento-btn:hover {
    background: #2980b9;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    background-color: #f5f5f5;
    border-left: 3px solid #3498db;
}

/* Placeholder estilizado */
.form-group input[type="text"]::placeholder {
    color: #7f8c8d;
    font-style: italic;
}

/* Efeitos de foco */
.form-group input[type="text"]:focus {
    outline: none;
    border-color: #3498db;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(52,152,219,0.2);
}

/* Estilo quando preenchido */
.form-group input[type="text"]:not(:placeholder-shown) {
    border-left-color: #2ecc71;
}

/* Modal de Autenticação */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.google-auth {
    background: #4285F4;
    color: white;
}

.google-auth:hover {
    background: #3367d6;
}

.instagram-auth {
    background: #E1306C;
    color: white;
}

.instagram-auth:hover {
    background: #c13584;
}

.auth-btn img {
    width: 20px;
    height: 20px;
}

/* Seção Localização */
#localizacao {
    background-color: transparent;
    padding: 50px 20px;
    border-radius: 5px;
    color: white;
  	text-align: left;
}

.local-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.local-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-text {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  	text-align: left;
  	font-size: 1.1rem;
}

.location-text .first-line {
    font-weight: 600;
  	font-size: 1rem;
}

.section h2 {
    margin-bottom: 30px;
    font-size: 2.8rem;
}

.local-detalhes h4 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #f8f8f8;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;

}

.local-detalhes h4::after {
    content: "";
    position: absolute;
    bottom: -5px; 
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f8f8f8;
    transition: width 0.3s ease;
}

.local-detalhes h4:hover::after {
    width: 300%;
}

.local-detalhes ul {
    list-style-type: none;
    padding-left: 0;
}

.local-detalhes ul li {
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
}

.local-detalhes ul li i {
    color: #ff6b6b;
    position: absolute;
    left: 0;
    top: 3px;
}

.local-mapa {
    flex: 1;
 	height: auto; /* Altura automática para acomodar o texto */
    border-radius: 8px;
    overflow: hidden;
}

.mapa-observacao {
    font-family: "Montserrat", sans-serif;
    font-size: 0.9rem;
    color: #f8f8f8;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 70px;
    text-align: left;
    font-style: italic;
}

.custom-icon {
    width: 40px; /* Ajuste conforme necessário */
    height: 40px; /* Ajuste conforme necessário */
    margin-right: 10px;
    vertical-align: middle;
    margin-top: 10px;
}

/* Seção FAQ */
#faq {
	background-color: transparent;
    padding: 50px 20px;
    color: white;
    max-width: 90%;
    margin: 1px auto;
    border-radius: 5px;
}

.faq-container {
    margin-top: 30px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left; /* Mudar de justify para left */
}

.faq-answer p {
    margin: 0;
    padding: 15px 0;
    line-height: 1.6;
    text-align: left; /* Mudar de justify para left */
}

.h2faq{
    padding: 0;
}

.faq-question:hover {
    color: #1e3c72;
}

.faq-question h3 {
  	font-family: "Montserrat", sans-serif;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
    word-spacing: normal;
    letter-spacing: normal;
    text-rendering: optimizeLegibility;
    padding: 0;
}

.faq-toggle {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;

}

.faq-answer p {
    margin: 0;
    padding: 15px 0;
    line-height: 1.6;
    text-align: justify;
}

/* Classe ativa quando o item está expandido */
.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}


/* Estilos para a seção CTA */
.cta-section {
    background-color: transparent;
    padding: 40px 0;
    width: 97%;
    margin: 0 auto;
    margin-bottom: 50px;
    border-radius: 5px;
}

.cta-container {
    width: 90%; 
    max-width: 90%; 
    margin: 0 auto;
}

.cta-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    padding-bottom: 5px;
    display: inline-block;
    position: relative;
    overflow: visible; /* Permite que o pseudo-elemento ultrapasse os limites */
}

.cta-section h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: white;
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.cta-section h2:hover::after {
    transform: scaleX(1.38); /* Expande para 150% da largura original */
}

.cta-text {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 47px;
}

.cta-button {
    background-color: #1e3c72;
    color: white;
    border: none;
    padding: 20px 60px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #152a4a;
}

/* ===== FOOTER ===== */
footer {
    padding: 30px 20px 20px;
    color: white;
    font-family: Arial, sans-serif;
    position: relative; /* Necessário para posicionar o pseudo-elemento */
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 6%;
    width: 88%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.7);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    max-width: 50%;
}

.logo img {
    height: 80px;
    margin-bottom: 10px;
}

.container-social-icons{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
  	text-decoration: none;
}

#linkdin{
	color: #ff6201;
  	background-color: white;
  	border-radius: 10%;
  	font-size: 1.5rem;
    width: 32px;
    height: 32px;
    margin-top: 4px;
}

.social-icons a:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.2);
}

.logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.social-icons a img {
    width: 30px;
    height: 30px;
    transition: opacity 0.3s;
}

.social-icons a img:hover {
    opacity: 0.8;
}

.footer-right {
    text-align: right;
    margin-top: 20px;
}

.support-text {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: left;
    font-family: "Montserrat", sans-serif;
}

.support-logos {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center; 
}

.support-logos img {
    max-width: 60px; 
    max-height: 40px;
    width: auto;
    height: auto; 
    object-fit: contain; 
    opacity: 0.9;
    transition: all 0.3s ease;
  	cursor: pointer;
}

.support-logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 2px;
}

.support-logos img:hover {
    opacity: 1;
    transform: scale(2.05); 
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 20px;
    font-size: 14px;
}



/* ===== MEDIA QUERIES ===== */
@media (max-width: 768px) {
  
  	h1, h2, h4, .calendar-button-container, .button-container {
		text-align: center;
    }
    .support-text {
        text-align: left;
        padding-left: 50px;
    }
  	.inscreva-se-btn {
        margin-left: 0;
    }
    .palestrantes-carrossel-container {
      	padding: 0;
    }

  	.patrocinadores-section h2 {
        padding: 0;
    }

    .hamburger-btn {
        display: block;
        z-index: 1001;
    }
  	.depoimento-card {
      min-width: 300px;
      max-width: 400px;
      min-height: 500px;
      max-height: 600px;

	}
  	.support-logos img {
      width: 55px;
      opacity: 0.9;
      transition: opacity 0.3s;
	}
  
  	.section h2{
      font-size: 2rem;
	}
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: linear-gradient(to right, #01203f, #0344dc);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 80px;
        transition: right 0.3s ease;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .navbar {
        justify-content: space-between;
        padding: 8px;
    }

      .intro-text {
        max-width: 100%;
        text-align: center;
    }
    
    .intro-text h1 {
        font-size: 2rem;
    }
    
    .intro-text p {
		font-size: 0.95rem;
      	margin-top: 20px;
    	line-height: 1.3;
    }
  
  	.participacao-btn {
        padding: 13px 19px;
        font-size: 1.1rem;
	}
  
  	.palestrante-info h3 {
    	margin: 0 0 15px;
    	font-size: 0.9rem;
  	}
  
  	.carrossel-next {
        right: -40px;
    }
  	.carrossel-prev {
        left: -40px;
    }

    .slide-content {
        flex-direction: column;
        gap: 20px;
    }

    .text-content, .image-content {
        width: 100%;
    }

    .patrocinadores-container {
        gap: 15px;
    }
    
    .patrocinador-item {
		max-width: 130px;
        height: 100px;
        padding: 10px;
    }

    .palestrantes-carrossel-container {
        gap: 10px;
    }
    
    .palestrante-card {
        min-width: 100%;
        flex: 0 0 100%;
    }
    
    .carrossel-button {
        font-size: 1.5rem;
    }

    .calendar-container iframe {
        height: 400px;
    }

    .local-container {
        flex-direction: column;
    }
    
    .local-mapa {
        min-height: 100px;
    }
  	.image-content {
        width: 100%;
        padding: 10px;
    }
    
    .image-content img {
		width: 121%;
        height: 300px;
        border-width: 8px;
    }
    .logo img {
      height: 60px;
      margin-bottom: 15px;
  	}
    .footer-right {
      margin-top: 18px;
      text-align: right;
  	}
    .depoimento-form-container {
      max-width: 100%
    }
    .calendar-container iframe {
      width: 100%;
  	}
  	.social-icons a {	
      font-size: 2rem;
  	}
  	.patrocinador-item img {
    	max-width: 85%;
  	}
  	#localizacao {
        text-align: center;
    }
}

@media only screen 
  and (max-width: 375px) 
  and (-webkit-device-pixel-ratio: 2) {

	.intro-text h1 {
        font-size: 2rem;
    }
    .depoimento-card {
      min-width: 300px;
      max-width: 400px;
      min-height: 500px;
      max-height: 600px;

	}
}


@media (max-width: 900px) and (orientation: landscape) {
    .intro-text p {
        font-size: 1rem;
    }
    .intro-text h1 {
        font-size: 3rem;
    }
    .image-content img {
        width: 350px;
    }
      .navbar {
        justify-content: space-between;
        padding: 5px;
    }

}

@media (min-width: 1500px) {
	
    .intro-text p {
      font-size: 1.5rem;
	}
  	.navbar-logo {
      height: 70px;
	}
  	.navbar ul li a {
      font-size: 1.3rem;
  	}
    .calendar-container iframe {
		height: 650px;
	}
    .support-logos img {
      width: 60px;
  	}
  	.logo img {
      height: 90px;
  	}
    .image-content img {
      width: 650px;
      height: 420px;
 	}
  	.patrocinador-item {
      max-width: 450px;
      height: 225px;
  	}
  	.local-container {
      max-width: 1500px;
      margin: 0;
     }
}
	

@media (min-width: 1600px) {
	
    .intro-text p {
      font-size: 2rem;
	}
  	.navbar-logo {
      height: 70px;
	}
  	.navbar ul li a {
      font-size: 1.3rem;
  	}
    .calendar-container iframe {
		height: 650px;
	}
    .text-content h3 {
      font-size: xxx-large;
  	}
    .texto-formatado {
      font-size: 1.3rem;
  	}
    .support-logos img {
      width: 70px;
  	}
  	.logo img {
      height: 100px;
  	}
   	.image-content img {
      width: 700px;
      height: 450px;
 	}
  	.patrocinador-item {
      max-width: 500px;
      height: 250px;
  	}
  	.palestrante-card.swiper-slide {
      height: 600px;
  	}
  	.inscricao-btn {
      padding: 12px 18px;
  	}
}

@media (min-width: 1800px) {
	
    .intro-text p {
      font-size: 2.5rem;
	}
  	.navbar-logo {
      height: 80px;
	}
   	.navbar ul li a {
      font-size: 1.4rem;
  	}
  	.calendar-container iframe {
		height: 700px;
	}
    .support-logos img {
      width: 75px;
  	}
  	.logo img {
      height: 110px;
  	}
   	.image-content img {
      width: 750px;
      height: 500px;
 	}
  	.patrocinador-item {
      max-width: 600px;
      height: 300px;
  	}
}

@media (min-width: 2000px) {	
	
    .intro-text p {
      font-size: 2.8rem;
	}
  
  	.navbar-logo {
      height: 90px;
	}
  	.navbar ul li a {
      font-size: 1.5rem;
  	}
    .calendar-container iframe {
		height: 800px;
	}
    .support-logos img {
      width: 80px;
  	}
    .logo img {
      height: 120px;
  	}
  	.image-content img {
      width: 800px;
      height: 550px;
 	}
  	.patrocinador-item {
      max-width: 700px;
      height: 350px;
  	}
}

