/* =========================================================
   RDJ TRANSPORTE — Landing Page
   Paleta: Azul Marinho #1B365D | Laranja #FF6F00 | Cinza Claro #ECEFF1
   Tipografia: Oswald (títulos) + Roboto (texto)
   ========================================================= */

:root {
  --rdj-navy: #1B365D;
  --rdj-navy-dark: #12253f;
  --rdj-orange: #FF6F00;
  --rdj-orange-dark: #CC5900;
  --rdj-gray-light: #ECEFF1;
  --rdj-white: #FFFFFF;
  --rdj-text-dark: #212121;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
}

/* =========================================================
   BASE
   ========================================================= */
* {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--rdj-text-dark);
  background-color: var(--rdj-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.3px;
}

a {
  text-decoration: none;
}

.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

.bg-light-gray {
  background-color: var(--rdj-gray-light);
}

.bg-navy {
  background-color: var(--rdj-navy);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rdj-orange);
  margin-bottom: 10px;
}

.section-tag-light {
  color: var(--rdj-orange);
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--rdj-navy);
  margin-bottom: 15px;
}

.section-text {
  font-size: 1.05rem;
  color: #4b4b4b;
  line-height: 1.7;
}

/* Botão CTA principal (Laranja) */
.btn-cta-orange {
  background-color: var(--rdj-orange);
  border: 2px solid var(--rdj-orange);
  color: var(--rdj-white);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 8px;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-cta-orange:hover,
.btn-cta-orange:focus {
  background-color: var(--rdj-orange-dark);
  border-color: var(--rdj-orange-dark);
  color: var(--rdj-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 111, 0, 0.35);
}

/* =========================================================
   HEADER
   ========================================================= */
.rdj-header {
  background-color: transparent;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
  z-index: 1000;
}

.rdj-header.scrolled {
  background-color: var(--rdj-navy);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.rdj-header .navbar {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.rdj-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rdj-white) !important;
  letter-spacing: 0.5px;
}

.rdj-logo-img {
  border-radius: 8px;
  flex-shrink: 0;
}

.rdj-logo-text {
  color: var(--rdj-white);
}

.rdj-logo-text span,
.rdj-logo span {
  color: var(--rdj-orange);
}

.rdj-nav-link {
  color: var(--rdj-white) !important;
  font-weight: 500;
  position: relative;
  padding: 0.5rem 0.8rem !important;
  transition: color 0.25s ease;
}

.rdj-nav-link::after {
  content: '';
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.15rem;
  height: 2px;
  background-color: var(--rdj-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.rdj-nav-link:hover {
  color: var(--rdj-orange) !important;
}

.rdj-nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  background-image: linear-gradient(100deg,
      rgba(18, 37, 63, 0.94) 0%,
      rgba(27, 54, 93, 0.82) 38%,
      rgba(27, 54, 93, 0.55) 65%,
      rgba(27, 54, 93, 0.35) 100%),
    url('../images/background.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: var(--rdj-navy);
  height: 610px;
  min-height: 610px;
  display: flex;
  align-items: center;
  padding-top: 90px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 111, 0, 0.12);
  border-radius: 50%;
}

.hero-text {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--rdj-white);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  color: var(--rdj-white);
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.96;
  margin-bottom: 14px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-support {
  color: #e3e9f0;
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.hero-support strong {
  color: var(--rdj-orange);
}

.hero-cta {
  font-size: 1.05rem;
  padding: 16px 32px;
}

.hero-cta i {
  font-size: 1.3rem;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
}

.hero-image-card {
  display: inline-block;
  max-width: 420px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.4);
}

.hero-image {
  border-radius: 8px;
}

/* =========================================================
   PERGUNTAS FREQUENTES (FAQ)
   ========================================================= */
.faq-section {
  background-color: #0f1a2b;
}

.faq-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--rdj-white);
  margin-bottom: 0;
}

.faq-title span {
  color: var(--rdj-orange);
}

.faq-accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
}

.faq-item {
  background-color: transparent;
  border: none;
  margin-bottom: 14px;
}

