/* ======== IMPORTAR FONTE ======== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* ======== RESET ======== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  margin: 1rem 0; /* 1rem em cima e embaixo, 0 nas laterais */
  line-height: 1.6; /* mantém espaçamento legível */
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* previne scroll horizontal */
}

body {
  font-family: 'Inter', sans-serif;
  background-color: white;
  color: black;
  font-size: 16px; /* corpo maior */
  line-height: 1.6;
  overflow-x: hidden;
}

/* ======== NAVBAR ======== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  z-index: 1200;
  background-color: #000;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ======== LOGO ======== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 1.2rem;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

/* ======== MENU LINKS ======== */
.nav-links {
  font-size: 1.3rem; 
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a,
.dropbtn {
  text-decoration: none;
  color: white;
  font-weight: 200;
  cursor: pointer;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.dropbtn:hover {
  color: #0077ff;
}

/* ======== DROPDOWN ======== */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  overflow: hidden;
  min-width: 320px;
  flex-direction: column;
}

.dropdown-content a {
  display: block;
  padding: 1rem 2rem;
  text-decoration: none;
  color: #0077ff;
  font-size: 1.1rem; /* maior */
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: #f9f9f9;
  color: #0077ff;
}

.dropdown:hover .dropdown-content {
  display: flex;
}



/* ======== MOBILE ======== */
.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
  color: white;
}

#menu-toggle,
#drop-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: white;
    border-top: 1px solid #eee;
    font-size: 1.1rem;
  }

  #menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-links a,
  .dropbtn {
    padding: 1.2rem;
    width: 100%;
    text-align: left;
    border-bottom: 2px solid #eee;
    color: #007BFF;
  }

  .dropdown-content {
    display: none;
    flex-direction: column;
    background: #f9f9f9;
  }

  #drop-toggle:checked + .dropbtn + .dropdown-content {
    display: flex;
  }
}

/* ======== CONTEÚDO NORMAL ======== */
.content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 10rem 2rem 3rem;
  text-align: center;
}

.content h2 {
  font-size: 2.4rem; /* grande */
  margin-bottom: 1rem;
}

.content p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ======== RESPONSIVO ======== */
@media (max-width: 768px) {
  .content h2 {
    font-size: 2rem;
  }

  .content p {
    font-size: 1rem;
  }

  .nav-links {
    font-size: 1rem;
  }

  .logo {
    font-size: 2.2rem;
  }
}


/* ======== HERO ======== */
.hero {
  width: 100%;
  margin: 0;
  padding: 8rem 4rem;
  background: url('/images/safe-hero.webp') no-repeat center center;
  background-size: cover;
  position: relative; /* importante para o ::before */
}

/* camada escura para contraste */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* texto */
.hero h2 {
  position: relative;
  text-align: left;
  z-index: 1;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  max-width: 580px;
}

.hero p {
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 580px;
  color: #333;
}

/* Tablets */
@media (max-width: 992px) {
  .hero {
    padding: 6rem 2rem;
    background-position: center;
  }

  .hero h2 {
    font-size: 2.3rem;
    max-width: 90%;
  }

  .hero p {
    font-size: 1.1rem;
    max-width: 90%;
  }
}

/* Celulares */
@media (max-width: 600px) {
  .hero {
    padding: 4rem 1.5rem;
    text-align: center;
  }

  .hero h2 {
    font-size: 1.9rem;
    text-align: center;
    max-width: 100%;
  }

  .hero p {
    font-size: 1rem;
    text-align: center;
    max-width: 100%;
  }
}



/* ======== POR QUE ESCOLHER ======== */
.why-safearmor {
  max-width: 1200px;
  margin: 8rem auto 2rem;
  padding: 0 2rem;
  text-align: center;
}

.why-safearmor h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.why-safearmor .intro {
  font-size: 1.3rem;
  color: #333;
  max-width: 850px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  text-align: justify;
}
            

/* =====================================
   DIFERENCIAL SAFEARMOR x CLOUDS
===================================== */
.diferencial-safe {
  max-width: 1200px;
  background: white;
  text-align: center;
  margin: 0rem auto 6rem;
}

.diferencial-safe h2 {
  color: #222;
  margin-bottom: 1rem;
}

.diferencial-safe .intro {
  max-width: 850px;
  text-align: justify;
  margin: 0 auto 3rem;
  color: #333;
  font-size: 1.3rem;
  line-height: 1.6;
}

