/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #0f1a2c;
}

/* HEADER */
.header {
    width: 100%;
    background: linear-gradient(90deg, #0f1a2c, #0c1624);
    padding: 18px 8%;
    position: relative;
    z-index: 1000;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo img {
    height: 125px;
    transition: 0.4s ease;
}

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

/* MENU */
.menu {
    list-style: none;
    display: flex;
    gap: 40px;
}

.menu li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 500;
    position: relative;
    transition: 0.3s ease;
}

/* Hover elegante */
.menu li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #d4af37;
    transition: 0.3s ease;
}

.menu li a:hover {
    color: #d4af37;
}

.menu li a:hover::after {
    width: 100%;
}

/* BOTÃO CONTATO */
.btn-contato {
    background: linear-gradient(135deg, #7da9cc, #5e8cb5);
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: 0.4s ease;
    display: inline-block;
}

.btn-contato:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #5e8cb5, #7da9cc);
}

/* MENU MOBILE */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* RESPONSIVO */
/* ===== RESPONSIVO (mobile premium) ===== */
@media (max-width: 1024px){

  .header{
    padding: 8px 6%; /* ainda menor no mobile */
  }

  .logo img{
    height: 130px;   /* logo grande no mobile */
    margin: -10px 0; /* reduz altura do header */
  }

  /* esconde nav desktop */
  .nav{
    position: relative;
  }

  .menu{
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(241px, 86vw);
    flex-direction: column;

    /* visual premium */
    background: rgba(15,26,44,0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    padding: 14px;
    gap: 10px;

    /* animação (em vez de display none) */
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
    box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  }

  .menu.active{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* links no mobile */
  .menu li a{
    display: flex;
    width: 100%;
    padding: 12px 12px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
  }

  .menu li a:hover{
    background: rgba(212,175,55,0.10);
  }

  .menu li a::after{
    display: none; /* no mobile fica mais clean */
  }

  .menu-toggle{
    display: grid;
  }

  .cta{
    display: none;
  }
}

.hero-slider{
  position: relative;
  width: 100%;
  min-height: 520px;
  height: clamp(520px, 62vh, 760px);
  overflow: hidden;
  background: #0b1320;
}

/* track */
.hero-slider__track{
  position: relative;
  width: 100%;
  height: 100%;
}

/* slide */
.hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 1200ms ease;
  will-change: opacity, transform;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
}

.hero-slide.is-active{
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

/* overlay (igual ao seu print: escuro à esquerda + leve vignette) */
.hero-slide__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 20% 50%, rgba(0,0,0,0.55), rgba(0,0,0,0.15) 55%, rgba(0,0,0,0.25) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.30) 45%, rgba(0,0,0,0.05) 100%);
}

/* content */
.hero-slide__content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 0 8%;
  max-width: 760px;
}

.hero-slide__content h1{
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
}

.hero-slide__content p{
  color: rgba(255,255,255,0.85);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
  max-width: 560px;
}

/* button */
.hero-slide__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 14px 22px;
  margin-top: 10px;
  background: #7da9cc;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 2px;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.hero-slide__btn:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 16px 45px rgba(0,0,0,0.45);
}

/* arrows */
.hero-slider__arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  z-index: 5;
  display: grid;
  place-items: center;
  font-size: 34px;
  line-height: 0;
  color: #fff;
  background: rgba(15,26,44,0.55);
  backdrop-filter: blur(6px);
  transition: transform .2s ease, background .2s ease, opacity .2s ease;
  opacity: 0.85;
}

.hero-slider__arrow:hover{
  background: rgba(15,26,44,0.80);
  transform: translateY(-50%) scale(1.06);
  opacity: 1;
}

.hero-slider__arrow--prev{ left: 16px; }
.hero-slider__arrow--next{ right: 16px; }

/* dots */
.hero-slider__dots{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 6;
}

.hero-slider__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,0.35);
  transition: width .25s ease, background .25s ease, transform .25s ease;
}

.hero-slider__dot:hover{
  transform: scale(1.15);
  background: rgba(255,255,255,0.55);
}

.hero-slider__dot.is-active{
  width: 26px;
  background: rgba(212,175,55,0.95);
}

/* progress */
.hero-slider__progress{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  z-index: 7;
  background: rgba(255,255,255,0.10);
}

.hero-slider__progress-bar{
  height: 100%;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  background: rgba(212,175,55,0.95);
}

