/* RESET GERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* HEADER ARSENAL */
.ars-header {
    width: 100%;
    background: #ad2f2e;
    padding: 15px 0;
    position: fixed;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid #1a1a1a;
}

.ars-header-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.ars-logo img {
    height: 55px;
}

/* NAV DESKTOP */
.ars-nav ul {
    display: flex;
    align-items: center;
    gap: 25px;
}

.ars-nav ul li a {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s ease;
}

.ars-nav ul li a:hover {
    color: #d82f2f;
}

.nav-cta {
    background: #d82f2f;
    padding: 10px 18px;
    border-radius: 8px;
}

.nav-cta:hover {
    background: #b62525;
}

/* MOBILE BUTTON */
.ars-mobile-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.ars-mobile-btn span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: 0.3s ease;
}

/* MOBILE MENU */
.ars-mobile-menu {
    display: none;
    flex-direction: column;
    background: #000;
    width: 100%;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.ars-mobile-menu a {
    color: #fff;
    padding: 12px 0;
    font-size: 18px;
    border-bottom: 1px solid #111;
}

.ars-mobile-menu a:hover {
    color: #d82f2f;
}

/* RESPONSIVO */
@media (max-width: 900px) {
    .ars-nav {
        display: none;
    }

    .ars-mobile-btn {
        display: flex;
    }

    .ars-mobile-menu {
        display: none;
    }

    .ars-mobile-menu.show {
        display: flex;
        animation: fadeMenu 0.3s ease;
    }
}

@keyframes fadeMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ===================== HERO ===================== */
/* HERO */
#hero {
  width: 100%;
  min-height: 100vh;
  background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 80px;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Filme escuro */
  z-index:0;
}
.hero-container {
  color: #fff;
  padding: 0 20px;
  max-width: 900px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin: 20px 0 40px;
  line-height: 1.5;
}

.highlight {
  color: #ad2f2e; /* Dourado para destacar */
  font-weight: 700;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.btn-hero {
  display: inline-block;
  background: #ad2f2e; /* Botão chamativo */
  color: #ffffff;
  font-weight: 700;
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  animation: pulse 2s infinite; /* Pulso contínuo */
  box-shadow: 0 8px 20px rgba(0,0,0,0.8);
}

.btn-hero:hover {
  background: rgb(153, 0, 0);
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
}

.hero-location {
  margin-top: 25px;
  font-size: 1rem;
  color: #fff;
  
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.1rem;
  }
  .btn-hero {
    padding: 15px 35px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .btn-hero {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
}


/* ===================== SEÇÕES ===================== */
section {
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===================== TITULOS ===================== */
.title-container {
  text-align: center;
  margin-bottom: 50px;
  
}

.title-container h2 {
  font-size: 2.8rem;
  color: #ad2f2e;
  font-weight: 700;
  
}

  #benefits .title-container h2 {
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5); /* x-offset, y-offset, blur, cor */
  }
#benefits .title-container p {
  text-shadow: 2px 2px 6px rgba(0,0,0,0.1); /* x-offset, y-offset, blur, cor */
}

.title-container p {
  font-size: 1.1rem;
  color: #555;
  margin-top: 10px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  
}

#oportunidade {
  padding: 80px 0;
  background: #111; /* Preto Arsenal */
  color: #fff;
}

#oportunidade h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #fff;
}

#oportunidade .sub {
  text-align: center;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  opacity: .8;
}

.oportunidade-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(4, 1fr);
}

.oportunidade-item {
  padding: 25px;
  background: #1a1a1a;
  border-radius: 12px;
  border: 1px solid #222;
  transition: .3s ease;
}

.oportunidade-item:hover {
  transform: translateY(-5px);
  border-color: #ff0000; /* vermelho arsenal */
}

.oportunidade-item h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #ff0000;
}

.oportunidade-item p {
  opacity: .9;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {
  .oportunidade-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  #oportunidade h2 {
    font-size: 1.7rem;
  }
}


