/* ============================================================
   IgrejasOn — Landing page · Redesign overlay
   Carregado APÓS assets3/css/main.css (tema Impact / Bootstrap 5)
   ============================================================ */

:root {
  --io-navy: #0d1f26;
  --io-navy-2: #14313c;
  --io-navy-3: #1b3d4b;
  --io-orange: #ff7a2d;
  --io-orange-2: #f97316;
  --io-teal: #2dd4bf;
  --io-cream: #f6f9fb;
  --io-muted: #5b6b72;

  --accent-color: var(--io-orange);
  --heading-color: var(--io-navy);
  --default-color: #223036;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Montserrat", system-ui, sans-serif;
  color: var(--default-color);
  overflow-x: hidden;
}

/* ------------------------------------------------------------
   Cabeçalho fixo (sempre escuro, links claros)
   ------------------------------------------------------------ */
/* Obs.: não usar backdrop-filter aqui — ele cria um containing block para os
   elementos position:fixed do tema (overlay do menu mobile) e quebra o layout */
.header {
  --background-color: rgba(10, 24, 30, 0.96);
  background: var(--background-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 6px;
}

.header .navmenu a,
.header .navmenu .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
}

.header .navmenu a:hover,
.header .navmenu a.active {
  color: var(--io-orange);
}

.header .navmenu > ul > li > a::after {
  background: var(--io-orange);
}

.header .navmenu .dropdown-menu {
  background: #fff;
  border: 1px solid rgba(13, 31, 38, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(13, 31, 38, 0.16);
  padding: 0.5rem;
}

.header .navmenu .dropdown-menu a {
  color: var(--io-navy);
}

.header .navmenu .dropdown-menu a:hover {
  color: var(--io-orange);
}

.header .logo img {
  height: 44px;
  width: auto;
  border-radius: 10px;
}

.header .mobile-nav-toggle {
  color: #fff;
}

/* ------------------------------------------------------------
   Hero
   ------------------------------------------------------------ */
.hero {
  background:
    radial-gradient(900px 500px at 85% -10%, rgba(45, 212, 191, 0.22), transparent 60%),
    radial-gradient(700px 480px at 10% 110%, rgba(255, 122, 45, 0.16), transparent 60%),
    linear-gradient(160deg, #0a181e 0%, var(--io-navy) 45%, var(--io-navy-2) 100%);
  padding: 170px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 75%);
  pointer-events: none;
}

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

.hero .badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 122, 45, 0.12);
  border: 1px solid rgba(255, 122, 45, 0.35);
  color: #ffd9b8;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
}

.hero .badge-hero .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--io-teal);
  box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(45, 212, 191, 0); }
  100% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); }
}

.hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.14;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 1.2rem 0 1.1rem;
}

.hero h1 .highlight {
  background: linear-gradient(92deg, var(--io-orange) 0%, var(--io-teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero .hero-lead {
  font-size: 1.06rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
}

.hero .hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

/* Botões primários alinhados à marca (usados pelos CTAs via botao_cta) */
.btn-primary {
  --bs-btn-bg: var(--io-orange-2);
  --bs-btn-border-color: var(--io-orange-2);
  --bs-btn-hover-bg: var(--io-orange);
  --bs-btn-hover-border-color: var(--io-orange);
  --bs-btn-active-bg: var(--io-orange);
  --bs-btn-active-border-color: var(--io-orange);
  --bs-btn-disabled-bg: var(--io-orange-2);
  --bs-btn-disabled-border-color: var(--io-orange-2);
  background-image: linear-gradient(135deg, var(--io-orange) 0%, var(--io-orange-2) 100%);
  border: none;
  border-radius: 100px;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-image 0.25s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.45);
}

.btn-cta {
  --bs-btn-bg: linear-gradient(135deg, var(--io-orange) 0%, var(--io-orange-2) 100%);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background-image: var(--bs-btn-bg);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 1.7rem;
  border-radius: 100px;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-cta:hover,
.btn-cta:focus {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(249, 115, 22, 0.45);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 600;
  padding: 0.9rem 1.7rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}

.btn-cta-outline:hover {
  border-color: var(--io-teal);
  color: var(--io-teal);
  transform: translateY(-3px);
}

.btn-cta-outline i {
  color: var(--io-teal);
  font-size: 1.1rem;
}

/* Contadores de prova social */
.hero .stat-row {
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero .stat-item {
  padding: 0.4rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero .stat-item:last-child {
  border-right: none;
}

.hero .stat-number {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
}

.hero .stat-number .suffix {
  color: var(--io-orange);
}

.hero .stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  letter-spacing: 0.02em;
}

/* Mockup do celular */
.hero .mockup-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .mockup-glow {
  position: absolute;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.35) 0%, rgba(45, 212, 191, 0.08) 45%, transparent 70%);
  filter: blur(6px);
}

.hero .device-wrapper {
  max-width: 300px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
}

.hero .device .screen video {
  object-fit: cover;
}

/* Chips flutuantes ao redor do celular */
.hero .float-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--io-navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.55rem 0.9rem;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  animation: floaty 5s ease-in-out infinite;
}

.hero .float-chip i {
  font-size: 1rem;
  color: var(--io-orange);
}

.hero .float-chip.chip-1 { top: 8%;  left: 2%; }
.hero .float-chip.chip-2 { bottom: 14%; right: 0; animation-delay: 2.2s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Caixas de ícones do hero */
.hero .icon-boxes {
  margin-top: 4.5rem;
}

.hero .icon-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 1.6rem 1.4rem;
  height: 100%;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.hero .icon-box:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 122, 45, 0.5);
}