/* responsive refinements */
@media (max-width: 768px){
  .hero-slide__content{
    padding: 0 6%;
    max-width: 92%;
    height: 71%;
  }
  .hero-slider__arrow{
    width: 42px;
    height: 42px;
    font-size: 30px;
  }
}



@media (max-width: 480px){
  @media (max-width: 768px){
  .hero-slider{
    height: 80vh;      /* aumenta altura */
    min-height: 650px; /* garante que não fique baixo */
  }
}


  .hero-slide__content p{
    max-width: 100%;
  }
}

@media (max-width: 768px){
  .hero-slide{
    background-size: 140%;   /* aumenta zoom */
    background-position: center top;
  }
}



.areas{
  background: radial-gradient(1200px 600px at 50% 0%, rgba(255,255,255,0.03), transparent 60%),
              linear-gradient(180deg, #0b1320 0%, #0a111c 100%);
  padding: 70px 0 55px;
  color: #fff;
}

.areas__container{
  width: min(1180px, 92%);
  margin: 0 auto;
}

.areas__header{
  margin-bottom: 28px;
}

.areas__kicker{
  display: inline-block;
  font-size: 16px;
  letter-spacing: 1px;
  color: #d4af37;
  margin-bottom: 6px;
}

.areas__title{
  font-size: 34px;
  letter-spacing: 1px;
  font-weight: 800;
}

/* grid */
.areas__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 26px;
}

/* card */
.area-card{
  border: 1px solid rgba(255,255,255,0.30);
  padding: 28px 24px;
  min-height: 260px;
  background: rgba(10,17,28,0.25);
  backdrop-filter: blur(2px);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
  position: relative;
  overflow: hidden;
}

.area-card::before{
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(600px 200px at 20% 20%, rgba(212,175,55,0.12), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.area-card:hover{
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.55);
  background: rgba(10,17,28,0.35);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

.area-card:hover::before{
  opacity: 1;
}

.area-card__title{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
}

.area-card__title span{
  display: inline-block;
  color: #7da9cc; /* azul do print */
  font-weight: 800;
}

.area-card--highlight .area-card__title span{
  color: #7da9cc;
}

.area-card__text{
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  font-size: 16px;
  max-width: 420px;
}

/* setinha */
.areas__more{
  margin: 26px auto 0;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(10,17,28,0.18);
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.areas__more:hover{
  transform: translateY(2px);
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  background: rgba(10,17,28,0.32);
}

.areas__more:disabled{
  opacity: 0.65;
  cursor: not-allowed;
}

.areas__more-icon{
  font-size: 22px;
  color: rgba(255,255,255,0.9);
  transition: transform .25s ease;
}

.areas__more:hover .areas__more-icon{
  transform: translateY(2px);
}

/* loading micro feedback */
.areas__more.is-loading .areas__more-icon{
  animation: areasPulse 0.9s ease-in-out infinite;
}

@keyframes areasPulse{
  0%,100%{ transform: scale(1); opacity: 0.85; }
  50%{ transform: scale(1.18); opacity: 1; }
}

/* quando terminou: vira "voltar" */
.areas__more.is-done{
  border-color: rgba(212,175,55,0.65);
}

/* responsive */
@media (max-width: 980px){
  .areas__grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
}

@media (max-width: 620px){
  .areas{
    padding: 55px 0 45px;
  }
  .areas__title{
    font-size: 28px;
  }
  .areas__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .area-card{
    min-height: auto;
  }
}

.news{
  position: relative;
  padding: 70px 0;
  overflow: hidden;
  color: #fff;
  background: #0b1320; /* fallback */
}

/* Background (coloque sua imagem aqui) */
.news__bg{
  position: absolute;
  inset: 0;
  background:
    url("img/noticias.webp") center/cover no-repeat;
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.02);
}

/* Overlay pra ficar igual ao print (escuro com vinheta) */
.news__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 20% 50%, rgba(0,0,0,0.55), rgba(0,0,0,0.30) 60%, rgba(0,0,0,0.55) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.40) 55%, rgba(0,0,0,0.25) 100%);
}

.news__container{
  position: relative;
  z-index: 2;
  width: min(1180px, 92%);
  margin: 0 auto;
}

/* Header */
.news__header{
  margin-bottom: 28px;
}

.news__kicker{
  display: inline-block;
  font-size: 16px;
  letter-spacing: 1px;
  color: #d4af37;
  margin-bottom: 6px;
}