/* BENEFÍCIOS INTERATIVOS */

/* Ícone discreto no título */
.tap-icon {
  float: right;
  opacity: 0.65;
  font-size: 18px;
  pointer-events: none;
}

/* Hover indicando interação */
.info-card {
  cursor: pointer;
  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  border-color: #ff3b3b;
}

/* Pulso apenas nos cards FECHADOS */
.info-card:not(.active) {
  animation: pulseCard 2.4s infinite;
}

@keyframes pulseCard {
  0% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0.1); }
  70% { box-shadow: 0 0 0 12px rgba(255, 59, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 59, 59, 0); }
}

.benefits-grid {
  display: flex;
  gap: 40px;
}

/* Coluna de cards */
.cards-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD */
.info-card {
  background: #ad2f2e;
  color: #fff;
  padding: 20px;
  border-radius: 15px;
  position: relative;
  border: 2px solid transparent;
}

.info-card.active {
  background: #fff;
  color: #ad2f2e;
  border-color: #ad2f2e;
}

.info-card.active:hover {
  background: #d6d6d6;
  color: #000000;
}

/* Detalhes do card */
.card-detail {
  display: none;
  margin-top: 15px;
  opacity: 0;
  transition: opacity .3s ease;
}

/* Mostrar apenas no card ativo */
.info-card.active .card-detail {
  display: block !important;
  opacity: 1;
}

/* Imagem no mobile */
.card-mobile-image {
  display: none;
  width: 100%;
  border-radius: 15px;
  margin-top: 10px;
}

/* Coluna de imagem desktop */
.image-column {
  flex: 1;
}

.image-column img {
  width: 100%;
  border-radius: 15px;
}

/* CTA */
.benefits-cta {
  text-align: center;
  margin-top: 40px;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.text-cta {
  font-size: 1.8rem;
  color: #000;
}

.btn-cta {
  display: inline-block;
  background: #ad2f2e;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.btn-cta:hover {
  background: #e03b3b;
  transform: scale(1.1);
}

/* Responsivo */
@media (max-width: 576px) {
  .btn-cta {
    font-size: 1rem;
    padding: 12px 25px;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    flex-direction: column;
  }

  .image-column {
    display: none;
  }

  /* Mostrar imagem do card no mobile */
  .info-card.active .card-mobile-image {
    display: block;
  }
}

/* SWIPER */
.mySwiper .swiper-slide {
  text-align: center;
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mySwiper .swiper-slide img {
  width: 100%;
  border-bottom: 1px solid #ddd;
}

.slide-caption {
  padding: 15px;
  font-weight: 600;
  color: #ad2f2e;
  font-size: 1rem;
}


/* ===== SEÇÃO MÉTODOS ===== */

.metodos-section {
  padding: 80px 0;
  background: #000;
}

.metodos-section .title-container {
  text-align: center;
  margin-bottom: 40px;
}

.metodos-section h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 10px;
}

.metodos-section p {
  color: #fff;
  opacity: .8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* GRID DOS MÉTODOS */
.metodos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 50px;
}

.metodo-item {
  background: #0d0d0d;
  padding: 25px;
  border-radius: 14px;
  border: 1px solid #2a2a2a;
  transition: .3s ease;
}

.metodo-item:hover {
  transform: translateY(-6px);
  border-color: #ff3b3b;
}

.metodo-item h3 {
  color: #ff3b3b;
  font-size: 20px;
  margin-bottom: 10px;
}

.metodo-item p {
  color: #fff;
  opacity: .85;
  line-height: 1.5;
}

/* CTA */
.cta-metodos {
  text-align: center;
  margin-top: 60px;
}

.btn-metodos {
  display: inline-block;
  background: #ad2f2e; /* Botão chamativo */
  color: #ffffff;
  font-weight: 700;
  padding: 18px 45px;
  border-radius: 50px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  transition: all 0.3s ease;
  animation: pulse 2s infinite; /* Pulso contínuo */
  box-shadow: 0 8px 20px rgba(0,0,0,0.8);
}

.btn-metodos:hover {
  background: #d82f2f;
  transform: scale(1.05);
}

/* PULSO */
@keyframes pulseMetodos {
  0% { transform: scale(1); }
  50% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .metodos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .metodos-grid {
    grid-template-columns: 1fr;
  }
}


/* PROVA SOCIAL */
.ars-prova-social {
    background: #ffffff;
    padding: 90px 20px;
    font-family: 'Poppins', sans-serif;
    color: #000;
}

.ars-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* TITULOS */
.ars-title {
    font-size: 40px;
    font-weight: 800;
    color: #d82f2f;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 
        
        4px 4px 10px rgba(0,0,0,0.50); /* brilho suave de profundidade */
}


.ars-subtitle {
    font-size: 18px;
    max-width: 760px;
    margin: 0 auto 60px auto;
    opacity: .9;
}

/* GRID FLEXÍVEL PARA FUTUROS DEPOIMENTOS */
.ars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}