.hero .icon-box .icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 122, 45, 0.25), rgba(45, 212, 191, 0.25));
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.hero .icon-box .title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.hero .icon-box small {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  display: block;
  margin-top: 0.35rem;
}

/* ------------------------------------------------------------
   Títulos de seção
   ------------------------------------------------------------ */
.section-title {
  margin-bottom: 3.2rem;
}

.section-title .eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--io-orange-2);
  margin-bottom: 0.6rem;
}

.section-title h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--io-navy);
}

.section-title p {
  color: var(--io-muted);
  font-size: 0.98rem;
}

/* ------------------------------------------------------------
   Clientes (prova social)
   ------------------------------------------------------------ */
.clients {
  background: var(--io-cream);
  border-bottom: 1px solid rgba(13, 31, 38, 0.06);
}

.clients .section-title h2 {
  font-size: 1.35rem;
}

.clients .swiper-slide {
  filter: grayscale(1);
  opacity: 0.65;
  transition: all 0.3s ease;
}

.clients .swiper-slide:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ------------------------------------------------------------
   Funcionalidades (cards de serviço)
   ------------------------------------------------------------ */
.services {
  background: #fff;
}

.service-item {
  border: 1px solid rgba(13, 31, 38, 0.08);
  border-radius: 20px;
  padding: 2rem 1.6rem;
  height: 100%;
  background: #fff;
  box-shadow: 0 6px 24px rgba(13, 31, 38, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 122, 45, 0.4);
  box-shadow: 0 22px 45px rgba(13, 31, 38, 0.12);
}

.service-item .icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.45rem;
  color: #fff;
  background: linear-gradient(135deg, var(--io-orange) 0%, var(--io-orange-2) 100%);
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.3);
  margin-bottom: 1.1rem;
}

.service-item h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--io-navy);
}

.service-item p {
  font-size: 0.92rem;
  color: var(--io-muted);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ------------------------------------------------------------
   Sobre / antes e depois
   ------------------------------------------------------------ */
.about {
  background: var(--io-cream);
}

.about .img-destaque {
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(13, 31, 38, 0.22);
}

.about .comparativo {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(13, 31, 38, 0.1);
}

.about .comparativo .cabec {
  font-size: 1.02rem;
  font-weight: 700;
}

.about .comparativo li {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

/* ------------------------------------------------------------
   Depoimentos
   ------------------------------------------------------------ */
.testimonials {
  background: linear-gradient(180deg, #ffffff 0%, var(--io-cream) 100%);
}

.testimonials .testimonial-item {
  border: 1px solid rgba(13, 31, 38, 0.08);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(13, 31, 38, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(13, 31, 38, 0.13);
}

.testimonials .testimonial-item h3 {
  color: var(--io-navy);
}

.testimonials .testimonial-item h4 {
  color: var(--io-orange-2);
  font-weight: 600;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
}

.testimonials .testimonial-item p {
  color: var(--io-muted);
  line-height: 1.75;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 122, 45, 0.35);
  font-size: 30px;
}

.testimonials .avatar-inicial {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--io-navy) 0%, var(--io-navy-2) 100%);
  border: 2px solid var(--io-orange);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(13, 31, 38, 0.25);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--io-orange);
}