.news__title{
  font-size: 34px;
  letter-spacing: 1px;
  font-weight: 800;
}

/* Layout das notícias */
.news__list{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Card */
.news-card{
  padding: 0;
  max-width: 720px;
}

.news-card__headline{
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.2px;
  margin-bottom: 14px;
  text-shadow: 0 10px 30px rgba(0,0,0,0.55);
}

.news-card__excerpt{
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  font-size: 16px;
  max-width: 680px;
  margin-bottom: 16px;
}

/* Link “ver mais >” com hover premium */
.news-card__link{
  display: inline-flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: rgba(255,255,255,0.92);
  font-weight: 700;
  letter-spacing: 0.2px;
  position: relative;
  transition: transform .22s ease, color .22s ease;
}

.news-card__link::after{
  content:"";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: rgba(212,175,55,0.95);
  transition: width .25s ease;
}

.news-card__link:hover{
  color: #d4af37;
  transform: translateX(2px);
}

.news-card__link:hover::after{
  width: 100%;
}

/* Responsivo */
@media (max-width: 980px){
  .news__list{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-card__headline{
    font-size: 24px;
  }
}

@media (max-width: 520px){
  .news{
    padding: 55px 0;
  }
  .news__title{
    font-size: 28px;
  }
  .news-card__headline{
    font-size: 22px;
  }
}

.about{
  background: linear-gradient(180deg,#0b1320 0%, #0a111c 100%);
  padding: 90px 0;
  color: #fff;
}

.about__container{
  width: min(1180px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ===== IMAGEM (MONTAGEM) ===== */
.about__collage{
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.10);
}

.about__collage img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.05);
  transition: transform .45s ease, filter .45s ease;
}

/* hover premium */
.about__collage:hover img{
  transform: scale(1.04);
  filter: grayscale(35%) contrast(1.08);
}

/* leve vinheta (igual ao clima do site) */
.about__collage::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(800px 420px at 20% 50%, rgba(0,0,0,0.30), rgba(0,0,0,0.06) 60%, rgba(0,0,0,0.35) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.03) 50%, rgba(0,0,0,0.18) 100%);
  pointer-events:none;
}

/* ===== TEXTO ===== */
.about__kicker{
  color:#d4af37;
  font-size:16px;
  letter-spacing:1px;
}

.about__title{
  font-size:34px;
  font-weight:800;
  margin:8px 0 18px;
}

.about__content p{
  line-height:1.65;
  margin-bottom:16px;
  color:rgba(255,255,255,0.85);
  max-width: 560px;
}

.about__btn{
  display:inline-block;
  margin-top:10px;
  padding:14px 26px;
  background:#7da9cc;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  letter-spacing:0.5px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  border-radius: 2px;
}

.about__btn:hover{
  background:#6a96ba;
  transform:translateY(-3px);
  box-shadow:0 14px 40px rgba(0,0,0,0.35);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 980px){
  .about__container{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__collage img{
    height: 380px;
  }
}

.contact{
  position: relative;
  padding: 85px 0;
  color: #fff;
  background: #0f1a2c; /* fallback */
  overflow: hidden;
}

/* background */
.contact__bg{
  position: absolute;
  inset: 0;
  background: url("img/contato.webp") center/cover no-repeat;
  filter: saturate(0.9) contrast(1.05);
  transform: scale(1.03);
}

.contact__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 520px at 25% 35%, rgba(0,0,0,0.60), rgba(0,0,0,0.30) 60%, rgba(0,0,0,0.60) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.32) 100%);
}

.contact__container{
  position: relative;
  z-index: 2;
  width: min(1180px, 92%);
  margin: 0 auto;
}

.contact__header{
  margin-bottom: 28px;
}

.contact__kicker{
  display: inline-block;
  font-size: 16px;
  letter-spacing: 1px;
  color: #d4af37;
  margin-bottom: 6px;
}

.contact__title{
  font-size: 34px;
  letter-spacing: 1px;
  font-weight: 800;
}

.contact__subtitle{
  margin-top: 10px;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  line-height: 1.55;
}

