:root{
  --orange: #FA8408;
  --blue: #225282;
  --blue-2: #2A4572;
  --muted: #6b7280;
  --bg: #f6f8fb;
  --card: #ffffff;
  --radius: 12px;
  --max-w: 1200px;
}
*{
  box-sizing:border-box}
html,body{
  height:100%}
body{
  margin:0;
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background:var(--bg);
  color:#111827;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
}




/* Section general */
.section{
    padding:64px 0
  }
.section-head{ 
   text-align:center;
   margin-bottom:28px
   }
.section h2{
   font-size:clamp(20px,2.8vw,30px);
   color:var(--blue-2);
   margin-bottom:8px
   }
.muted{
  color:var(--muted)
  }








/*----------------------------------------------------------------------------------------------*/

/* wrapper central */
.wrap{
  width:90%;
  max-width:var(--max-w);
  margin:0 auto;
}

/*INICO DO STYLE DO MENU DA PAGINA */
/* Header */
.site-header{
  background:linear-gradient(90deg,var(--blue) 0%, var(--blue-2) 100%);
  color:white;
  position:sticky;
  top:0;
  z-index:998;
}
.site-header .wrap{
  display:flex;
  align-items:center;
  gap:20px;
  padding:14px 0;
}
.brand img{
  height:80px;
  width: 130px;
  display:block;
  }
.nav-toggle{
  display:none;
  background:transparent;
  border:0;
  color:white;
  font-size:22px;
}
.main-nav ul{
  list-style:none;
  display:flex;
  gap:12px;
  margin-left:auto;
}
.main-nav a{
  color:white;
  text-decoration:none;
  padding:8px 12px;
  font-weight:600;
  border-radius:8px;
}
.main-nav a:hover{ 
  background:rgba(255,255,255,0.08)}
/* mobile */
@media (max-width:900px){
  .nav-toggle{
    display:block; 
    margin-left:auto}
  .main-nav{
    position:fixed;
    inset:64px 12px auto auto;
    background:linear-gradient(180deg,var(--blue-2),var(--blue));
    border-radius:10px;
    padding:12px;
    display:none;
    width:220px;
  }
  .main-nav.open{
    display:block
    }
  .main-nav ul{
    flex-direction:column
    }
  .main-nav a{
    display:block
    }
}



/*----------------------------------------------------------------------------------------------*/


/*INICO DO BANNER DO MENU DA PAGINA */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 500px;
}
.hero-slider{
  width: 100%;
  height: 100%;
}
.hero-slide{
  width: 100%;
  height: 100%;
}
.hero-slide img{
  width: 100%;
  height: 100%;
}
.hero-slide {
  display: none;
}
.hero-slide.is-active {
  display: block;
}
@media (max-width: 900px) {
    .hero{
      height: 250px;
    }
    .hero-slide img {
      max-height: 250px;
    }
}


  

/*INICIO DO STYLE DO BANNER ICONE ANTERIOR E PROXIMO*/
/* controls */
.hero-controls{
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:12px;
  align-items:center;
}
.ctrl{
  background:rgba(255,255,255,0.12);
  color:white;
  border:none;
  padding:8px 12px;
  border-radius:8px;
  font-size:20px;
  cursor:pointer;
}
/*INICIO DO STYLE DO OLINHA DO BANNER  ANTERIOR E PROXIMO*/
/* dots */
.dots{
  display:flex;
   gap:8px}
.dots button{
  width:10px;
  height:10px;
  border-radius:50%;
  border:0;
  background:rgba(255,255,255,0.45);
}
.dots button.is-active
{background:var(--orange)}







/*-------------------------------------------------------------------------------------------------*/



/* ====== Bandeiras ====== */
.flags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  position: relative;
  text-align: center;
}
.flag:hover {
  transform: translateY(-5px);
}
/* ====== Imagem ====== */
.flag img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

.flag:hover img {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* ====== Nome ====== */
.flag h3 {
  margin-top: 12px;
  font-size: 1.1rem;
  color: #14213d;
  transition: color 0.3s ease;
}

/* ====== Botão "Saiba mais" ====== */
.card-link {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #0077ff;
  text-decoration: none;
  font-weight: 600;
  background: transparent;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #0077ff;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

/* Aparece suavemente no hover */
.flag:hover .card-link {
  opacity: 1;
  transform: translateY(0);
}

/* Efeito hover do botão */
.card-link:hover {
  background: #0077ff;
  color: #fff;
}
/* Para telas menores que 600px */
@media (max-width: 600px) {
  .flag .card-link {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}




/* ====== MODAL ====== */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9990;
  width: 100%;
  height: 90%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  overflow: auto;
}

.modal-content {
  background: #fff;
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  margin: 20px;
  text-align: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

/* imagem no meio certinho */
.modal-content img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 15px 0;
}

/* texto normal, sem absolute */
#modal-text {
  font-size: 18px;
  margin-top: 10px;
}

/* botão fechar no final, alinhado */
#closeModal {
  display: block;
  margin-top: 20px;
  font-size: 20px;
  cursor: pointer;
  color: #333;
  font-weight: bold;
}

