* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    html,
    body {
      height: 100%;
	  overflow-x: hidden;
  	  width: 100%;
    }

    body {
      background: #ffffff;
      color: #1d1d1d;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }


    /* ================= HEADER ================= */
	
	.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 60px;
}
	
    header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(15px);
  z-index: 1100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

    header h2 {
      font-weight: 600;
      color: #0063d4;
      user-select: none;
    }

    /* ====================== MENU DESKTOP ====================== */
nav.desktop {
  display: flex;
  gap: 15px; /* aumentei o espaçamento entre os links */
  align-items: center;
}

nav.desktop a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s ease;
}

/* Efeito de underline animado */
nav.desktop a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: #00975c; /* cor do destaque */
  transition: width 0.3s ease;
}

/* Hover: muda a cor do texto e anima o underline */
nav.desktop a:hover {
  color: #00975c;
}

nav.desktop a:hover::after {
  width: 100%;
}


    /* MOBILE MENU BUTTON */
    .burger {
      display: none;
      width: 36px;
      height: 24px;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
    }

    .burger div {
      height: 3.5px;
      background: #00975c;
      border-radius: 6px;
      transition: transform .28s ease, opacity .18s ease;
    }

    .burger.active .b1 {
      transform: rotate(45deg) translate(9px, 9px);
    }

    .burger.active .b2 {
      opacity: 0;
      transform: translateX(-10px);
    }

    .burger.active .b3 {
      transform: rotate(-45deg) translate(5px, -5px);
    }

    .mobile-menu {
  display: none;
  position: fixed; /* ← antes era absolute */
  left: 0;
  right: 0;
  top: 80px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform-origin: top;
  transform: scaleY(0);
  transition: transform .28s cubic-bezier(.2, .9, .2, 1);
  z-index: 2000; /* ← garante que fica na frente */
  overflow: hidden;
}

    .mobile-menu.open {
      transform: scaleY(1);
    }

    .mobile-menu a {
      display: block;
      padding: 16px 24px;
      border-bottom: 1px solid #f1f1f1;
      text-decoration: none;
      color: #333;
      font-weight: 600;
    }


    /* ================= HERO / BANNER ================= */
    .hero {
  background: #009a58;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 40px; /* espaço por causa do header fixo */
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

    .banner-text {
      flex: 1;
      min-width: 350px;
      animation: fadeUp 1.2s ease;
    }

    .banner-text h1 {
      font-size: 3.2rem;
      color: #a4d43b;
      line-height: 1.1;
      margin-bottom: 14px;
      font-weight: 700;
    }

    .banner-text p {
      font-size: 1.2rem;
      margin-bottom: 26px;
      color: #fff;
    }

    .banner {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      width: 100%;
    }

    .banner-left {
      flex: 1;
      min-width: 300px;
    }

    .banner-left h2 {
      color: #0b4ca8;
      font-size: 1.9rem;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .banner-left p {
      color: #444;
      margin-bottom: 16px;
    }


    /* FORM */
    .banner-form {

      background: #fff;
      padding: 18px;
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
      animation: fadeUp .9s ease;
    }

    .banner-form input {
      width: 100%;
      padding: 12px 10px;
      margin-bottom: 10px;
      border-radius: 8px;
      border: 1px solid #e0e0e0;
      font-size: 0.95rem;
      transition: box-shadow .25s ease, transform .25s ease;
    }

    .banner-form input:focus {
      box-shadow: 0 0 0 3px rgba(0, 118, 255, 0.25);
      transform: translateY(-2px);
    }

    .banner-form button {
      width: 100%;
      padding: 12px;
      background: rgba(65, 21, 100, 1);
      color: #fff;
      border: none;
      border-radius: 8px;
      font-weight: 700;
      cursor: pointer;
    }
	
	.banner-form button:hover{
	  background: rgb(115 65 155);	
	}


    /* IMAGEM */
    .banner-right img {
      width: 598px;
	  height: 536px;
      max-width: 100%;
      border-radius: 16px;
      /*box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);*/
      transition: .3s ease;
    }

    .banner-right img:hover {
      transform: scale(1.04);
    }


    /* ANIMAÇÃO */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


    /* ================= SEÇÕES ================= */
    .section {
      max-width: 1250px;
      margin: 140px auto;
      padding: 20px;
      opacity: 0;
      transform: translateY(60px);
      transition: 0.9s ease;
    }

    .show {
      opacity: 1 !important;
      transform: translateY(0) !important;
    }

    .section h2 {
      text-align: center;
      font-size: 2rem;
      color: #00975c;
      margin-bottom: 25px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
      margin-top: 20px;
    }

    .card {
      background: #fff;
      padding: 40px;
      border-radius: 22px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
      transition: .3s;
    }

    .card:hover {
      transform: translateY(-8px);
    }


   /* ======================= CTA ======================= */
.cta {
  background: #00975c;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px 6%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.cta-inner {
  z-index: 2; /* para ficar sobre a imagem */
  max-width: 1250px;
  width: 100%;
}

.cta-text {
  max-width: 600px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.cta-text.show {
  opacity: 1;
  transform: translateY(0);
}

.cta-text h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-text p {
  font-size: 1.1rem;
  margin-bottom: 24px;
  line-height: 1.6;
  color: #e0eaff;
}

.cta-text button {
  padding: 16px 42px;
  border-radius: 40px;
  border: none;
  background: #fff;
  color: #00975c;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-text button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ======================= IMAGEM TOTALMENTE À DIREITA ======================= */
.cta-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 50%;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to left, rgba(255,255,255,0) 0%, #00975c 100%), 
              url('https://www.rotaseguros.com.br/unimed/bh/cotacao/imagens/imagem-cta.webp') no-repeat right center;
  background-size: cover;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 1s ease, transform 1s ease;
}

.cta-image.show {
  opacity: 1;
  transform: translateX(0);
}

.img-cta-mob{
	   display:none;	
	}

/* RESPONSIVO */
@media (max-width: 980px) {
	
	.img-cta-mob{
	display: block;
    width: 100vw;         /* ocupa a largura total da tela */
    max-width: 100vw;     
    margin: 0;            /* remove qualquer margem */
    padding: 0;           /* remove padding */
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%); /* garante que fique alinhada à tela */
	   margin-bottom: -80px;
	   height: auto;
	}
	
  .cta {
    flex-direction: column;
    padding: 60px 6%;
    text-align: center;
  }

  .cta-inner {
    max-width: 100%;
  }

  .cta-image {
    position: relative;
    width: 90%;
    margin: 0 auto 40px auto;
    height: auto;
    transform: translateX(0);
    opacity: 1;
  }

  .cta-text h2 {
    font-size: 2.4rem;
  }

  .cta-text p {
    font-size: 1rem;
  }

  .cta-text button {
    width: 70%;
    margin: 20px auto;
  }
}


/*********/

.caixa-bot-cot{
   display:none;	
}

   /* ================= MOBILE ================= */
@media (max-width: 980px) {
	
	.caixa-bot-cot{
   display:block;	
	}
	
	.btn-cotacao-mobile{
	background: rgba(65, 21, 100, 1);
    color: white;
    padding: 14px 18px;
    margin-top: 0px;
    border-radius: 0;
    font-weight: 600;
    text-align: center;
    display: block;
    position: relative;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3), 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease, transform 0.15s ease;
    text-decoration: none;	
	}

  /* HEADER */
  header {
    padding: 0; /* padding agora fica só no .container */
  }

  .container {
    padding: 0 20px;
  }

  header h2 img {
    max-width: 150px;
    height: 52px;
  }

  nav.desktop {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu {
    display: block;
    top: 132px;
  }

  /* HERO */
  .hero {
    padding-top: 160px; /* respeita o header fixo */
    min-height: auto;
	padding-bottom: 25px;
  }

  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 28px;
  }

  /* TEXTO */
  .banner-text {
    min-width: 100%;
  }

  .banner-text h1 {
    font-size: 2.2rem;
  }

  .banner-text p {
    font-size: 1rem;
  }

  /* FORM */
  .banner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .banner-form {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  /* IMAGEM */
  .banner-right img {
     max-width: 100%;
  height: auto;
  display: block;
  }
}

/* ===== CELULARES PEQUENOS (Galaxy S8 / iPhone SE) ===== */
@media (max-width: 380px) {

  /* HEADER */
  .container {
    padding: 0 16px;
  }

  header h2 img {
    max-width: 135px;
    height: 45px;
  }

  .mobile-menu {
    top: 72px;
  }

  /* HERO */
  .hero {
    padding-top: 155px;
  }

  /* TEXTO */
  .banner-text h1 {
    font-size: 1.9rem;
  }

  .banner-text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* FORM */
  .banner-form {
    max-width: 100%;
    padding: 16px;
  }

  .banner-form input {
    padding: 11px 9px;
    font-size: 0.9rem;
  }

  .banner-form button {
    padding: 12px;
    font-size: 0.95rem;
  }

  /* IMAGEM */
  .banner-right img {
    max-width: 300px;
  }
}

	
	/* ===================== IMAGENS SOBREPOSTAS ===================== */
.info-image .img-large-anim,
.info-image .img-small-anim {
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.14);
  position: absolute;
  opacity: 0;
  transform: translateY(60px) scale(0.95);
  animation: fadeSlideScale 1s forwards;
}

/* Imagem maior */
.info-image .img-large-anim {
  width: 85%; /* imagem maior menor para não dominar a seção */
  top: 0;
  left: 0;
  animation-delay: 0.2s;
}

/* Imagem menor sobreposta */
.info-image .img-small-anim {
  width: 50%;
  bottom: -240px;
  right: 70%;
  border-radius: 15px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  animation-delay: 0.5s;
}

/* Animação fade + slide + scale */
@keyframes fadeSlideScale {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  50% {
    opacity: 0.6;
    transform: translateY(20px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Hover leve */
.info-image:hover .img-large-anim {
  transform: scale(1.02);
  transition: transform 0.4s ease;
}

.info-image:hover .img-small-anim {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

/* Texto da seção com animação */
.info-text {
  flex: 1;
  min-width: 300px;
  animation: fadeUp 1.2s ease;
}

/* FadeUp animation para o texto */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 980px) {
  .info-section .hero-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: left;
  }

  .info-image {
    position: relative;
    height: auto;
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .info-image .img-large-anim {
    width: 70%;
    position: relative; /* relativo para não quebrar layout */
    top: 0;
    left: 0;
    margin-bottom: 25px;
    transform: none; /* remove transform da animação para mobile */
	height: auto;
  }

  .info-image .img-small-anim {
    width: 40%;
    position: absolute; /* sobreposta à maior */
    bottom: 10px;
    right: 8%;
    transform: translateX(50%);
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    animation: fadeSlideScale 1s forwards;
  }

  .info-text button {
    width: 70%;
    margin: 20px auto 0 auto;
    display: block;
  }
}

/* ======================= INVERTE SEÇÃO SOMENTE NO DESKTOP ======================= */
.reverse-section .hero-inner {
    flex-direction: row-reverse; /* Desktop: texto à esquerda, imagem à direita */
    align-items: center;
    gap: 75px; /* mesmo gap da primeira seção */
}

/* Ajuste da imagem maior e menor (igual primeira seção) */
.reverse-section .info-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 300px; /* igual primeira seção */
    margin-top: -175px; /* mesma sobreposição */
}

/* Imagem menor específica da segunda seção */
.reverse-section .info-image .img-small-anim {
    width: 50%;
    bottom: -240px;
    right: -10%;
    border-radius: 15px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    animation-delay: 0.5s;
}

/* Texto da seção */
.reverse-section .info-text {
    flex: 1;
    min-width: 300px;
    animation: fadeUp 1.2s ease;
}

/* Botão igual à primeira seção */
.reverse-section .info-text button {
    padding: 14px 36px;
    border-radius: 40px;
    border: none;
    background: #00975c;
    color: white;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

.info-text button:hover {
    background: #047a4a;
}

.botao-session-txt{
  padding: 14px 36px; 
  border-radius: 40px; 
  border: none; 
  background: #00975c; 
  color: white; 
  font-weight: 600; 
  cursor: pointer; 
  margin-top: 20px;	
}

.botao-session-txt:hover {
    background: #047a4a;
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 980px) {
    .reverse-section .hero-inner {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: left;
    }

    .reverse-section .info-image {
        position: relative;
        height: auto;
        margin-top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .reverse-section .info-image .img-large-anim {
        width: 70%;
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 25px;
        transform: none;
    }

    .reverse-section .info-image .img-small-anim {
        width: 40%;
        position: absolute;
        bottom: 10px;
        right: 8%;
        transform: translateX(50%);
        border-radius: 30px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        animation: fadeSlideScale 1s forwards;
    }

    .reverse-section .info-text button {
        width: 70%;
        margin: 20px auto 0 auto;
        display: block;
    }
}


/* ======== SESSÃO TABELAS CLEAN ======== */

.animar-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: .6s ease;
}

.animar-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

.tabelas-section {
    background: rgb(65 21 100 / 18%);
    padding: 60px 20px;
    text-align: center;
}

.titulo-sessao {
    font-size: 32px;
    color: #0c8f6a;
    margin-bottom: 10px;
}

.subtitulo-sessao {
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
}

.cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.card-tabela {
    background: #00975c;
    padding: 35px 25px;
    width: 280px;
    border-radius: 10px;
    text-align: center;
    color: #fff;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
    
    /* Essencial para competir com .show */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.card-tabela:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15) !important;
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff; /* roxo elegante */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    margin: 0 auto 15px auto;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

/* leve animação ao passar o mouse na caixa */
.card-tabela:hover .icon-circle {
    transform: scale(1.08);
    box-shadow: 0 10px 22px rgba(0,0,0,0.22);
}

.card-tabela h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.btn-card {
    display: inline-block;
    background: rgba(65, 21, 100, 1);
    padding: 10px 20px;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-card:hover {
    background: #190046;
}

/**************************/

/* ======================= SESSÃO CLEAN COM IMAGENS ANIMADAS E SANFONA ======================= */

.botao1{
    padding: 14px 37px !important;
    border-radius: 40px;
    border: none;
    background: none !important;
    color: #333 !important;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0px !important;	
}

@media (max-width: 980px) {
	.botao1{
		width: 93% !important;
        margin: 0px auto 0 auto !important;
        display: block;
	}
}

.sessao-planos {
    padding: 60px 20px;
}

.container-planos {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* ================================================================= */
/* ====================== IMAGENS ANIMADAS DIREITA ================= */
/* ================================================================= */

.foto-box {
    position: relative;
    width: 380px;
}

.foto-box img.foto-grande {
    width: 100%;
    border-radius: 16px;
    animation: flutuarGrande 4s ease-in-out infinite;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
	height: auto;
}

.foto-box img.foto-pequena {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 150px;
    border-radius: 20px;
    animation: flutuarPequena 4.5s ease-in-out infinite;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Animações das imagens */
@keyframes flutuarGrande {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes flutuarPequena {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* ================================================================= */
/* ============================ TÍTULO ============================== */
/* ================================================================= */

.titulo-planos {
    font-size: 30px;
    color: #064e3b;
    margin-bottom: 25px;
}


/* ================================================================= */
/* =========================== ACCORDION ============================ */
/* ================================================================= */

.accordion .item {
    border: 1px solid #e5e7eb;
    margin-bottom: 12px;
    border-radius: 6px;
    overflow: hidden;
}

.acc-btn {
    width: 100%;
    padding: 18px;
    background: #fff;
    border: none;
    font-size: 16px;
    color: #333;
    text-align: left;
    cursor: pointer;
    position: relative;
}

.seta {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

.acc-btn.active .seta {
    transform: translateY(-50%) rotate(180deg);
}

.acc-content {
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    padding: 0 18px;
    transition: max-height 0.3s ease;
}

.acc-content p {
    padding: 15px 0;
}

/* ================================================================= */
/* ============================= BOTÃO ============================== */
/* ================================================================= */

.cta-centro {
    margin-top: 25px;
}

.btn-solicite {
    display: inline-block;
    background: #00995d;
    padding: 14px 32px;
    color: white;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-solicite:hover {
    background: #047a4a;
}

/* ================================================================= */
/* ============================ RESPONSIVO ========================== */
/* ================================================================= */

@media (max-width: 900px) {
    .container-planos {
        flex-direction: column-reverse;
        text-align: center;
    }

    .titulo-planos {
        text-align: center;
    }

    .foto-box {
        margin-bottom: 40px;
    }

    .foto-box img.foto-pequena {
        right: 15px;
        bottom: -15px;
        width: 120px;
    }
}

/***********/

/* AJUSTE DE IMAGENS MOBILE E DESKTOP */

.posicaoimagem1{
 margin-top: -260px;	
}

.posicaoimagem2{
 margin-top: -225px !important;	
}

.posicaoimagem3{
 margin-top: -230px !important;	
}

@media (max-width: 980px) {
.posicaoimagem1{
 margin-top: -100px;	
}

.posicaoimagem2{
 margin-top: -100px !important;	
}

.posicaoimagem3{
 margin-top: -100px !important;	
}

.posicaoimagem4{
  margin-top: -100px !important;	
}

.posicaoimagem5{
  margin-top: -100px !important;	
}

.posicaoimagem6{
   margin-top: -100px !important;	
}

.botao-centro-mob{
   text-align:center;	
}

}

/*********/


/* COR FUNDO TEXTO E IMAGEM */


.fundo-section-desk {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.fundo-section-desk::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background: rgb(65 21 100 / 18%);
}

@media (max-width: 980px) {
  .fundo-section-desk {
    padding: 40px 20px;
  }
  
  .fundo-section-desk::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -110px;
    transform: translateX(-50%);
    width: 100vw;
    height: 110%;
    pointer-events: none;
    z-index: -1;
    background: rgb(65 21 100 / 18%);
}

}

/****************************/

/* COR CAIXAS WHATS */

/* Caixa padrão */
.card-tabela {
    transition: 0.3s ease;
}

/* Botão padrão */
.card-tabela .btn-card {
    color: #fff;
    padding: 10px 20px;
    display: inline-block;
    border-radius: 6px;
    transition: 0.3s ease;
}

/* 1) Hover na CAIXA → caixa roxa */
.card-tabela:hover {
    background: rgba(65, 21, 100, 1); /* roxo */
}

/* 2) Hover na CAIXA → botão fica verde */
.card-tabela:hover .btn-card {
    background: #1fbf41; /* verde */
}

/* 3) Hover no BOTÃO dentro da caixa ativa → botão fica amarelo */
.card-tabela:hover .btn-card:hover {
    background: #00975c; /* amarelo */
    color: #fff;
}

/******************/

/* BOTAO COTACAO TOPO */

/* estilo normal do menu */
nav.desktop a {
    padding: 10px 16px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s ease;
}

/* --- BOTÃO ESPECIAL DO MENU --- */
nav.desktop a.btn-cotacao {
    padding: 10px 22px;
    border-radius: 8px;
    border: 1px solid #00975c;
    background: rgba(65, 21, 100, 1);

    /* sombra interna + relevo elegante */
    box-shadow:
        inset 0 2px 4px rgba(0,0,0,0.08),
        0 2px 6px rgba(0,0,0,0.10);

    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(4px);
    transition: 0.3s ease;
}

/* hover premium */
nav.desktop a.btn-cotacao:hover {
    background: #00975c;
    color: #fff;
    border-color: rgba(65, 21, 100, 1);

    box-shadow:
        inset 0 3px 6px rgba(0,0,0,0.12),
        0 4px 10px rgba(0,0,0,0.15);
}

/* clique */
nav.desktop a.btn-cotacao:active {
    transform: scale(0.97);
    box-shadow:
        inset 0 4px 8px rgba(0,0,0,0.18),
        0 2px 6px rgba(0,0,0,0.12);
}

/* desativa o ::after apenas no botão "Faça sua cotação" */
nav.desktop a.btn-cotacao::after,
nav.desktop a.btn-cotacao:hover::after,
nav.desktop a.btn-cotacao:focus::after,
nav.desktop a.btn-cotacao:active::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  opacity: 0 !important;
}

nav.desktop .btn-cotacao {
    display: flex;
    align-items: center;
    gap: 8px; /* espaço entre o ícone e o texto */
}

nav.desktop .btn-cotacao svg {
    display: block;
    width: 18px;
    height: 18px;
}

/* botão especial no menu mobile */
.mobile-menu a.btn-cotacao {
    background: rgba(65, 21, 100, 1);
    color: white;
    padding: 14px 18px;
    margin-top: 0px;
    border-radius: 0;                 /* sem bordas arredondadas */
    font-weight: 600;
    text-align: center;
    display: block;
    position: relative;
    box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3),
                0 3px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease,
                transform 0.15s ease;
}

/* hover no mobile (aparece em dispositivos com mouse) */
.mobile-menu a.btn-cotacao:hover {
    background: rgba(65, 21, 100, 1);
    transform: translateY(-2px);
}

/* ativa/pressionada */
.mobile-menu a.btn-cotacao:active {
    background: rgba(65, 21, 100, 1);
    transform: scale(0.98);
}

/* remover o underline (::after) apenas deste botão */
.mobile-menu a.btn-cotacao::after {
    content: none !important;
    display: none !important;
    opacity: 0 !important;
}


/*******/

/* CORRIGE overflow de 100vw em celulares antigos */
html, body {
  overflow-x: hidden;
}

#whats {
    position: fixed;
    top: 80%;
    left: 10px;
    padding: 10px;
    z-index: 10000000;
}

/**************/

/* FAIXA FORM BANNER */

.faixa {
  height: 40px;
  width: calc(100% + 36px);
  margin-top: -18px;
  margin-bottom: 15px;
  margin-left: -18px;
  background-color: #a4d43b;
  border-radius: 12px 12px 0 0;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.texto-faixa-aut {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 600;
  padding-top: 15px;
}

@media (max-width: 480px) {
  .faixa {
    width: calc(100% + 36px);
        margin-left: -18px;
        margin-top: -18px;
  }

  .texto-faixa-aut {
    font-size: 14px !important;
	padding-top: 15px;
  }
}

/*********/

/* ================= SERVIÇOS ================= */
.servicos {
  padding: 80px 6%;
  background: #f9fafb;
}

.servicos-inner {
  max-width: 1250px;
  margin: 0 auto;
}

/* Header */
.servicos-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px;
}

.servicos-header h2 {
  font-size: 2.2rem;
  color: #00975c;
  margin-bottom: 12px;
  font-weight: 700;
}

.servicos-header p {
  font-size: 1.05rem;
  color: #555;
}

/* Grid */
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.servico-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.10);
}

.servico-card .icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.servico-card h3 {
  font-size: 1.15rem;
  color: #00975c;
  font-weight: 700;
  margin-bottom: 10px;
}

.servico-card p {
  font-size: 0.98rem;
  color: #555;
  line-height: 1.5;
}

/* Botão */
.botao-servicos {
  display: inline-block;
  margin: 50px auto 0;
  padding: 14px 40px;
  background: #00975c;
  color: #fff;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  transition: background .25s ease, transform .25s ease;
}

.botao-servicos:hover {
  background: #007a4b;
  transform: translateY(-2px);
}

/* ================= RESPONSIVO ================= */

@media (max-width: 980px) {
  .servicos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .servicos {
    padding: 60px 20px;
  }

  .servicos-grid {
    grid-template-columns: 1fr;
  }

  .servicos-header h2 {
    font-size: 1.7rem;
  }

  .servico-card {
    padding: 26px 20px;
  }
}

.botao-servicos {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  text-decoration: none;
}

/***********************/

/* ================= FAQ ================= */
.faq-section {
  padding: 80px 6%;
  background: #fff;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-container h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #00975c;
}

/* Card */
.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* Pergunta */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 22px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #222;
  cursor: pointer;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Ícone */
.faq-question .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: transform 0.35s ease;
}

/* Resposta */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 22px;
}

.faq-answer p {
  margin: 16px 0 22px;
  color: #555;
  line-height: 1.6;
}

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

.faq-item.active .icon {
  transform: rotate(180deg);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 5%;
  }

  .faq-container h2 {
    font-size: 1.6rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}

/************************/

/* ============ FOOTER RODAPE */

.site-footer {
  font-family: inherit;
  color: #fff;
}

/* Topo cinza */
.footer-top {
  background: #5f5f5f;
  text-align: center;
  padding: 12px 16px;
  font-size: 14px;
}

/* Corpo verde */
.footer-main {
  background: #00975c;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 50px 8%;
}

.footer-col h4 {
  font-size: 17px;
  margin-bottom: 12px;
  color: #eafff4;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

/* Logo */
.footer-logo {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-logo span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  opacity: 0.9;
}

/* Redes sociais */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #a4d43b;
  color: #00975c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-4px);
  background: #c6ea63;
}

/* Rodapé final */
.footer-bottom {
  background: #a4d43b;
  color: #123;
  text-align: center;
  padding: 14px 16px;
  font-size: 14px;
}

@media (max-width: 860px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 6%;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/********************/

/* COOKIE */

/* ===========================
   COOKIE BANNER
=========================== */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 105px;
  z-index: 9999;
  max-width: 420px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 18px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 99999999;
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cookie-logo {
  width: 42px;
  height: auto;
}

.cookie-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #333;
}

.cookie-text a {
  color: #00975c;
  font-weight: 600;
  text-decoration: none;
}

.cookie-text a:hover {
  text-decoration: underline;
}

.cookie-btn {
  align-self: flex-start;
  padding: 10px 26px;
  background: #00975c;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-btn:hover {
  background: #007e4c;
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 600px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 15px;
    max-width: none;
  }

  .cookie-btn {
    width: 45%;
    text-align: center;
  }
}


