

:root {
  --fundo: #F1F2F8;
  --azul-escuro: #0A2843;
  --branco: #ffffff;
  --laranja: #EB832F;
  --laranja-hover: #e07a2b;
  --fonte-azul: #052959;
  --font-titulo: 'Montserrat', sans-serif;
  --font-corpo: 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-corpo);
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}

h2{
  font-size: 26px;
  color: var(--fonte-azul);
  font-weight: 600;
}

/* -------- NAVBAR -------- */
#mainNav {
  background-color: var(--fundo);
  padding: 0.6rem 0;
  transition: box-shadow 0.3s;
}

#mainNav.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.logo-img {
  object-fit: contain;
  transition: transform 0.3s;
}
.logo-img:hover { transform: scale(1.04); }

.navbar-toggler {
  border-color: var(--azul-escuro);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%230A2843' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--azul-escuro) !important;
  padding: 0.5rem 0.8rem;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.navbar-nav .nav-link:hover {
  color: var(--laranja) !important;
}

.btn-fale-nav {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 6px;
  padding: 0.45rem 1.2rem;
  transition: all 0.27s;
  letter-spacing: 0.03em;
  color: var(--branco);
  background: linear-gradient(to right, #284A69, #0A2843);
}
.btn-fale-nav:hover {
  color: var(--branco) !important;
  background: linear-gradient(to right, #3f678b, #153b5c);
}


/* -------- BUTTONS -------- */
.btn-laranja {
  background: var(--laranja);
  color: #fff;
  font-family: var(--font-titulo);
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 1.8rem;
  font-size: 0.97rem;
  letter-spacing: 0.02em;
  transition: background 0.25s, transform 0.2s;
}
.btn-laranja:hover {
  background: var(--laranja-hover);
  color: #fff;
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--fundo);
  color: #fff;
  font-family: var(--font-titulo);
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 1.8rem;
  font-size: 0.97rem;
  transition: background 0.25s, transform 0.2s;
}
.btn-dark:hover {
  background: var(--azul-medio);
  color: #fff;
  transform: translateY(-2px);
}

.button-transparente{
  background: linear-gradient(to right, #052959, #184075);
  border: 1px solid #ffffff7a;
  padding: 10px 20px;
  color: #fff;
  font-size: 1rem;
  transition: color 0.25s, transform 0.2s;
}

.button-transparente:hover{
  background: linear-gradient(to right, #0f3a72, #265592);
  transform: translateY(-2px);
  color: var(--branco);
  border: 1px solid #ffffffb2;
}


/* -------- frase rotativa -------- */
.frase-wrapper {
    overflow: hidden;
    width: 100%;
    background: var(--azul-escuro);
    padding: 6px 0;
  }

  .frase-rotativa {
    display: flex;
    width: fit-content;
    animation: frase-scroll 30s linear infinite;
  }

  .frase-track {
    display: flex;
  }

  .frase-track p {
    margin: 0 120px;
    color: white;
    font-size: 16px;
    white-space: nowrap;
  }

  @keyframes frase-scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }


/* -------- SECTION COMUNS -------- */
.section-title-red {
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 38px;
  color: var(--laranja);
  margin-bottom: 0.6rem;
}

.section-title-dark {
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 38px;
  color: var(--azul-escuro);
  margin-bottom: 1rem;
}

.section-title-white {
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 38px;
  color: var(--branco);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--fonte-azul);
  max-width: 700px;
  margin: 0 auto;
}

/* -------- PRODUTOS -------- */
.section-produtos {
  background: var(--fundo);
  padding: 100px 0;
}

.produto-card {
  background: var(--branco);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  transition: transform 0.28s, box-shadow 0.28s;
  border: 1px solid rgba(255,255,255,0.05);
}

.produto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.062);
}

.produto-img {
  height: 69px;
}

.produto-card h5 {
  font-family: var(--font-titulo);
  font-weight: 700;
  color: var(--azul-escuro);
  font-size: 1rem;
  margin-bottom: 0.55rem;
}

.produto-card p {
  color: var(--azul-escuro);
  font-size: 0.88rem;
  margin: 0;
}

/* -------- PRENSAGEM -------- */
.section-prensagem {
  background: var(--azul-escuro);
  padding: 100px 0;
}