/* grid */
.contact__grid{
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

/* info card */
.contact__card{
  background: rgba(10,17,28,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 26px 22px;
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

.contact__card-title{
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact__text{
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin-bottom: 18px;
}

.contact__list{
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.contact__label{
  display: block;
  font-size: 12px;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 3px;
  text-transform: uppercase;
}

.contact__value{
  color: rgba(255,255,255,0.92);
}

.contact__link{
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  transition: color .2s ease;
}
.contact__link:hover{
  color: #d4af37;
}

.contact__actions{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.contact__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.4px;
  background: #7da9cc;
  color: #fff;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.contact__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
  filter: brightness(1.03);
}

.contact__btn--ghost{
  background: rgba(125,169,204,0.14);
  border: 1px solid rgba(125,169,204,0.45);
}

/* form */
.contact__form-wrap{
  background: rgba(10,17,28,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 8px;
  padding: 26px 22px;
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 60px rgba(0,0,0,0.35);
}

.contact__form{
  display: grid;
  gap: 14px;
}

.contact__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact__field{
  display: grid;
  gap: 8px;
}

.contact__field-label{
  font-size: 12px;
  letter-spacing: 0.8px;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
}

.contact__field input,
.contact__field select,
.contact__field textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(5,10,18,0.55);
  color: #fff;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact__field textarea{
  resize: vertical;
  min-height: 130px;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder{
  color: rgba(255,255,255,0.45);
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus{
  border-color: rgba(212,175,55,0.55);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.10);
}

.contact__footer{
  margin-top: 6px;
  display: grid;
  gap: 10px;
}

.contact__submit{
  width: fit-content;
  padding: 14px 22px;
  border: 0;
  border-radius: 6px;
  background: #7da9cc;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.contact__submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 46px rgba(0,0,0,0.38);
  filter: brightness(1.03);
}

.contact__fineprint{
  font-size: 12px;
  color: rgba(255,255,255,0.62);
  line-height: 1.4;
}

/* toast */
.contact__toast{
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 6px;
  border: 1px solid transparent;
  background: rgba(5,10,18,0.55);
  color: rgba(255,255,255,0.92);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
}

.contact__toast.is-show{
  opacity: 1;
  transform: translateY(0);
}

.contact__toast.is-ok{
  border-color: rgba(125,169,204,0.55);
}

.contact__toast.is-bad{
  border-color: rgba(212,175,55,0.55);
}

/* responsivo */
@media (max-width: 980px){
  .contact__grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px){
  .contact{
    padding: 65px 0;
  }
  .contact__title{
    font-size: 28px;
  }
  .contact__row{
    grid-template-columns: 1fr;
  }
}

.whatsapp-float{
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  z-index: 9999;
  transition: transform .3s ease, box-shadow .3s ease;
  text-decoration: none;
}

/* Hover premium */
.whatsapp-float:hover{
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

/* Efeito pulsante elegante */
.whatsapp-float::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  background:#25D366;
  animation: whatsappPulse 2s infinite;
  z-index:-1;
}

@keyframes whatsappPulse{
  0%{
    transform: scale(1);
    opacity: 0.7;
  }
  70%{
    transform: scale(1.6);
    opacity: 0;
  }
  100%{
    opacity: 0;
  }
}

/* Tooltip */
.whatsapp-tooltip{
  position: absolute;
  right: 75px;
  background: #0b1320;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 14px;
  opacity: 0;
  transform: translateX(10px);
  transition: all .25s ease;
  white-space: nowrap;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.15);
}

.whatsapp-float:hover .whatsapp-tooltip{
  opacity: 1;
  transform: translateX(0);
}

/* Responsivo */
@media (max-width: 768px){
  .whatsapp-tooltip{
    display:none;
  }

  .whatsapp-float{
    width: 55px;
    height: 55px;
    right: 18px;
    bottom: 18px;
  }
}

/* ===== Ajuste definitivo de altura do HERO no mobile ===== */
@media (max-width: 768px){
  .hero-slider{
    height: 58vh !important;     /* era 80vh */
    min-height: 250px !important;/* era 650px */
    max-height: 270px !important;/* limita pra não estourar */
  }
}

/* telas bem pequenas */
@media (max-width: 480px){
  .hero-slider{
    height: 52vh !important;
    min-height: 200px !important;
    max-height: 230px !important;
  }

  .hero-slide__content h1 {
    font-size: 22px !important;
    padding-top: 70px;
}

@media (max-width: 1024px){
  .menu{
    display: none; /* esconde de verdade no load */
  }
  .menu.active{
    display: flex; /* só aparece quando abrir */
  }
}