/* ==========================
   Variáveis Globais (:root)
   ========================== */
:root {
  /* Cores */
  --primary-color: #F6790B;
  /* Laranja vibrante */
  --primary-color-light: #F9A94A;
  /* Laranja suave (hover) */
  --btn-hover-color: #D66E00;
  /* Laranja escuro (hover botão) */
  --secondary-color: #ABABB2;
  /* Cinza azulado para textos secundários */
  --text-color-dark: #2E2E3A;
  /* Cinza escuro para textos principais */
  --text-color-light: #6B6B7B;
  /* Cinza médio para textos menos importantes */
  --border-color: #E0E0E5;
  /* Cinza claro para bordas sutis */
  --background-color: #FFFFFF;
  /* Fundo branco */
  --background-alt: #FAF0E6;
  /* Fundo alternativo (ex: full-width-bg) */
  --footer-bg: #111111;
  /* Fundo do rodapé */
  --footer-text: #CCCCCC;
  /* Texto rodapé */
  --footer-link-hover: #FFFFFF;
  /* Link hover rodapé */

  /* Tamanhos e espaçamentos */
  --border-radius: 1rem;
  /* Radius padrão para bordas arredondadas */
  --border-radius-btn: 2rem;
  /* Radius para botões */
  --font-family-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
    Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-family-secondary: 'Montserrat', sans-serif;
  --font-family-accent: 'Raleway', sans-serif;

  /* Tipografia */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-black: 900;

  /* Outros */
  --circle-size: 70px;
  --circle-color: #ff5e00;
  --line-color: #ff5e00;
  --step-width: 200px;
}

/* ==========================
   Imagens responsivas e padronizadas
   ========================== */

/* Defina um tamanho fixo padrão para as imagens do site */
img {
  max-width: 100%;
  /* para responsividade em telas pequenas */
  object-fit: cover;
  /* mantém o aspecto, corta o excesso */
  border-radius: var(--border-radius);
  /* borda arredondada consistente */
  display: block;
  /* remove espaçamento inline */
}

/* ==========================
   Reset e estilos base
   ========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background-color: var(--background-color);
  color: var(--text-color-dark);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: var(--primary-color);
  outline: none;
}

p.lead {
  margin-top: 15px !important;
  font-size: 1.0rem !important;
  color: #6b6b7b;

}

.text-section {
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  color: var(--text-color-dark);
  line-height: 1.5;
}

button.navbar-toggler {
  border: none !important;
}

/* ==========================
   Layout geral e containers
   ========================== */
main.container {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
  max-width: 1140px;
  margin: 0 auto;
}

.full-width-bg {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #f3f3f3 !important;
  color: var(--background-color);
}


/* ==========================
   Cabeçalho e Navbar
   ========================== */
header {
  background-color: var(--background-color);
  padding: 1rem 0;
}

@media (max-width: 575.98px) {
  header {
    padding: 1.25rem 1rem !important;
  }
}

.logo-custom {
  width: 230px;
  border-radius: 0 !important;
}

.logo-footer {
  border-radius: 0 !important;
  width: 150px;
  display: block;
  /* necessário para margin auto funcionar na horizontal */
  margin: 0 auto;
  /* centraliza na horizontal */
}

.navbar-brand {
  font-family: var(--font-family-accent);
  font-weight: var(--font-weight-semibold);
  font-size: 1.5rem;
  color: var(--primary-color);
  letter-spacing: 0.05em;
}

.navbar-nav .nav-link {
  font-family: var(--font-family-accent);
  font-weight: var(--font-weight-semibold);
  text-decoration: none !important;
  color: var(--text-color-dark);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--primary-color);
  text-decoration: underline;
}

/* ==========================
   Tipografia - Títulos e textos
   ========================== */
h1,
.title-principal {
  font-family: var(--font-family-secondary);
  font-weight: var(--font-weight-bold);
  font-size: 2.5rem;
  line-height: 1.2;
  color: #111111;
  margin-bottom: 2rem;
}