.ars-card {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 24px;
    transition: .25s ease;
}

.ars-card:hover {
    transform: translateY(-6px);
    border-color: #d82f2f;
    box-shadow: 0px 8px 25px rgba(216, 47, 47, 0.15);
}

/* VIDEO */
.ars-video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    background: #000;
}

.ars-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXTOS */
.ars-name {
    font-size: 20px;
    font-weight: 700;
    color: #d82f2f;
    margin-bottom: 6px;
}

.ars-desc {
    font-size: 15px;
    opacity: .85;
}

/* CTA FINAL */
.ars-cta-box {
    background: #fff4f4;
    border: 1px solid #ffd6d6;
    padding: 50px 30px;
    border-radius: 18px;
}

.ars-cta-title {
    font-size: 28px;
    color: #d82f2f;
    font-weight: 800;
    margin-bottom: 10px;
}

.ars-cta-sub {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: .9;
}

/* BOTÃO COM ANIMAÇÃO DE PULSO */
.ars-cta-btn {
    background: #d82f2f;
    color: #ffffff;
    padding: 16px 32px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    transition: .25s ease;
}

.ars-cta-btn:hover {
    background: #b32727;
    transform: scale(1.08);
}

/* ANIMAÇÃO DE PULSO */
@keyframes pulseArsenal {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse-btn {
    animation: pulseArsenal 1.8s infinite;
}

/* RESPONSIVIDADE */
@media (max-width: 480px) {
    .ars-title {
        font-size: 30px;
    }
    .ars-grid {
        grid-template-columns: 1fr;
    }
}

/* Ícone de Play sobre o vídeo */
.ars-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    background: rgba(0,0,0,0.55);
    color: #fff;
    
    padding: 18px 24px;
    border-radius: 50%;
    font-size: 28px;
    font-weight: 700;
    pointer-events: none; /* deixa o vídeo clicável */
    transition: .25s ease;
}

/* animação no hover */
.ars-video-wrapper:hover .ars-play-icon {
    background: rgba(216,47,47,0.85);
    transform: translate(-50%, -50%) scale(1.12);
}

/* ===================== PLANOS ===================== */
/* SEÇÃO */
.planos-section-arsenal {
  background: #000;
  padding: 80px 0;
  color: #fff;
}


.planos-section-arsenal .title-container h2 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.planos-section-arsenal .title-container p {
  color: #ddd;
  font-size: 1.1rem;
}

/* GRID */
.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

/* CARD BASE */
.plano-card-arsenal {
  background: #111;
  border: 1px solid #222;
  padding: 30px;
  border-radius: 16px;
  transition: transform .3s ease, border .3s ease;
}

.plano-card-arsenal:hover {
  transform: translateY(-8px);
  border-color: #d82f2f;
}

