﻿:root {
  --primary-color: #1a56ab;
  --secondary-color: #f05a28;
  --background-color: #f9f9f9;
  --text-color: #1a1a1a;
  --accent-color: #00a884;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #f9f9f9;
  text-decoration: none;
}

a {
  color: inherit;
  text-decoration: none;
}

/* 🔷 Fundo reutilizável com sobreposição */
.bg-overlay {
  position: relative;
  background-size: cover; /* A imagem cobre toda a div */
  background-position: center; /* Centraliza a imagem */
  background-repeat: no-repeat; /* Evita repetição */
  background-attachment: scroll; /* Evita comportamento estranho ao rolar */
  overflow: hidden;
  z-index: 1;
}

.bg-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 60, 0.6); /* Azul escuro translúcido */
  z-index: 0;
}

/* Garante que o conteúdo fique acima da sobreposição */
.bg-overlay > * {
  position: relative;
  z-index: 1;
}

/* Efeito glass (aplicado em containers dentro da seção) */
.glass-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #ccc;
  z-index: 50;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1a56ab, #3b82f6);
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  margin-right: 10px;
}

.logo-text h1 {
  font-size: 1rem;
  color: #1a1a1a;
}

.logo-text p {
  font-size: 0.7rem;
  color: #666;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: #666;
  transition: color 0.3s;
}

.desktop-nav a:hover {
  color: #1a1a1a;
}

.button-phone {
  padding: 6px 12px;
  background-color: #1a56ab;
  color: white !important;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
}

/* 🔹 Desktop nav */
.desktop-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* 🔹 Oculta o bottom nav no desktop */
.mobile-bottom-nav {
  display: none;
}

/* 🔹 Bottom nav mobile */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  header {
    display: none;
  }

  /* 🔹 Barra inferior fixa */
  .mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 35, 60, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 0;
    z-index: 1000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* 🔹 Links */
  .mobile-bottom-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    flex: 1;
    text-align: center;
  }

  .mobile-bottom-nav a:hover {
    color: #00bfff;
  }

  /* 🔹 Ícones */
  .mobile-bottom-nav i {
    font-size: 1.2rem;
    margin-bottom: 3px;
  }

  /* 🔹 Logo central destacada */
  .mobile-bottom-nav .nav-logo {
    background: #fff;
    border-radius: 50%;
    padding: 6px;
    transform: translateY(-20%);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-bottom-nav .nav-logo img {
    width: 42px;
    height: 42px;
    object-fit: contain;
  }

  /* 🔹 Apenas em telas menores */
  @media (min-width: 768px) {
    .mobile-bottom-nav {
      display: none;
    }
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 86, 155, 0.7); /* azul semitransparente */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  text-align: center;
  color: #ffffff;
  padding: 0 20px;

  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}

.hero-logo {
  width: 20%;
}

.hero-logo img {
  width: 100%;
}

@media (max-width: 1024px) {
  .hero-logo {
    width: 80%;
    margin: 5% 0;
  }
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 0.75rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.button-primary {
  background-color: #1a56ab;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.button-primary:hover {
  background-color: #134087;
}

.button-secondary {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  backdrop-filter: blur(5px);
  transition: background 0.3s;
}

.button-secondary:hover {
  background-color: rgba(255, 255, 255, 0.35);
}

.trust-badges {
  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 120px;
}

.badge-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.06); /* leve fundo para contraste */
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.18s ease, background 0.18s ease;
  color: #ffffff; /* stroke usa currentColor */
}

.badge-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.badge p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  margin: 0;
  font-weight: 600;
}

/* Hover sutil */
.badge:hover .badge-icon {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

/* Responsividade */
@media (max-width: 600px) {
  .trust-badges {
    gap: 14px;
  }
  .badge {
    min-width: 100px;
  }
  .badge-icon {
    width: 44px;
    height: 44px;
    padding: 5px;
  }
  .badge p {
    font-size: 0.9rem;
  }
}

/* Problem Section */
.problem-section {
  padding: 80px 0;
  background-color: #f3f3f3;
  text-align: center;
}

.problem-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.problem-section p {
  font-size: 1rem;
  margin-bottom: 40px;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.problem-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.problem-card .icon {
  font-size: 2.5rem;
  color: var(--secondary-color, #1e73be);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.problem-card .icon i {
  stroke-width: 1.5;
}

/* Solution Section */
.solution-section {
  padding: 80px 0;
  background: white;
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.solution-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.solution-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.solution-content p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.solution-benefits {
  list-style: none;
  margin-bottom: 20px;
}

.solution-benefits li {
  margin-bottom: 10px;
  font-weight: bold;
}

.solution-alert {
  border-left: 4px solid #1a56ab;
  background: #f3f3f3;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* service section */
.services-section {
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.services-header {
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* CARD */
.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 35px 25px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.2);
}

/* ICONES */
.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.25);
}

.service-icon .icon {
  width: 36px;
  height: 36px;
  color: #fff;
}

/* TEXTO */
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: #f05a28;
  text-align: center;
}

.process-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.process-section p {
  font-size: 1rem;
  margin-bottom: 40px;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
}

.process-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.process-cards .icon {
  font-size: 2.5rem;
  color: var(--secondary-color, #1e73be);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-cards .icon i {
  stroke-width: 1.5;
}

.process-card .step-number {
  width: 40px;
  height: 40px;
  background: #1a56ab;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.process-card .icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.faq-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
  flex-wrap: wrap;
}

.faq-content {
  flex: 1 1 500px;
}

.faq-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Estilo dos itens */
.faq-items {
  margin-top: 30px;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  padding: 18px 22px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 1.1rem;
  color: #1d3557;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Responsivo */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
    text-align: center;
  }

  .faq-image {
    order: -1;
    margin-bottom: 30px;
  }

  .faq-image img {
    max-width: 300px;
  }
}

/* Footer */
.footer {
  color: #fff;
  background-color: #0f233c;
  padding: 60px 20px 30px;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
}

.footer-logo {
  width: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 100%;
}

.footer h3,
.footer h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.contact-item i {
  color: white;
  font-size: 1.2rem;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 1.4rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ffb347;
}

.footer-hours {
  font-size: 0.9rem;
  margin-top: 10px;
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 15px;
  opacity: 0.8;
}

/* Responsivo */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-button {
    display: block;
  }
  .solution-grid {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  position: relative;
  padding: 80px 20px;
  background: url("assets/contact-bg.jpg") center/cover no-repeat;
  color: white;
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 40, 0.6);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.contact-header {
  margin-bottom: 40px;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
}

.contact-content {
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
}

.contact-info,
.contact-form {
  flex: 1 1 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-info p {
  margin: 10px 0;
  font-size: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.contact-form textarea {
  height: 120px;
  resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #00a884;
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #008f73;
}

/* Botão flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

@media (max-width: 1024px) {
  .whatsapp-float {
    bottom: 11%;
  }
}