/* ------------------------------------------------------------
   Planos
   ------------------------------------------------------------ */
.pricing {
  background: #fff;
}

/* Toggle Mensal/Semestral/Anual — espaçado dos cards abaixo.
   O .row.g-4 do Bootstrap aplica margin-top negativo (-24px) nos cards,
   então a margin inferior precisa compensar isso. */
.periodo-toggle {
  margin-bottom: 5rem !important;
}

.periodo-toggle + .row {
  margin-top: 0 !important;
}

.periodo-toggle-group {
  background: #f3f6f8;
  border: 1px solid rgba(13, 31, 38, 0.08);
}

.periodo-toggle .btn-periodo {
  border: none;
  border-radius: 3rem;
  padding: 0.55rem 1.6rem;
  font-weight: 600;
  color: var(--io-muted, #5f6f76);
  background: transparent;
  transition: all 0.25s ease;
}

.periodo-toggle .btn-periodo:hover {
  color: var(--io-orange-2);
  background: rgba(255, 122, 45, 0.08);
}

.periodo-toggle .btn-periodo.active {
  background: var(--io-orange-2);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 122, 45, 0.35);
}

.pricing-item {
  border: 1px solid rgba(13, 31, 38, 0.08);
  border-radius: 22px;
  padding: 2.4rem 1.9rem;
  height: 100%;
  background: #fff;
  box-shadow: 0 10px 34px rgba(13, 31, 38, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(13, 31, 38, 0.13);
}

.pricing-item .icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.3rem;
  background: rgba(255, 122, 45, 0.12);
  color: var(--io-orange-2);
}

.pricing-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--io-navy);
}

.pricing-item h4 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--io-navy);
}

.pricing-item h4 sup {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--io-muted);
  top: -1em;
}

.pricing-item h4 span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--io-muted);
}

.pricing-item ul {
  padding-left: 0;
  list-style: none;
  flex: 1;
}

.pricing-item ul li {
  font-size: 0.9rem;
  padding: 0.42rem 0;
  color: var(--default-color);
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.pricing-item ul li i {
  color: var(--io-teal);
  margin-top: 0.15rem;
}

/* Item de armazenamento (quota) — destaque no topo da lista de itens */
.pricing-item ul li.quota-item {
  border-bottom: 1px dashed rgba(13, 31, 38, 0.12);
  padding-bottom: 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 0.95rem;
}

.pricing-item ul li.quota-item i {
  color: var(--io-orange-2);
}

.pricing-item ul li.quota-item b {
  color: var(--io-navy);
}

.pricing-item ul li.na i {
  color: #fca5a5;
}

.pricing-item ul li.na span {
  color: #9aa7ad;
  text-decoration: line-through;
}

.pricing-item.featured {
  background: linear-gradient(165deg, var(--io-navy) 0%, var(--io-navy-2) 60%, var(--io-navy-3) 100%);
  border-color: transparent;
  position: relative;
  box-shadow: 0 24px 60px rgba(13, 31, 38, 0.4);
}

.pricing-item.featured::before {
  content: "Mais popular";
  position: absolute;
  top: 18px;
  right: -12px;
  background: linear-gradient(135deg, var(--io-orange), var(--io-orange-2));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.4);
}

.pricing-item.featured h3,
.pricing-item.featured h4,
.pricing-item.featured h4 span,
.pricing-item.featured h4 sup {
  color: #fff;
}

.pricing-item.featured .icon {
  background: rgba(255, 122, 45, 0.18);
  color: #ffb98a;
}

.pricing-item.featured ul li {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-item.featured ul li.na span {
  color: rgba(255, 255, 255, 0.45);
}

.pricing .buy-btn {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--io-orange);
  color: var(--io-orange-2);
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  border-radius: 100px;
  transition: all 0.25s ease;
}

.pricing .buy-btn:hover {
  background: var(--io-orange);
  border-color: var(--io-orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.35);
}

.pricing-item.featured .buy-btn {
  background: linear-gradient(135deg, var(--io-orange), var(--io-orange-2));
  border-color: transparent;
  color: #fff;
}

.pricing-item.featured .buy-btn:hover {
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.5);
}

/* ------------------------------------------------------------
   FAQ
   ------------------------------------------------------------ */
.faq .faq-item {
  border: 1px solid rgba(13, 31, 38, 0.08);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(13, 31, 38, 0.04);
  transition: border-color 0.3s ease;
}