h2,
.title-section,
.section-title {
  font-family: var(--font-family-secondary);
  font-weight: var(--font-weight-semibold);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

h3,
.title-subsection {
  font-family: var(--font-family-secondary);
  font-weight: var(--font-weight-bold);
  font-size: 1.4rem;
  color: #1a1a1a;
  margin-top: 2.2rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

ol {
  margin-top: 0;
  margin-bottom: 1rem;
}

.text-primary-custom {
  color: var(--primary-color) !important;
}

h3.title-subsection .highlight,
.highlight {
  color: var(--primary-color);
  display: inline-block;
}

.circle-highlight {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color, orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-right: 15px;
  margin-top: 6px;
  /* alinhamento vertical com o título/h5 */
}


/* ==========================
   Seções específicas
   ========================== */
.hero {
  color: var(--text-color-dark);
  padding: 2rem 0;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  background-color: var(--background-color);
}

/* .title-principal font-weight already covered by h1 rule above */

/* ==========================
   Botões
   ========================== */
.btn-whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  /* verde WhatsApp */
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(246, 122, 13, 0.3);
  /* mantendo sua sombra */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: white;
  font-size: 28px;
  /* tamanho do ícone */
  text-decoration: none;
  user-select: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 50%;
}

.btn-whatsapp-float:hover {
  background-color: #20b458;
  /* leve escurecimento no hover */
  box-shadow: 0 6px 12px rgba(246, 122, 13, 0.5);
  text-decoration: none;
  color: white;
}

.btn-primary-custom {
  font-family: var(--font-family-accent);
  font-weight: var(--font-weight-bold);
  font-size: 1.1rem;
  background-color: var(--primary-color);
  color: #fff;
  padding: 0.6rem 2rem;
  border-radius: var(--border-radius-btn);
  margin-top: 20px;
  margin-bottom: 30px;
  border: none;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(246, 122, 13, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  padding: 15px 40px;
}

@media (max-width: 768px) {
  .btn-primary-custom {
    display: block;
    /* Garante que o botão ocupe sua própria linha */
    margin-left: auto;
    /* Centraliza horizontalmente */
    margin-right: auto;
    /* Centraliza horizontalmente */
    text-align: center;
    /* Centraliza o texto dentro do botão (opcional) */
    padding: 15px 20px !important;
  }
}

.btn-primary-custom:hover,
.btn-primary-custom:focus {
  background-color: var(--btn-hover-color);
  box-shadow: 0 6px 14px rgba(214, 110, 0, 0.5);
  outline: none;
  color: #fff;
}

.btn-primary-custom:active {
  background-color: #b65d00 !important;
  /* tom escuro do laranja com prioridade */
  box-shadow: 0 3px 8px rgba(182, 93, 0, 0.6) !important;
  outline: none !important;
  color: #fff !important;
  transform: translateY(1px) !important;
}


/* ==========================
   Seções gerais e cards
   ========================== */
section {
  padding: 2rem 0;
}

.offer-card-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.offer-card {
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  box-shadow: none;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  height: 100%;
}

.offer-card:hover {
  box-shadow: 0 8px 24px rgba(246, 122, 13, 0.15);
  border-color: var(--primary-color);
}

/* .offer-card h3 now follows global h3 pattern */

.offer-card p {
  font-family: var(--font-family-primary);
  color: var(--text-color-light);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.offer-list {
  font-family: var(--font-family-primary);
  padding-left: 1.25rem;
  color: var(--text-color-light);
  font-size: 0.95rem;
}

.offer-list li {
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.offer-indicated {
  font-family: var(--font-family-accent);
  color: var(--primary-color);
  font-weight: var(--font-weight-bold);
  font-size: 1rem;
  margin-top: 1.5rem;
  display: block;
  letter-spacing: 0.04em;
}

/* ==========================
   Passos (steps)
   ========================== */
.steps .step {
  background-color: var(--background-color);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  box-shadow: none;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.3s ease;
}

.steps .step:hover {
  box-shadow: 0 8px 24px rgba(246, 122, 13, 0.15);
}

.step-number {
  font-family: var(--font-family-accent);
  background-color: var(--primary-color);
  color: #fff;
  font-weight: var(--font-weight-bold);
  font-size: 2rem;
  width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 10px rgba(246, 122, 13, 0.3);
}

.step-text {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-semibold);
  color: var(--text-color-dark);
  font-size: 1.1rem;
  line-height: 1.4;
}

/* ==========================
   Rodapé
   ========================== */
footer {
  background-color: var(--background-color);
  color: var(--text-color-light);
  text-align: center;
  font-size: 0.9rem;
}

footer a {
  text-decoration: none !important;
  color: var(--text-color-light);
  transition: color 0.3s ease;
}

footer a:hover,
footer a:focus {
  color: var(--primary-color);
  text-decoration: underline;
}

.footer-dark {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  font-size: 0.875rem;
  padding: 3rem 1rem;
}

.footer-dark h6 {
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

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

.footer-dark ul li {
  margin-bottom: 0.5rem;
}

.footer-dark ul li a {
  color: var(--footer-text);
  text-decoration: none;
}

.footer-dark ul li a:hover {
  color: var(--footer-link-hover);
  text-decoration: underline;
}

.footer-dark p {
  margin: 0 0 0.5rem;
  color: var(--footer-text);
}

img.rounded-circle.me-3 {
  width: 50px;
  height: 50px;
}

/* ==========================
   Imagens hero
   ========================== */
.hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.hero-img:hover,
.hero-img:focus {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

/* Responsividade para telas pequenas */
@media (max-width: 767px) {
  img {
    width: 100%;
    height: auto;
    /* mantém proporção natural */
  }

  .hero-img {
    height: auto;
  }
}

/* ==========================
   Botão genérico
   ========================== */
.button {
  background-color: #000;
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #222;
}

/* ==========================
   Passos - linha conectando os círculos
   ========================== */
.steps-line-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 60px;
  flex-wrap: wrap;
}

.step {
  position: relative;
  width: var(--step-width);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 180px;
  box-sizing: border-box;
}

.circle {
  width: var(--circle-size);
  height: var(--circle-size);
  background-color: var(--circle-color);
  border-radius: 50%;
  color: white;
  font-weight: var(--font-weight-bold);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.step-text {
  font-size: 1rem;
  font-weight: var(--font-weight-medium);
  color: var(--text-color-dark);
  max-width: var(--step-width);
  margin: 0 auto;
  line-height: 1.4;
}

.steps-line-wrapper::before {
  content: '';
  position: absolute;
  top: calc(var(--circle-size) / 2);
  left: calc(var(--circle-size) / 2);
  right: calc(var(--circle-size) / 2);
  height: 0;
  border-top: 2px dashed var(--line-color);
  z-index: 0;
}

/* ==========================
   Responsividade
   ========================== */
@media (max-width: 767px) {
  .steps-line-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .steps-line-wrapper::before {
    display: none;
  }

  .step {
    width: 100%;
    min-height: auto;
  }
}

/* ==========================
   Redes sociais
   ========================== */
.social-buttons {
  display: flex;
  justify-content: center;
  /* centraliza horizontalmente os itens */
  gap: 12px;
  /* mantém espaçamento entre os botões */
  margin-top: 1rem;
  /* mantém o espaçamento superior existente */
}


.social-btn {
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.social-btn:hover,
.social-btn:focus {
  color: var(--primary-color);
  outline: none;
}

/* ==========================
   Testemunhos
   ========================== */
.testimonial-card {
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  max-width: 400px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Custom Carousel Styling */
#testimonialCarousel .carousel-inner {
  padding: 10px;
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
  width: 5%;
}

#testimonialCarousel .carousel-indicators {
  bottom: -10px;
}

#testimonialCarousel .carousel-indicators [data-bs-target] {
  background-color: var(--primary-color);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.testimonial-card h5 {
  font-size: 1.125rem;
  color: var(--text-color-dark);
  margin-bottom: 0.5rem;
}

.testimonial-card p {
  font-size: 0.9375rem;
  color: var(--text-color-light);
  margin-bottom: 1rem;
}

.testimonial-card h6 {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--text-color-dark);
}

/* ==========================
   Destaques e listas de recursos
   ========================== */
.text-warning {
  font-size: 1.125rem;
  letter-spacing: 2px;
  color: #FFA500;
}

.feature-list {
  margin-top: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 15px;
  margin-bottom: 1rem;
}

.feature-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 12px;
  margin-top: 4px;
}

.feature-subtext {
  font-size: 0.875rem;
  color: var(--text-color-light);
  margin-top: 2px;
}

.shadowefect {
  box-shadow: 0 3px 17px rgba(0, 0, 0, .1);
}

.cookie-consent-popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #fff;
  border-top: 2px solid var(--primary-color, #F67A0D);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
  padding: 1rem 0.5rem 0.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cookie-consent-content {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: #2E2E3A;
}

.cookie-consent-popup a {
  color: var(--primary-color, #F67A0D);
  font-weight: 500;
}

@media (max-width: 575px) {
  .cookie-consent-content {
    font-size: 0.97rem;
  }
}

.md-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.bg-solid-preco {
  background-color: #eceeef;
  /* Bege claro */
  color: #212529;
  /* texto escuro para bom contraste */
}

/* Ajuste do título da seção */
.bg-solid-preco .title-section {
  font-size: 1.75rem;
  /* menor que o padrão 2rem */
  font-weight: 600;
  /* leve redução do peso da fonte */
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* Ajuste do parágrafo */
.bg-solid-preco p {
  font-size: 1rem;
  /* reduzido para 16px */
  line-height: 1.5;
  /* espaçamento confortável */
  margin-bottom: 1.25rem;
  color: #343a40;
  /* tom escuro porém suave */
}
/* ==========================
   FAQ - Accordion Style (Native details/summary)
   ========================== */
.faq-section {
  padding: 60px 0;
  border-radius: var(--border-radius);
  margin-top: 40px;
}

.faq-accordion details {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  padding: 0;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-accordion details:hover {
  border-color: var(--primary-color);
}

.faq-accordion summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--font-family-secondary);
  font-weight: var(--font-weight-bold);
  color: var(--text-color-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-accordion details[open] summary::after {
  transform: rotate(180deg);
}

.faq-accordion .faq-content {
  padding: 0 1.5rem 1.5rem;
  font-family: var(--font-family-primary);
  color: var(--text-color-light);
  line-height: 1.7;
}

.faq-accordion details[open] {
  border-color: var(--primary-color);
}

.shadowefect {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shadowefect:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(246, 122, 13, 0.2);
}
