/* =========================================================
   THEME.CSS - UNIFICADO COM MENU MOBILE ESCURO + GALERIA OCULTA
   ========================================================= */

/* Reset e ajustes básicos */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: 'Raleway', sans-serif;
	font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.5; 
    background-color: #FFFFFF;
    overflow-x: hidden;
    color: #000000; /* cor da fonte em toda a página */
}

h1,h2,h5 {
  font-family: "Playfair Display", serif; /* título elegante */
  font-weight: 700;
  font-size: 2.8rem;
  color: #000000;
  text-align: center;
  margin-bottom: 10px;
}
p {
  color: #000000;
}

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
header, .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: transparent;
    height: 90px;
}

/* Logo */
.navbar .logo {
    display: flex;
    align-items: center;
    height: 90%;
    padding-left: 10px;
}

.navbar .logo img,
.navbar-interna .logo img {   /* unifica navbar e navbar-interna */
    width: 180px;
    height: auto;
    max-width: 100%;
    display: block;
}

/* Menu items - desktop */
.menu-items {
    display: flex;
    gap: 10px;
    z-index: 9998;
}

.menu-items a {
    text-decoration: none;
    color: white;
    padding: 14px 20px;
    text-align: center;
    transition: color 0.3s ease;
}

.menu-items a:hover {
    color: #F6E708;
}

/* Hamburger menu */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 32px;
    color: white;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}

/* =========================================================
   RESPONSIVIDADE / MENU MOBILE
   ========================================================= */
@media (max-width: 768px) {

    .navbar {
        justify-content: center;
    }

    .navbar .logo {
        padding-left: 0;
    }

    .hamburger {
        display: block;
        top: 25px;
        right: 20px;
        transform: none;
    }

    .navbar .logo img,
    .navbar-interna .logo img {
        width: 150px;  /* tamanho consistente em mobile */
    }

    .menu-items {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: rgba(0,0,0,0.85);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 999;
        text-align: center;
        transition: all 0.3s ease;
    }

    .menu-items.active {
        display: flex;
    }

    .menu-items a {
        padding: 14px;
        font-size: 1.2rem;
        color: white;
    }

    body.menu-open .navbar {
        background-color: rgba(0,0,0,0.8);
    }

    .menu-items .menu-logo {
        display: block;
        padding: 14px 0;
    }

    .menu-items .menu-logo img {
        width: 180px;
        margin: 0 auto;
    }
}

@media (min-width: 769px) {
    .menu-items .menu-logo { display: none; }
}

@media (max-width: 480px) {
    .navbar .logo img,
    .navbar-interna .logo img {
        width: 150px;  /* ou 150px, evita encolher demais */
    }
}

/* =========================================================
   CONTACT BLOCK - FORMULÁRIO DE EVENTOS
   ========================================================= */
.contato-block {
    font-family: inherit;
}

/* Links e ícones */
.contato-block .linky,
.contato-block .whatslink {
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    color: #36231B !important; /* cor padrão marrom escuro */
    transition: color 0.3s ease; /* efeito suave */
}

.contato-block .linky i,
.contato-block .whatslink i {
    margin-right: 6px;
}

/* Hover laranja */
.contato-block .linky:hover,
.contato-block .whatslink:hover {
    color: #EBA401 !important;
}

/* Links dentro de contact-link */
.contato-block .linky.contact-link,
.contato-block .whatslink.contact-link {
    display: block;          /* ocupa toda largura */
    padding: 4px 0;          /* altura controlada */
    color: #36231B;          /* cor normal */
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;        /* evita que fique muito apertado */
}

.contato-block .linky.contact-link:hover,
.contato-block .whatslink.contact-link:hover {
    color: #E2A200 !important;
}

.contato-block .linky.contact-link:hover i,
.contato-block .whatslink.contact-link:hover i {
    color: #E2A200 !important;
}

/* Títulos */
.contato-block h3 {
    color: #E2A200;
    font-weight: bold;
}

.contato-block h3:first-child {
    margin-top: 0;
}