.faq .faq-item.faq-active {
  border-color: rgba(255, 122, 45, 0.45);
}

.faq .faq-container .faq-item h3 .num {
  background: var(--io-orange);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05rem;
  line-height: 1;
  margin-right: 14px;
  padding: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq .faq-container .faq-item h3 .num i {
  color: #fff;
  transition: transform 0.3s ease;
}

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

.faq .faq-item .num i {
  transition: transform 0.3s ease;
}

.faq .faq-toggle {
  color: var(--io-orange-2);
}

/* ------------------------------------------------------------
   Contato
   ------------------------------------------------------------ */
.contact {
  background: var(--io-cream);
}

.contact .info-container {
  background: linear-gradient(170deg, var(--io-navy) 0%, var(--io-navy-2) 100%);
  border-radius: 22px;
  padding: 2.4rem 1.8rem;
}

.contact .info-item i {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact .info-item h3 {
  color: #fff;
  font-size: 1rem;
}

.contact .info-item p a {
  color: rgba(255, 255, 255, 0.85);
}

.contact .php-email-form {
  background: #fff;
  border: 1px solid rgba(13, 31, 38, 0.08);
  border-radius: 22px;
  padding: 2.2rem;
  box-shadow: 0 14px 40px rgba(13, 31, 38, 0.08);
}

.contact .php-email-form .form-control {
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  border-color: rgba(13, 31, 38, 0.14);
  font-size: 0.94rem;
}

.contact .php-email-form .form-control:focus {
  border-color: var(--io-orange);
  box-shadow: 0 0 0 0.25rem rgba(255, 122, 45, 0.12);
}

.contact .php-email-form button[type="submit"] {
  background: linear-gradient(135deg, var(--io-orange), var(--io-orange-2));
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact .php-email-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(249, 115, 22, 0.45);
}

/* ------------------------------------------------------------
   Rodapé
   ------------------------------------------------------------ */
.footer {
  background: linear-gradient(170deg, #0a181e 0%, var(--io-navy) 100%);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 4rem;
}

.footer .logo img {
  height: 46px;
  width: auto;
  border-radius: 10px;
}

.footer h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.1rem;
}

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

.footer .footer-links ul li {
  padding: 0.3rem 0;
}

.footer .footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer .footer-links ul li a:hover {
  color: var(--io-orange);
}

.footer .footer-contact p {
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.footer .footer-contact p a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer .footer-contact p a:hover {
  color: var(--io-orange);
}

.footer .social-links a {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  color: #fff;
  transition: all 0.25s ease;
}

.footer .social-links a:hover {
  background: var(--io-orange);
  border-color: var(--io-orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer .copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.4rem;
  margin-top: 3rem;
}

.footer .copyright .sitename {
  color: var(--io-orange);
}

/* Botão fixo do WhatsApp */
#whatsapp {
  position: fixed;
  right: 22px;
  bottom: 26px;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: transform 0.25s ease;
}

#whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
  color: #fff;
}

/* ------------------------------------------------------------
   Ajustes responsivos
   ------------------------------------------------------------ */
@media (max-width: 991.98px) {
  .hero {
    padding: 150px 0 60px;
  }

  .hero .mockup-wrap {
    margin-top: 2.5rem;
  }

  .hero .stat-item {
    border-right: none;
  }

  .header .navmenu {
    background: var(--io-navy);
  }
}

/* Menu mobile: o tema usa painel branco, mas os links foram definidos
   brancos (header escuro). Troca o fundo do painel para navy escuro,
   combinando com o header — o texto branco fica legível. */
@media (max-width: 1199.98px) {
  .navmenu ul {
    background-color: var(--io-navy);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navmenu ul ul {
    background-color: rgba(255, 255, 255, 0.06);
  }

  /* Dropdown (login) dentro do menu mobile: o CSS do tema esconde
     `.navmenu .dropdown ul`; força o Bootstrap a exibir quando ativo.
     Mantém o cartão do login branco para destacar do painel escuro. */
  .navmenu .dropdown-menu.show {
    display: block;
    position: static;
    width: auto;
    border: 0;
    border-radius: 12px;
    margin: 6px 20px 14px;
    background: #fff;
    box-shadow: none;
  }
}

@media (max-width: 575.98px) {
  .hero .float-chip {
    display: none;
  }

  .hero .device-wrapper {
    max-width: 240px;
  }

  .hero .stat-number {
    font-size: 1.4rem;
  }
}