.plano-card-arsenal h3 {
  color: #d82f2f;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.plano-desc {
  color: #ccc;
  margin-bottom: 20px;
}

/* BENEFÍCIOS */
.beneficios li {
  color: #eee;
  margin-bottom: 8px;
  font-size: 1rem;
}

/* PREÇOS */
.precos strong {
  font-size: 1.4rem;
  color: #fff;
}

.avista {
  color: #bbb;
  font-size: 0.95rem;
}

/* BADGE - MAIS ESCOLHIDO */
.destaque-arsenal {
  border: 2px solid #d82f2f;
  position: relative;
}

.badge-escolhido-arsenal {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #d82f2f;
  color: #fff;
  padding: 5px 15px;
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 20px;
}

/* BOTÕES */
.btn-plano-arsenal {
  display: block;
  text-align: center;
  background: #d82f2f;
  padding: 14px 0;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 10px;
  margin-top: 25px;
  transition: transform .3s ease, background .3s ease;
}

.btn-plano-arsenal:hover {
  background: #b22727;
  transform: scale(1.05);
}

.destaque-btn-arsenal {
  background: #ff4545 !important;
}

.destaque-btn-arsenal:hover {
  background: #d82f2f !important;
}

/* PULSO APENAS NO PLANO DESTAQUE */
@keyframes pulse-arsenal {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 47, 47, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 18px 10px rgba(216, 47, 47, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(216, 47, 47, 0);
  }
}

/* Botão do plano destaque */
.plano-card.destaque .btn-plano,
.plano-card.destaque .destaque-btn {
  animation: pulse-arsenal 1.8s infinite ease-in-out;
}

/* ==========================
       SEÇÃO GARANTIA
========================== */

.garantia-section {
  background: #ffffff;
  padding: 80px 0;
}

.garantia-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.garantia-title {
  font-size: 38px;
  font-weight: 800;
  color: #d82f2f;
  margin-bottom: 20px;
}

.garantia-sub {
  font-size: 18px;
  color: #000;
  opacity: 0.8;
  line-height: 1.6;
}

/* CAIXA DO SELO */
.garantia-central {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  border: 2px solid #d82f2f;
  margin-bottom: 70px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.08);
}

.garantia-selo {
  width: 140px;
  margin-bottom: 20px;
}

.garantia-central-title {
  color: #d82f2f;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.garantia-central-text {
  color: #000;
  font-size: 17px;
  opacity: 0.85;
  line-height: 1.5;
}

/* PILARES */
.garantia-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.garantia-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  width: 300px;
  border: 2px solid #e4e4e4;
  transition: .3s ease;
  text-align: center;
}