.prensagem-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}
.prensagem-img-wrap img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.prensagem-desc {
  color: var(--branco);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

.prensagem-steps {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 8px;
  padding: 0.9rem 1.3rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  font-weight: 500;
  font-size: 0.97rem;
  color: #1a1a1a;
  transition: box-shadow 0.25s;
}
.step-item:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.step-num {
  background: var(--azul-escuro);
  color: var(--branco);
  font-family: var(--font-titulo);
  font-weight: 800;
  font-size: 1rem;
  width: 38px;
  height: 38px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* -------- SOBRE NÓS -------- */
.section-sobre {
  background: var(--branco);
  padding: 100px 0;
}

.section-sobre p {
  color: var(--azul);
  font-size: 1rem;
  line-height: 1.8;
}

.sobre-kicker {
  display: block;
  color: var(--vermelho);
  margin-bottom: 14px;
  font-weight: 600;
}

.sobre-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}
.sobre-img-wrap img {
  width: 100%;
  height: 785px;
  object-fit: cover;
}

/* -------- VANTAGENS -------- */
.section-vantagens {
  background: var(--fundo);
  padding: 100px 0;
}

.vantagem-img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.vantagem-card {
  background: #fff;
  border-radius: 12px;
  padding: 3rem 1.5rem;
  height: 100%;
  box-shadow: 0 3px 16px rgba(0,0,0,0.07);
  transition: transform 0.28s, box-shadow 0.28s;
}
.vantagem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.vantagem-icon {
  font-size: 2.6rem;
  color: var(--vermelho);
  display: block;
}

.vantagem-card h5 {
  font-family: var(--font-titulo);
  font-weight: 700;
  color: var(--azul);
  font-size: 1.05rem;
  margin: 20px 10px;
}

.vantagem-card p {
  color: var(--azul);
  font-size: 0.9rem;
  margin: 0;
}

/* -------- FOOTER -------- */
.site-footer {
  background: var(--fundo);
  color: var(--fonte-azul);
  padding: 2rem 0 0.5rem;
}

.footer-logo {
  height: 80px;
  object-fit: contain;
}

.footer-desc {
  color: var(--fonte-azul);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-titulo);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fonte-azul);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--fonte-azul);
  font-size: 0.92rem;
}

.footer-list li i {
  font-size: 1.1rem;
  color: var(--fonte-azul);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-list a {
  color: var(--fonte-azul);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-list a:hover {
  color:#021227;
  text-decoration: underline;
}

.footer-address {
  color: var(--fonte-azul);
  font-size: 0.93rem;
  line-height: 1.6;
}

.footer-address i {
  color: var(--fonte-azul);
}

.map-wrap {
  border-radius: 10px;
  overflow: hidden;
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 2.5rem 0 1.5rem;
}

.footer-bottom a{
  text-decoration: none;
  color: var(--fonte-azul);
}
.footer-bottom a:hover {
  color: var(--fonte-azul);

}

.footer-bottom p {
  color: var(--fonte-azul);
  font-size: 0.82rem;
  margin: 0;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--fonte-azul);
  font-size: 1.2rem;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s;
}
.social-icons a:hover {
  background: var(--vermelho);
  transform: scale(1.12);
}

/* FAQ*/
.sec-faq { background: var(--azul-escuro); padding: 100px 1rem; }

.inner-container { width: min(860px, 100%); margin: 0 auto; }

.faq-inner { width: min(860px, 100%); }

.sec-faq h2{
  font-family: var(--font-titulo);
  font-weight: 600;
  font-size: 36px;
  color: var(--laranja);
  margin-bottom: 1rem;
}

.sec-faq p{
  color: #F1F2F8;
  font-size: 1rem;
  line-height: 1.7;
}

.faq-item {
  background: var(--branco);
  border: 1px solid var(--clr-border) !important;
  border-radius: 10px !important;
  overflow: hidden;
  margin-bottom: 1rem;
}

.faq-btn {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--laranja);
  background: var(--branco);
  padding: 1.1rem 1.4rem;
  box-shadow: none !important;
}
.faq-btn::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23cc1220'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.faq-btn:not(.collapsed) { color: var(--laranja); background: var(--branco); }
.faq-btn:focus { box-shadow: 0 0 0 .2rem rgba(59, 59, 59, 0.18) !important; }

.faq-body {
  font-size: 0.875rem;
  color: var(--clr-text-muted);
  padding: 1rem 1.4rem 1.1rem;
  line-height: 1.6;
}

/*WHATSAPP*/
.whatsapp-float {
  position: fixed;
  bottom: 15px;
  right: 10px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

/* -------- CAROUSEL CLS FIX -------- */
#ads .carousel-item {
  overflow: hidden;
  aspect-ratio: 7 / 6; /* mobile banners: 1400x1200 */
}
@media (min-width: 768px) {
  #ads .carousel-item {
    aspect-ratio: 192 / 50; /* desktop banners: 3840x1000 */
  }
}

#ads .carousel-item picture {
  display: block;
  width: 100%;
}

#ads .carousel-item img {
  display: block;
  height: auto;
}

/* -------- RESPONSIVO -------- */
@media (max-width: 991px) {
  .hero-content { padding: 4rem 1rem 3rem; }
  .hero-title { font-size: 2rem; }
  .prensagem-img-wrap img { height: 300px; }
  .sobre-img-wrap img { height: 280px; }

  #navbarNav {
    text-align: right;
  }

  #navbarNav .navbar-nav {
    align-items: flex-end;
  }

  #navbarNav .btn-fale-nav {
    display: inline-block;
    margin-left: auto;
  }
}

@media (max-width: 576px) {
  .hero-section { min-height: 400px; }
  .hero-content { padding: 3rem 1rem 2.5rem; }

  .site-footer {
    text-align: center;
  }

  .footer-logo {
    display: block;
    margin: 0 auto 1rem;
  }

  .footer-desc,
  .footer-address {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-list li {
    justify-content: center;
    text-align: left;
  }

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

  .map-wrap {
    max-width: 360px;
    margin: 0 auto;
  }
}