.diferencial-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.diferencial-card {
  background: #ff000048;
  border-radius: 15px;
  padding: 2rem;
  width: 320px;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.diferencial-card.aws {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  width: 320px;
  text-align: left;
  box-shadow: 0 6px 15px rgba(255,0,0,0.3);
  transition: all 0.3s ease;
  color: #8b0000; /* texto vermelho escuro */
}

.diferencial-card.aws h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ff0000; /* título chamativo */
}

.diferencial-card.aws ul li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
  font-size: 1.05rem;
  color: #8b0000;
}

.diferencial-card.aws:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255,0,0,0.5);
  background: linear-gradient(135deg, rgba(255,0,0,0.25), rgba(255,0,0,0.5));
}

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

.diferencial-card h3 {
  font-size: 1.2rem;
  color: #004aad;
  margin-bottom: 1rem;
}

.diferencial-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.diferencial-card ul li {
  margin-bottom: 0.6rem;
  line-height: 1.5;
  color: #444;
}

/* Estilo diferenciado para a SafeArmor */
.diferencial-card.safearmor {
  background: linear-gradient(135deg, #004aad, #007bff);
  color: #fff;
}

.diferencial-card.safearmor h3,
.diferencial-card.safearmor ul li {
  color: #fff;
}

.diferencial-safe .bottom-text {
  text-align: justify;
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

/* Responsivo */
@media (max-width: 768px) {
  .diferencial-grid {
    flex-direction: column;
    align-items: center;
  }

  .diferencial-card {
    width: 100%;
    max-width: 380px;
  }

  .diferencial-safe h2 {
    font-size: 1.7rem;
  }
}




/* ======== Alerta ransoware ======== */
.alerta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 6rem 10%;
  background: #ffffff;
  color: #222;
  flex-wrap: wrap;
  text-align: justify;
  padding: 6rem 2rem;
  background-image: url(/images/safe-hero0.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 0; /* se quiser que ocupe toda largura, remova o border-radius */
}

.text-content {
  flex: 1 1 45%;
  max-width: 600px;
}

.text-content h2 {
  text-align: left;
  font-size: 1.9rem;
  font-weight: 700;
  color: #222;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.text-content p {
  color: #222;
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.btn-alerta {
  display: inline-block;
  background: linear-gradient(90deg, #ff3c3c, #ff6b00);
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.btn-alerta:hover {
  opacity: 0.85;
}

.image-content {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.image-content img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  filter: brightness(0.8);
}



/* ======== CARDS ======== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: linear-gradient(135deg, #0077ff 0%, #005bb5 100%); /* azul principal para azul escuro */
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: #fff; /* texto em branco */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.card i {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 1rem;
}

.card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.card p {
  font-size: 1rem;
  line-height: 1.5;
  color: white;
}



/* ======== RESPONSIVO ======== */
@media (max-width: 768px) {
  .why-safearmor {
    margin: 5rem auto;
  }

  .why-safearmor h2 {
    font-size: 2rem;
  }

  .why-safearmor .intro {
    font-size: 1rem;
  }

  .card {
    padding: 2rem 1.5rem;
  }
}


/* ======== NOSSAS SOLUÇÕES ======== */
.solutions {
  max-width: 1200px;
  margin: 8rem auto;
  padding: 0 2rem;
  text-align: center;
}

.solutions h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #111;
}

.solutions .intro {
  font-size: 1.2rem;
  color: #333;
  max-width: 850px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ======== CARDS ======== */
.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.solution-card {
 
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.solution-card i {
  font-size: 2.5rem;
  color: #0077ff;
  margin-bottom: 1rem;
}

.solution-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #111;
}

.solution-card p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.6;
}

/* ======== RESPONSIVO ======== */
@media (max-width: 768px) {
  .solutions {
    margin: 5rem auto;
  }

  .solutions h2 {
    font-size: 2rem;
  }

  .solutions .intro {
    font-size: 1rem;
  }

  .solution-card {
    padding: 2rem 1.5rem;
  }
}


/* ======== CONFORMIDADE E SEGURANÇA ======== */
.compliance {
  width: 100%;
  margin: 0;
  padding: 6rem 2rem;
  background-image: url(/images/safe-hero2.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 0; /* se quiser que ocupe toda largura, remova o border-radius */
  position: relative;
}

.compliance h2 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.compliance .intro {
  font-size: 1.2rem;
  color: #333;
  max-width: 850px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* ======== LOGOS ======== */
.compliance-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo-item:hover {
  transform: translateY(-5px);
}

.logo-item img {
  width: 90px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  margin-bottom: 0.5rem;
}

.logo-item span {
  font-size: 1rem;
  font-weight: 600;
  color: #0077ff;
}

/* ======== RESPONSIVO ======== */
@media (max-width: 768px) {
  .compliance {
    margin: 5rem auto;
  }

  .compliance h2 {
    font-size: 2rem;
  }

  .compliance .intro {
    font-size: 1rem;
  }

  .logo-item img {
    width: 70px;
  }

  .logo-item span {
    font-size: 0.9rem;
  }
}




/* =========================== Testimonials =========================== */
/* Container do carrossel */
.testimonials-carousel {
  max-width: 1000px;
  margin: 6rem auto;
  padding: 0 2rem;
  text-align: center;
  overflow: hidden; /* evita qualquer scroll lateral */
}


/* Cada slide ocupa 100% do container */
.testimonials-carousel .slide {
  display: none; /* escondido por padrão, JS vai mostrar 1 */
  width: 100%;
  box-sizing: border-box;
  padding: 2rem;
}

blockquote {
  background: #f8f9fb;
  border-left: 4px solid #007BFF;
  border-radius: 8px;
  padding: 2rem;
  font-style: italic;
  color: #333;
  line-height: 1.6;
  position: relative;
}

blockquote::before {
  content: "“";
  font-size: 4rem;
  color: #007BFF33;
  position: absolute;
  left: 10px;
  top: -10px;
}

cite {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #555;
}




.cta {
  background-color: #007BFF;
  color: #fff;
  padding: 6rem 2rem;
  text-align: center;
  border-radius: 12px;
  margin: 4rem 0;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn-primary {
  background-color: #fff;
  color: #007BFF;
}

.btn-primary:hover {
  background-color: #e6e6e6;
}

.btn-secondary {
  background-color: rgba(255,255,255,0.2);
  color: #fff;
}

.btn-secondary:hover {
  background-color: rgba(255,255,255,0.35);
}

/* Responsivo */
@media (max-width: 768px) {
  .cta h2 {
    font-size: 2rem;
  }

  .cta p {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
}

/************PARCEIROS**************/
.partners {
  max-width: 1200px;
  margin: 6rem auto;
  text-align: center;
}

.partners h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #222;
}

/* Carrossel */
.partners-carousel {
  display: flex;
  overflow: hidden;
  position: relative;
}

.partner-slide {
  flex: 0 0 20%; /* 5 logos visíveis por vez */
  display: flex;
  justify-content: center;
  align-items: center;

}

.partner-slide img {
  max-height: 100px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  
}

/* Mobile */
@media (max-width: 768px) {
  .partner-slide {
    flex: 0 0 40%; /* 2 logos por vez */
  }
  
  .partner-slide img {
    max-height: 50px;
    max-width: 100px;
  }
}



/* ======== FOOTER ======== */
.footer {
  width: 100%;
  background-color: #f5f5f5;
  color: #333;
  text-align: center;
  padding: 3rem 1rem;
  font-family: 'Inter', sans-serif;
  box-sizing: border-box;
  margin: 0;
}

.footer-container {
  max-width: 1200px;          /* limite para conteúdo */
  margin: 0 auto;             /* centraliza horizontalmente */
}


.footer p {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.footer-images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem; /* espaço entre as imagens */
}

.footer-images img {
  width: 110px;
  height: auto;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.footer a {
    color: #222; /* preto */
}

.footer-social a {
  color: #222;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: #0077ff; /* azul profissional ao passar o mouse */
  transform: translateY(-3px);
}

.footer-info {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-info i {
  color: #222;
  font-size: 1rem;
}

/* ======== RESPONSIVO ======== */
@media (max-width: 768px) {
  .footer-images {
    flex-direction: column; /* imagens empilham verticalmente */
    gap: 1.5rem;
  }

  .footer-images img {
    width: 90px;
  }

  .footer p {
    font-size: 0.9rem;
  }
}



.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  
}

.slideshow-container img {
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}
/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;               /* centraliza verticalmente */
  transform: translateY(-50%); /* ajuste moderno para centralização vertical */
  padding: 16px;
  color: white;
  background-color: rgba(0,0,0,0.6);
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s ease;
  user-select: none;
  z-index: 10;
}

/* Botão esquerdo */
.prev {
  left: 10px;             /* distância da borda esquerda da imagem */
  border-radius: 3px 0 0 3px;
}

/* Botão direito */
.next {
  right: 10px;            /* distância da borda direita da imagem */
  border-radius: 0 3px 3px 0;
}

/* Hover */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}


/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
   border-radius: 10px;
  background-color: rgba(0,0,0,0.8);
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active, .dot:hover {
  background-color: #0077ff;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}



/*********************** Whatsapp Icone ***********************/
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  border-radius: 50%;
  padding: 10px;
  z-index: 1000;
  cursor: pointer;

  /* Animação de tremer suave + glow azul */
  animation: shake-glow 5s infinite;
}

.whatsapp-icon img {
  width: 64px;
  height: 64px;
}

/* Keyframes: tremida suave + glow azul por ~2s */
@keyframes shake-glow {
  0%, 65% {
    transform: translate(0, 0) rotate(0deg);
    filter: drop-shadow(0 0 0 rgba(0, 123, 255, 0));
  }
  66% {
    transform: translate(-2px, 0) rotate(-5deg);
    filter: drop-shadow(0 0 8px rgba(0, 123, 255, 0.9));
  }
  70% {
    transform: translate(2px, 0) rotate(5deg);
    filter: drop-shadow(0 0 14px rgba(0, 195, 255, 1));
  }
  74% {
    transform: translate(-1px, 0) rotate(-3deg);
    filter: drop-shadow(0 0 16px rgba(0, 123, 255, 1));
  }
  78% {
    transform: translate(1px, 0) rotate(3deg);
    filter: drop-shadow(0 0 14px rgba(0, 123, 255, 0.9));
  }
  82% {
    transform: translate(0, 0) rotate(0deg);
    filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.7));
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
    filter: drop-shadow(0 0 0 rgba(0, 123, 255, 0));
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  max-width: 1200px; /* limita a largura máxima */
  margin: 4rem auto; /* centraliza e adiciona respiro em cima e embaixo */
  border-radius: 1rem; /* bordas suaves */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}


/********************FAQ*************************/

.faq-section {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.faq-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #0077ff;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: #0077ff;
  padding: 1rem 0;
  list-style: none;
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none; /* remove marcador padrão */
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

details[open] .faq-question::after {
  content: '−';
}

/* Estilo do card para a resposta */
.faq-answer {
  background: white; /* cor clara de fundo */
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  margin-top: 0.5rem;
  color: #222;
  font-size: 1rem;
  line-height: 1.5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* Ajuste responsivo para mobile */
@media (max-width: 600px) {
  .faq-title {
    font-size: 1.5rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 0.8rem 0;
  }
  .faq-answer {
    font-size: 0.95rem;
    padding: 0.8rem 1rem;
  }
}


/* ===== Responsivo ===== */
@media (max-width: 600px) {
  .faq-title {
    font-size: 1.5rem;
  }

  .faq-question {
    font-size: 1rem;
    padding: 0.8rem 0;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}



/* ===== Curiosidades ===== */
.curiosidades {
  background-color: white; /* fundo suave e moderno */
  padding: 6rem 2rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  color: #333;
}

.curiosidades h2 {
  font-size: 2.1rem;
  color: #1e3a8a; /* azul profissional */
  margin-bottom: 1rem;
}

.curiosidades p {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

/* Grid responsivo para os cards existentes */
.curiosidades .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* Estilo profissional para os cards já existentes */
.curiosidades .card {
  background: #fff;
  border-left: 6px solid #d32f2f; /* estilo “história”/alerta */
  border-radius: 0.8rem;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

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

.curiosidades .card h3 {
  font-size: 1.25rem;
  color: #d32f2f;
  margin-bottom: 0.6rem;
}

.curiosidades .card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* CTA no final */
.curiosidades .cta {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
}

/* ===== Responsividade para Curiosidades ===== */

/* Tablets e telas médias */
@media (max-width: 992px) {
  .curiosidades {
    padding: 4rem 1.5rem;
  }

  .curiosidades h2 {
    font-size: 2rem;
  }

  .curiosidades p {
    font-size: 1rem;
  }

  /* Grid com 2 colunas quando caber */
  .curiosidades .cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
}

/* Celulares */
@media (max-width: 600px) {
  .curiosidades {
    padding: 3rem 1rem;
  }

  .curiosidades h2 {
    font-size: 1.7rem;
  }

  .curiosidades p {
    font-size: 0.95rem;
  }

  /* Cards empilhados */
  .curiosidades .cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .curiosidades .card {
    width: 100%;
    max-width: 100%;
  }
}