.garantia-card:hover {
  border-color: #d82f2f;
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.garantia-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.garantia-card-title {
  color: #d82f2f;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.garantia-card p {
  color: #000;
  opacity: .8;
  font-size: 16px;
  line-height: 1.5;
}

/* CTA */
.garantia-cta {
  text-align: center;
  margin-top: 40px;
}

.garantia-cta-text {
  font-size: 22px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
}

/* CTA PULSANTE */
@keyframes pulseBtn {
  0% { transform: scale(1); }
  50% { transform: scale(1.07); }
  100% { transform: scale(1); }
}

.garantia-btn {
  background: #d82f2f;
  color: #fff;
  padding: 16px 40px;
  font-size: 18px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-block;
  transition: 0.3s;
  animation: pulseBtn 2s infinite;
}

.garantia-btn:hover {
  background: #b62727;
  transform: scale(1.1);
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .garantia-title { font-size: 32px; }
  .garantia-grid { flex-direction: column; align-items: center; }
  .garantia-card { width: 100%; max-width: 350px; }
}

/* ===========================
   SEÇÃO SOBRE A ARSENAL
=========================== */

.sobre-arsenal-section {
    background: #000;
    padding: 80px 20px;
    color: #fff;
}

.ars-title-red {
    font-size: 40px;
    font-weight: 800;
    color: #d82f2f;
    text-shadow: 2px 2px 8px rgba(216, 47, 47, 0.4);
    margin-bottom: 30px;
    text-align: center;
}

.sobre-text {
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
    color: #e6e6e6;
}

/* Grid dos cards */
.sobre-box-grid {
    margin-top: 45px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* Card interno */
.sobre-box {
    background: #0e0e0e;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #1d1d1d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sobre-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 18px rgba(216, 47, 47, 0.25);
}

/* FOTO AJUSTÁVEL SEM DISTORCER */
.sobre-img {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    background: #1c1c1c;
}

.sobre-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* premium no desktop */
    border-radius: 12px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .sobre-img {
        height: auto;               /* libera a altura */
        background: #000;           /* fundo premium Arsenal */
        padding: 10px;              /* cria moldura */
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 12px;
    }

    .sobre-img img {
        width: 100%;
        height: auto;               /* evita corte e distorção */
        object-fit: contain;        /* mostra a imagem inteira */
        max-height: 260px;          /* limite para não ficar gigante */
        border-radius: 10px;
    }

}
.sobre-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #d82f2f;
    margin-bottom: 10px;
}

.sobre-box p {
    color: #dcdcdc;
    font-size: 16px;
}

/* CTA */
.sobre-cta-area {
    text-align: center;
    margin-top: 50px;
}

.sobre-cta {
    display: inline-block;
    background: #d82f2f;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    transition: 0.3s ease;
    animation: pulseCta 2s infinite;
}

.sobre-cta:hover {
    background: #b62525;
    transform: scale(1.05);
}

@keyframes pulseCta {
    0% { transform: scale(1); }
    50% { transform: scale(1.07); }
    100% { transform: scale(1); }
}

/* Animação padrão Arsenal */
.ars-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInArs 1s ease forwards;
}

@keyframes fadeInArs {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: #fff;
    padding: 80px 20px;
}

.faq-title {
    font-size: 40px;
    font-weight: 800;
    color: #d82f2f;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(216, 47, 47, 0.3);
}

.faq-subtitle {
    font-size: 18px;
    text-align: center;
    color: #333;
    max-width: 600px;
    margin: 0 auto 40px;
}

.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: #f4f4f4;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    transition: box-shadow .3s;
}

.faq-item.open {
    box-shadow: 0 0 14px rgba(216, 47, 47, 0.25);
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 18px 22px;
    font-size: 18px;
    color: #000;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background .3s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-icon {
    font-size: 25px;
    font-weight: 900;
    color: #d82f2f;
    transition: transform .3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 18px 22px;
}

/* Arsenal fade animation */
.ars-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInArs 1s ease forwards;
}