#closeModal:hover {
  color: #000;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}




/* ABOUT / VIDEO SECTION */
.about-grid {
  display: grid;
  grid-template-columns: auto 1fr; /* vídeo à esquerda, texto à direita */
  gap: 28px;
  align-items: start;
}
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  border-radius: 15px;
  overflow: hidden;
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}
.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00000011;
  color: white;
  border: none;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#videoToggle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00000099;
  color: white;
  opacity: 1;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Botão quase transparente quando vídeo está tocando */
.video-wrapper.hide-btn #videoToggle {
  opacity: 0.1;
  background: rgba(0, 0, 0, 0.2);
}

/* Volta a ficar visível ao passar o mouse, mesmo tocando */
.video-wrapper.hide-btn #videoToggle:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.7);
  transform: translate(-50%, -50%) scale(1.1);
}

#videoToggle:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translate(-50%, -50%) scale(1.1);
}

#videoToggle:active {
  transform: translate(-50%, -50%) scale(0.95);
}

/* Bullets */
.bullets {
  list-style: disc;
  padding-left: 20px;
  color: var(--muted);
}

/* RESPONSIVO - mobile/tablet */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .video-wrapper {
    margin: 0 auto;
    width: 80%;
    max-width: 320px;
  }
  .about-content {
    text-align: left;
  }
}
/*----------------------fim do style video e texto----------------------------------------------------------------------------*/







/* gallery mini slider */
.gallery .mini-slider{
  position:relative; 
  overflow:hidden;
  border-radius:12px;
  display:flex;
  gap:8px}
.gallery .mini-slider img{
  width:100%; 
  height:200px; 
  object-fit:cover; 
  border-radius:8px}
.mini-controls{
  position:absolute; 
  right:12px; 
  top:12px; 
  display:flex; 
  gap:6px}
.mini-controls button{
  background:rgba(255,255,255,0.9); 
  border:0; 
  padding:6px 8px; 
  border-radius:6px; 
  cursor:pointer
  }



/*---------------------------------------------------------------------------------------------------*/


/* map */
.map-wrap iframe{
  width:100%; 
  height:400px; 
  border-radius:12px; 
  border:0
  }


/*---------------------------------------------------------------------------------------------------*/


/* footer */
.site-footer{
  background:linear-gradient(180deg,var(--blue-2),var(--blue));
  color:white; 
  padding:36px 0 14px 0
  }
.footer-grid{
  display:grid; 
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); 
  gap:18px}
.footer-grid h3{
  margin-top:0
  }
.footer-grid a{
  color: #ededed;
}
.socials img{
  height:30px;
  margin-right:8px
  }

/* footer bottom */
.footer-bottom{
  padding-top:20px; 
  text-align:center; 
  opacity:0.9; 
  font-size:0.9rem}

/* whatsapp FAB */
.whatsapp-fab{
  position:fixed; 
  right:18px; 
  bottom:18px; 
  z-index:900;
  display:block; 
  width:62px; 
  height:62px; 
  border-radius:50%; 
  overflow:hidden;
  box-shadow:0 8px 24px rgba(2,6,23,0.18);
}
.whatsapp-fab img{
  width:100%; 
  height:100%; 
  display:block}

/* utilities */
.btn{
  display:inline-block; 
  padding:10px 18px; 
  border-radius:10px; 
  font-weight:700; 
  text-decoration:none
  }
.btn-primary{
  background:var(--orange); 
  color:white}
.btn-outline{
  border:2px solid rgba(0,0,0,0.06); 
  background:transparent; 
  color:white}

/* responsive adjustments */
@media (max-width:900px){
  .hero-inner{padding:30px 0}
  .about-grid{grid-template-columns:1fr}
  .hero-controls{bottom:12px}
  .hero-slide img{height:48vh}
}


/*SubPaginas*/
.imgIngles{
  width: 100%;
  margin: 10px auto;     
  border-radius: 2px;   
  overflow: hidden;      
  touch-action: pinch-zoom; /* permite pinça */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18); 
}

.imgIngles img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
  touch-action: pinch-zoom; /* permite pinça */
}
.imgIngles:hover img{
  transform: scale(1.05);
}