.faq-button {
  background-color: #1a2436;
  color: var(--rdj-white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  border-radius: 10px !important;
  box-shadow: none;
  padding: 1rem 1.25rem;
  gap: 12px;
}

.faq-button:not(.collapsed) {
  background-color: #243148;
  color: var(--rdj-white);
  box-shadow: none;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.faq-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-button:hover {
  background-color: #243148;
  color: var(--rdj-white);
}

.faq-button::after {
  margin-left: 0 !important;
  margin-right: 4px;
  order: -1;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%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");
  transition: transform 0.25s ease;
}

.faq-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FF6F00'%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-body {
  background-color: #1a2436;
  color: #c9d3df;
  font-size: 0.95rem;
  line-height: 1.7;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 0.5rem 1.25rem 1.25rem 3.1rem;
}

.faq-body strong {
  color: var(--rdj-orange);
}

/* =========================================================
   SOBRE — PILARES
   ========================================================= */
.pillar-card {
  background-color: var(--rdj-white);
  border-radius: 12px;
  padding: 40px 25px;
  box-shadow: 0 6px 20px rgba(27, 54, 93, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(27, 54, 93, 0.06);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(27, 54, 93, 0.15);
}

.pillar-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background-color: rgba(255, 111, 0, 0.12);
  color: var(--rdj-orange);
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  background-color: var(--rdj-orange);
  color: var(--rdj-white);
}

.pillar-title {
  font-size: 1.2rem;
  color: var(--rdj-navy);
  margin-bottom: 10px;
}

.pillar-text {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* =========================================================
   SERVIÇOS
   ========================================================= */
.service-card {
  background-color: var(--rdj-white);
  border-radius: 14px;
  padding: 45px 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(27, 54, 93, 0.18);
  border-bottom-color: var(--rdj-orange);
}

.service-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--rdj-navy);
  color: var(--rdj-white);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: background-color 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--rdj-orange);
}

.service-title {
  font-size: 1.3rem;
  color: var(--rdj-navy);
  margin-bottom: 14px;
}

.service-text {
  color: #555;
  margin-bottom: 0;
}

/* =========================================================
   GRANDES EVENTOS ATENDIDOS
   ========================================================= */
.event-badge {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 28px 15px;
  text-align: center;
  color: var(--rdj-white);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.event-badge i {
  font-size: 2.2rem;
  color: var(--rdj-orange);
  transition: transform 0.3s ease;
}

.event-badge span {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.event-badge:hover {
  transform: translateY(-6px);
  background-color: rgba(255, 111, 0, 0.1);
  border-color: var(--rdj-orange);
}

.event-badge:hover i {
  transform: scale(1.15);
}

.event-support {
  color: #d7dee7;
  font-size: 1.05rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================
   REGIÕES ATENDIDAS
   ========================================================= */
/* =========================================================
   REGIÕES ATENDIDAS (MAPA SATÉLITE DE FUNDO)
   ========================================================= */
.regioes-section {
  position: relative;
  overflow: hidden;
  background-color: #1a2436;
}

.regioes-map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.regioes-map-bg iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  /* zoom leve para esconder UI excessiva nas bordas */
  transform: scale(1.12);
  transform-origin: center center;
  filter: brightness(0.75) saturate(1.1) contrast(1.05);
}

.regioes-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(18, 37, 63, 0.78) 0%,
    rgba(18, 37, 63, 0.65) 45%,
    rgba(18, 37, 63, 0.8) 100%
  );
}

.regioes-content {
  position: relative;
  z-index: 2;
}

.regioes-content .section-title {
  color: var(--rdj-white);
}

.regioes-content .section-text {
  color: #d7dee7;
}