@keyframes fadeInArs {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== CTA FINAL ===== */
.cta-final-section {
    background: #000;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Títulos */
.cta-title {
    font-size: 46px;
    font-weight: 900;
    color: #d82f2f;
    text-shadow: 2px 2px 10px rgba(216, 47, 47, 0.5);
    margin-bottom: 18px;
}

.cta-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: #dcdcdc;
    margin-bottom: 30px;
}

/* ===== CONTADOR ===== */
.contador-wrapper {
    margin-bottom: 40px;
}

.contador-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.contador {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.count-box {
    background: #111;
    padding: 20px;
    border-radius: 12px;
    width: 90px;
    box-shadow: 0 0 12px rgba(216, 47, 47, 0.4);
    transform: scale(1);
    transition: .3s ease;
}

.count-box:hover {
    transform: scale(1.08);
}

.count-box span {
    font-size: 34px;
    font-weight: 900;
    color: #d82f2f;
}

.count-box p {
    margin-top: 5px;
    font-size: 14px;
    color: #dcdcdc;
}

/* ===== CTA BUTTON ===== */
.cta-button {
    display: inline-block;
    background: #d82f2f;
    color: #fff;
    padding: 20px 50px;
    border-radius: 60px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-top: 20px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(216, 47, 47, 0.5);
    transition: .3s ease;
    animation: pulseBtn 2s infinite;
}

.cta-button:hover {
    background: #b62525;
    transform: scale(1.05);
}

/* ===== INFO ===== */
.cta-info {
    margin-top: 25px;
    font-size: 16px;
    color: #c4c4c4;
}

/* ===== PULSE ===== */
@keyframes pulseBtn {
    0% { transform: scale(1); }
    50% { transform: scale(1.07); }
    100% { transform: scale(1); }
}

/* ===== Animação padrão Arsenal ===== */
.ars-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInArs 1s ease forwards;
}

@keyframes fadeInArs {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
    .contador {
        gap: 10px;
    }

    .count-box {
        width: 70px;
        padding: 15px;
    }

    .count-box span {
        font-size: 28px;
    }
}


/* ===================== MAPA ===================== */
#mapa iframe {
  width: 100%;
  height: 450px;
  border-radius: 15px;
  border: 0;
}
#local .map-container {
  width: 100%;
  overflow: hidden;
  border-radius: 15px;              /* Bordas arredondadas */
  border: 3px solid #c60000;        /* Borda vermelha */
  box-shadow: 0 4px 15px rgba(0,0,0,0.25); /* Sombra suave */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito “hover” no desktop */
#local .map-container:hover {
  transform: scale(1.01);
  box-shadow: 0 6px 22px rgba(0,0,0,0.35);
}


/* ----------------------------- */
/* FOOTER ARSENAL */
/* ----------------------------- */

.ars-footer {
    background: #0d0d0d;
    color: #ffffff;
    padding: 60px 0 35px;
    border-top: 3px solid #9d0000;
}

.ars-footer-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* LOGO */
.ars-footer-logo img {
    width: 130px;
    margin: 0 auto 35px;
    display: block;
}

/* CTA */
.ars-footer-cta {
    text-align: center;
    margin-bottom: 40px;
}

.ars-footer-btn {
    display: inline-block;
    background: #e01414;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.25s;
}

.ars-footer-btn:hover {
    background: #b80000;
}

/* GRID */
.ars-footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.ars-footer-col h4 {
    color: #e01414;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.ars-footer-col ul {
    list-style: none;
    padding: 0;
}

.ars-footer-col ul li {
    margin-bottom: 12px;
}

/* LINKS */
.ars-footer-col a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.25s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ars-footer-col a:hover {
    color: #e01414;
}

/* ÍCONES */
.icon svg {
    display: inline-block;
}

/* ENDEREÇO */
.ars-footer-col p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* BOTTOM */
.ars-footer-bottom {
    text-align: center;
    border-top: 1px solid #2a2a2a;
    padding-top: 15px;
}

.ars-footer-bottom p {
    color: #aaaaaa;
    font-size: 0.85rem;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .ars-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ars-footer-col a {
        justify-content: center;
    }
}


/* ===================== WHATSAPP FIXO ===================== */
.whatsapp-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 2rem;
  padding: 15px;
  border-radius: 50%;
  z-index: 999;
  transition: all 0.3s ease;
}

.whatsapp-fixed:hover {
  transform: scale(1.1);
}

/* ===================== RESPONSIVIDADE ===================== */
@media (max-width: 992px) {
  .benefits-flex {
    flex-direction: column;
  }

  .planos-flex {
    flex-direction: column;
    align-items: center;
  }

  .hero-text-block h1 {
    font-size: 2.2rem;
  }

  .hero-text-block p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  header .nav-links {
    display: none;
  }

  .hero-text-block h1 {
    font-size: 1.8rem;
  }

  .hero-text-block p {
    font-size: 0.95rem;
  }

  .btn-hero {
    padding: 10px 25px;
  }
}