/* Parágrafos */
.contato-block p:first-of-type {
    margin-top: 0;
}

/* Ajuste específico */
.contato-block .left {
    margin-top: -25px; /* sobe 25px */
}

/* Formulário de eventos */
.contato-block form .form-group {
    margin-bottom: 12px;
}

.contato-block form input,
.contato-block form select,
.contato-block form textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95em;
    box-sizing: border-box;
}

.contato-block form textarea {
    resize: vertical;
}

.contato-block form button.btn-enviar {
    background-color: #36231B;
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contato-block form button.btn-enviar:hover {
    background-color: #251814;
}

/* Responsivo */
@media (max-width: 768px) {
    .contato-block .left,
    .contato-block .right {
        width: 100% !important;
        float: none !important;
        margin-bottom: 20px;
    }

    .contato-block .right img {
        width: 100%;
        height: auto;
    }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-search,
.btn-search2 {
    display: inline-block;
    text-align: center;
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: normal;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Botões principais */
.btn-search { 
    background-color: #DC0D25; 
    color: #FFFFFF; 
}

.btn-search:hover { 
    background-color: #F6E708; 
    color: #F3A71E; 
}

.btn-search2 { 
    background-color: #F3A71E; 
    color: #103c6a; 
}

.btn-search2:hover { 
    background-color: #F6E708; 
    color: #103c6a; 
}

/* Faixa laranja */
.wrapper.coloured {
    background-color: #EBA401 !important; /* laranja */
    color: #FFFFFF;
    padding: 0px 0;
}

/* Botão marrom escuro dentro da faixa laranja */
.wrapper.coloured .btn-search {
    background-color: #38231C !important; /* marrom escuro */
    color: #FFFFFF !important;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wrapper.coloured .btn-search:hover {
    background-color: #EDEAE9 !important;
    color: #38231C !important;
}

/* Texto principal da faixa laranja */
.wrapper.coloured h6 {
    color: #38231C !important; /* marrom escuro */
    margin: 0;
    font-weight: 600;
    line-height: 1.2;
}

/* =========================================================
    FAIXA LARANJA
   ========================================================= */

/* Remove espaços extras do container acima */
.wrapper.row3 .hoc.container {
    padding-bottom: 10px !important; /* reduz o espaço */
}

/* Remove margem padrão do último parágrafo */
.wrapper.row3 p:last-child {
    margin-bottom: 5px !important;
}

/* Remove espaço acima das imagens */
.wrapper.row3 section.hoc.container.clear {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Altura e espaçamento corretos da faixa */
.wrapper.coloured {
    padding: 0px 0px !important; /* menos alto, mais elegante */
}

/* Alinhamento moderno do conteúdo */
.wrapper.coloured article {
    display: flex;
    align-items: center;      /* ✅ centraliza verticalmente */
    justify-content: space-between;
    gap: 10px;
    text-align: left;
    min-height: 60px;         /* ✅ evita ficar muito achatado */
}

/* Remove grid antigo que atrapalhava */
.wrapper.coloured .three_quarter,
.wrapper.coloured .one_quarter {
    width: auto !important;
    float: none !important;
}

/* Botão ligeiramente maior e mais alinhado */
.wrapper.coloured .btn-search {
    padding: 10px 24px !important;
    font-size: 1.15rem;
}

/* ✅ Responsivo */
@media (max-width: 768px) {
    .wrapper.coloured article {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .wrapper.coloured .one_quarter {
        width: 100%;
        justify-content: center;
    }
}

/* ✅ Remover margens e altura exagerada do título da faixa */
.wrapper.coloured h5 {
    margin: 0 !important;
    line-height: 1.2 !important;
    padding: 0 !important;
}

/* =========================================================
   LAYOUT FLEX / CONTAINERS
   ========================================================= */
.one_quarter,
.one_quarter2 {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .one_quarter,
    .one_quarter2 {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   MAPA / CONTAINERS
   ========================================================= */
.map-container {
  position: relative;
  width: 100%;
  padding-bottom:60%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* =========================================================
   HERO SLIDESHOW CSS PURO
   ========================================================= */
.wrapper.bgded.coloured1 {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.wrapper.bgded.coloured1 .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 20s infinite;
  z-index: 1;
}

.wrapper.bgded.coloured1 .slide:nth-child(1) { animation-delay: 0s; }
.wrapper.bgded.coloured1 .slide:nth-child(2) { animation-delay: 5s; }
.wrapper.bgded.coloured1 .slide:nth-child(3) { animation-delay: 10s; }
.wrapper.bgded.coloured1 .slide:nth-child(4) { animation-delay: 15s; }

@keyframes fade {
  0%, 24.99% { opacity: 1; }
  25%, 100% { opacity: 0; }
}

.wrapper.bgded.coloured1::after {
  content: "";
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background-color: rgba(0,0,0,0.1);
  z-index: 2;
}

.wrapper.bgded.coloured1 > * {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #EBA401;
}

/* =========================================================
    BLOCO BRANCO ABAIXO DA IMAGEM
   ========================================================= */

article figure {
    margin: 0;
    display: block;
}

/* Bloco branco abaixo da imagem */
.excerpt {
    background-color: #fff;      /* fundo branco */
    min-height: 30px;            /* altura mínima */
    display: flex;
    flex-direction: column;
    justify-content: center;     /* centraliza verticalmente */
    align-items: center;         /* centraliza horizontalmente */
    padding: 15px 8px;           /* espaçamento interno */
    box-sizing: border-box;
    text-align: center;          /* centraliza multiline */
}

/* Título dentro do bloco */
.excerpt h6 {
    margin: 0;                   /* remove margens padrão */
    line-height: 1.2em;
}

/* Remove qualquer gap entre a imagem e o bloco branco */
figure {
    margin-bottom: 0;
}


/* =========================================================
   GALERIA OCULTA
   ========================================================= */

/* Galeria Oculta */
#gallery-container {
  display: none;
  margin-top: 20px;
}
/* =========================================================
   WHATSAPP
   ========================================================= */
.whatsapp-fixo .whatsapp {
    width: 55px !important;
    height: 55px !important;
    display: block;
    object-fit: contain; /* mantém proporção */
}

/* =========================================================
   ICONS
   ========================================================= */
.icon-maracaju {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 25px;
}
.icon-maracaju img {
  width: 65px !important;
  height: 65px !important;
  display: block;
  object-fit: contain;
}
.icon-ifood {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}
.icon-ifood img {
  width: 65px !important;
  height: 65px !important;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.icon-ifood img:hover {
  transform: scale(1.1);
}
.social-item,
.social-item1 {
  text-align: center;
}
.social-item a,
.social-item1 a {
  display: inline-block;
  text-decoration: none;
  color: #36231B;
}
.social-item img {
  width: 80px !important;
  height: 80px !important;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px auto;
}
.social-item1 img {
  width: 90px !important;
  height: 90px !important;
  object-fit: contain;
  display: block;
  margin: 0 auto 8px auto;
}
.social-item a:hover img,
.social-item1 a:hover img {
  transform: scale(1.08);
  transition: transform 0.3s ease;
}
.social-item:hover,
.social-item a:hover,
.social-item1:hover,
.social-item1 a:hover {
  background: none !important;
  box-shadow: none !important;
}
@media (max-width: 768px) {
  .social-item,
  .social-item1 {
    width: 50% !important;
    margin-bottom: 20px;
  }
}
/* Centralizar ícones sociais em telas pequenas - 1 por linha */
@media (max-width: 768px) {
  .group.btmspace-50.demo {
    display: flex !important;
    flex-direction: column; /* um abaixo do outro */
    align-items: center;    /* centraliza horizontalmente */
    gap: 15px;
  }

  .group.btmspace-50.demo .one_quarter {
    width: 100% !important; /* cada ícone ocupa toda largura */
    float: none !important;
    margin: 0 auto;
    text-align: center;
  }

  .social-item img {
    margin: 0 auto 8px auto; /* garante centralização da imagem */
  }

  .social-item span {
    display: block;
    text-align: center;
  }
}

/* =========================================================
   GRID DE EVENTOS SEM HOVER - DEFINITIVO
   ========================================================= */
ul.top3-fixo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;               /* distância entre os blocos */
  padding: 0;
  margin: 10px auto 0px auto; /* margem superior e inferior controladas */
  list-style: none;
}

ul.top3-fixo li {
  flex: 1 1 300px;         /* mínimo 300px, flexível */
  max-width: 348px;
  border: 1px solid #ccc;
  background: #ffffff;
  display: flex;
  flex-direction: column;   /* imagem em cima, texto abaixo */
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* sombra suave */
  transform: none !important;
  transition: none !important;
}

ul.top3-fixo li img {
  width: 100%;
  height: 220px;          /* altura controlada */
  object-fit: cover;
  display: block;
  border: none;
  transform: none !important;
  transition: none !important;
}

ul.top3-fixo li .evento-texto {
  padding: 16px 14px;
  background: #ffffff;
  text-align: center;
}

ul.top3-fixo li .evento-texto h3 {
  font-size: 1em;
  color: #103c6a;
  font-weight: bold;
  margin-bottom: 6px;
}

ul.top3-fixo li .evento-texto p {
  font-size: 0.95em;
  color: #333;
  line-height: 1.4;
  margin: 0;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  ul.top3-fixo {
    margin: 10px auto 20px auto;
    gap: 15px;
  }

  ul.top3-fixo li {
    flex: 1 1 100%;
    max-width: 100%;
  }

  ul.top3-fixo li img {
    height: 200px;
  }
}

/* Garantir que hover não altere nada */
ul.top3-fixo li:hover,
ul.top3-fixo li img:hover {
  transform: none !important;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15) !important;
}
/* =========================================================
   GRID DE EVENTOS - HOVER SUAVE
   ========================================================= */
ul.top3-fixo li,
ul.top3-fixo li img {
  transform: scale(1);              /* estado inicial */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* transição suave */
}

ul.top3-fixo li:hover,
ul.top3-fixo li img:hover {
  transform: scale(1.02);           /* aumenta levemente */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); /* sombra levemente maior */
}
/* =========================================================
   FOOTER
   ========================================================= */
footer {
    background-color: #7C4C00;
    color: #fff;
    padding: 5px;
    font-size: 15px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-column a:hover {
    text-decoration: none;
    color: yellow;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #36231B;
    padding-top: 10px;
}

footer, .footer-bottom {
  margin: 0;
  padding: 0;
}

.footer-bottom {
  background-color: #000000;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
#backtotop {
  background-color: #36231B !important;
  color: #F6E708 !important;
  border-radius: 5px;
  transition: all 0.3s ease;
}
#backtotop:hover {
  background-color: #F6E708 !important;
  color: #36231B !important;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */
/* Para navegadores baseados em WebKit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 0px;  /* largura da barra horizontal */
    height: 0px; /* altura da barra vertical */
}

/* Para Firefox */
html {
    scrollbar-width: none; /* esconde a barra */
    scrollbar-color: transparent transparent; /* opcional */
}

/* Para Internet Explorer / Edge Legacy */
body {
    -ms-overflow-style: none;
}

/* =========================================================
   CSS RECAPTCHA
   ========================================================= */
/* Centraliza o reCAPTCHA e reduz padding */
.recaptcha-wrapper {
    display: flex;
    justify-content: center; /* centraliza horizontalmente */
    align-items: center;     /* centraliza verticalmente, se necessário */
    padding: 5px 0;          /* ajusta o espaçamento em cima e embaixo */
}

/* Se quiser controlar tamanho do reCAPTCHA (opcional) */
.g-recaptcha {
    transform: scale(0.9);   /* diminui o widget para 90% */
    transform-origin: 0 0;   /* mantém no canto superior esquerdo do container */
}