.region-card {
  background-color: var(--rdj-white);
  border-radius: 12px;
  padding: 35px 15px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 28px rgba(27, 54, 93, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.region-card i {
  font-size: 2.2rem;
  color: var(--rdj-orange);
  margin-bottom: 12px;
  display: inline-block;
  transition: color 0.3s ease;
}

.region-title {
  font-size: 1.15rem;
  color: var(--rdj-navy);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.region-states {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.region-card:hover {
  background-color: var(--rdj-navy);
  transform: translateY(-6px);
}

.region-card:hover i {
  color: var(--rdj-orange);
}

.region-card:hover .region-title,
.region-card:hover .region-states {
  color: var(--rdj-white);
}

/* =========================================================
   CONTATO / FORMULÁRIO
   ========================================================= */
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--rdj-text-dark);
}

.contact-info-list i {
  color: var(--rdj-orange);
  font-size: 1.3rem;
  width: 28px;
  text-align: center;
}

.orcamento-form {
  background-color: var(--rdj-white);
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(27, 54, 93, 0.1);
}

.orcamento-form .form-label {
  font-weight: 500;
  color: var(--rdj-navy);
  font-size: 0.92rem;
}

.orcamento-form .form-control,
.orcamento-form .form-select {
  border: 1px solid #cfd8dc;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.orcamento-form .form-control:focus,
.orcamento-form .form-select:focus {
  border-color: var(--rdj-orange);
  box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.15);
}

.form-feedback {
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.form-feedback--success {
  background-color: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.form-feedback--error {
  background-color: #fbe9e7;
  color: #b71c1c;
  border: 1px solid #ffab91;
}

.orcamento-form .btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* =========================================================
   FOOTER
   ========================================================= */
.rdj-footer {
  background-color: var(--rdj-navy);
  color: #d7dee7;
  padding-top: 60px;
  padding-bottom: 25px;
}

.footer-logo {
  display: inline-block;
}

.footer-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #c3cddb;
  max-width: 350px;
}

.footer-heading {
  font-size: 1.05rem;
  color: var(--rdj-white);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: var(--rdj-orange);
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
  font-size: 0.92rem;
}

.footer-links a {
  color: #c3cddb;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a:hover {
  color: var(--rdj-orange);
  padding-left: 4px;
}

.footer-contact li i {
  color: var(--rdj-orange);
  margin-right: 8px;
  width: 18px;
  text-align: center;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.15);
  margin: 30px 0 20px;
}

.footer-copy {
  font-size: 0.85rem;
  color: #a9b6c7;
}

/* =========================================================
   BOTÃO FLUTUANTE WHATSAPP
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background-color: var(--rdj-orange);
  color: var(--rdj-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 20px rgba(255, 111, 0, 0.4);
  z-index: 999;
  transition: background-color 0.3s ease, transform 0.3s ease;
  animation: rdj-pulse 2.4s infinite;
}

.whatsapp-float:hover {
  background-color: var(--rdj-orange-dark);
  color: var(--rdj-white);
  transform: scale(1.08);
}

@keyframes rdj-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 111, 0, 0.45); }
  70% { box-shadow: 0 0 0 14px rgba(255, 111, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 111, 0, 0); }
}

/* =========================================================
   COOKIE CONSENT — card canto esquerdo
   ========================================================= */
.cookie-consent {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1000;
  width: min(320px, calc(100vw - 40px));
  background-color: var(--rdj-white);
  border-radius: 14px;
  padding: 20px 18px 16px;
  box-shadow: 0 12px 32px rgba(18, 37, 63, 0.22);
  border: 1px solid rgba(27, 54, 93, 0.1);
  animation: cookie-slide-in 0.35s ease;
}

.cookie-consent__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background-color: rgba(255, 111, 0, 0.12);
  color: var(--rdj-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.cookie-consent__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--rdj-navy);
  margin-bottom: 8px;
}

.cookie-consent__text {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 16px;
}

.cookie-consent__actions {
  display: flex;
  gap: 8px;
}

.cookie-consent__btn {
  flex: 1;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 12px;
  border-radius: 8px;
}

.cookie-consent__btn--ghost {
  background-color: transparent;
  border: 1px solid rgba(27, 54, 93, 0.25);
  color: var(--rdj-navy);
  transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.cookie-consent__btn--ghost:hover {
  background-color: var(--rdj-gray-light);
  border-color: var(--rdj-navy);
  color: var(--rdj-navy);
}

@keyframes cookie-slide-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 575.98px) {
  .cookie-consent {
    left: 12px;
    bottom: 88px; /* acima do botão WhatsApp em mobile */
  }
}

/* =========================================================
   NÚMEROS / STATS
   ========================================================= */
.stat-card {
  background-color: var(--rdj-gray-light);
  border-radius: 12px;
  padding: 22px 12px;
  height: 100%;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--rdj-orange);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-label {
  display: block;
  font-size: 0.88rem;
  color: #555;
}

/* =========================================================
   COMO FUNCIONA
   ========================================================= */
.step-card {
  background-color: var(--rdj-white);
  border-radius: 14px;
  padding: 32px 20px 28px;
  box-shadow: 0 8px 24px rgba(27, 54, 93, 0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(27, 54, 93, 0.14);
}

.step-number {
  position: absolute;
  top: 14px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: rgba(27, 54, 93, 0.12);
  font-weight: 700;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 111, 0, 0.12);
  color: var(--rdj-orange);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step-title {
  font-size: 1.15rem;
  color: var(--rdj-navy);
  margin-bottom: 10px;
}

.step-text {
  font-size: 0.92rem;
  color: #555;
  margin-bottom: 0;
}

/* =========================================================
   INCLUSO / NÃO INCLUSO
   ========================================================= */
.inclusao-card {
  border-radius: 14px;
  padding: 28px 26px;
  height: 100%;
}

.inclusao-sim {
  background-color: #f3faf5;
  border: 1px solid #c8e6c9;
}

.inclusao-nao {
  background-color: #fff7f5;
  border: 1px solid #ffccbc;
}

.inclusao-title {
  font-size: 1.15rem;
  color: var(--rdj-navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.inclusao-sim .inclusao-title i {
  color: #2e7d32;
}

.inclusao-nao .inclusao-title i {
  color: #d84315;
}

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

.inclusao-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #444;
}

.inclusao-list li::before {
  content: '•';
  position: absolute;
  left: 6px;
  color: var(--rdj-orange);
  font-weight: 700;
}

.inclusao-note {
  font-size: 0.8rem;
  color: #888;
  margin: 12px 0 0;
}

/* =========================================================
   CTA INTERMEDIÁRIO
   ========================================================= */
.cta-mid-section {
  padding: 0;
  background-color: var(--rdj-navy);
}

.cta-mid-box {
  padding: 55px 20px;
}

.cta-mid-title {
  color: var(--rdj-white);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 12px;
}

.cta-mid-text {
  color: #c9d3df;
  font-size: 1.05rem;
  margin-bottom: 24px;
}

/* =========================================================
   LOGOS / MARCAS (CREDENCIAIS)
   ========================================================= */
.brand-logo-card {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 22px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-logo-card img {
  max-width: 100%;
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

.brand-logo-card i {
  font-size: 2.2rem;
  color: var(--rdj-orange);
}

.brand-logo-label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--rdj-navy);
  text-align: center;
  line-height: 1.3;
}

.brand-logo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* =========================================================
   GALERIA
   ========================================================= */
.gallery-item {
  margin: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 8px 20px rgba(27, 54, 93, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item.gallery-local img,
.gallery-item img.gallery-local {
  object-fit: contain;
  background-color: #111;
  padding: 16px;
}

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(18, 37, 63, 0.9));
  color: var(--rdj-white);
  font-size: 0.88rem;
  font-weight: 500;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

/* =========================================================
   DEPOIMENTOS
   ========================================================= */
.testimonial-card {
  background-color: var(--rdj-white);
  border: 1px solid rgba(27, 54, 93, 0.08);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(27, 54, 93, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(27, 54, 93, 0.12);
}

.testimonial-stars {
  color: var(--rdj-orange);
  font-size: 0.95rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.98rem;
  color: #444;
  line-height: 1.65;
  margin-bottom: 22px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--rdj-orange);
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: var(--rdj-navy);
}

.testimonial-author span {
  display: block;
  font-size: 0.8rem;
  color: #777;
}

.hero-cta-secondary {
  border-width: 2px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.4px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.hero-cta-secondary:hover {
  background-color: var(--rdj-white);
  color: var(--rdj-navy);
  border-color: var(--rdj-white);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s ease var(--reveal-delay, 0s),
    transform 0.7s ease var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

main > section.reveal {
  transition-duration: 0.85s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   RESPONSIVIDADE
   ========================================================= */
@media (max-width: 991.98px) {
  .rdj-header:not(.scrolled) {
    background-color: var(--rdj-navy);
  }

  .hero-section {
    height: auto;
    min-height: 610px;
    padding-top: 120px;
    padding-bottom: 50px;
    text-align: center;
    background-image: linear-gradient(180deg,
        rgba(18, 37, 63, 0.9) 0%,
        rgba(27, 54, 93, 0.88) 60%,
        rgba(27, 54, 93, 0.8) 100%),
      url('../images/background.png');
    background-position: center 30%;
  }

  .hero-cta-group {
    justify-content: center;
  }

  .hero-cta {
    margin-inline: auto;
  }

  .hero-image-card {
    margin-inline: auto;
  }
}

@media (max-width: 575.98px) {
  .section-padding {
    padding-top: 55px;
    padding-bottom: 55px;
  }

  .orcamento-form {
    padding: 24px;
  }

  .gallery-item {
    height: 170px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
    bottom: 16px;
    right: 16px;
  }
}
