.hero-principal {
  background: linear-gradient(to bottom right, #2a6da8, #44c6d6);
  padding: 100px 20px 60px;
  color: white;
}
.hero-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.hero-content-text {
  flex: 1;
  min-width: 300px;
}
.hero-content-text h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #f8fafc;
}
.hero-content-text p {
  font-size: 18px;
  color: #cbd5e1;
  margin-bottom: 30px;
}
.cta-button-yellow {
  background-color: #facc15;
  color: #000;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.cta-button-yellow:hover {
  background-color: #facc15; /* mantém o fundo amarelo */
  color: #000;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1); /* efeito de destaque */
}
.hero-video .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.hero-video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero-benefits {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto 0;
  flex-wrap: wrap;
  text-align: center;
}
.hero-benefits p {
  max-width: 320px;
  font-size: 15px;
  color: #f1f5f9;
  line-height: 1.4;
}
.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-content-text {
  flex: 1;
  min-width: 300px;
}
.hero-content-text h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #f8fafc;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}
.hero-content-text p {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
}
.cta-button-yellow {
  background-color: #facc15;
  color: #1e293b;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.hero-video {
  flex: 1;
  min-width: 300px;
}
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* Proporção 16:9 */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.hero-benefits {
  display: flex;
  justify-content: center;
  gap: 60px;
  max-width: 1200px;
  margin: 80px auto 0;
  flex-wrap: wrap;
  text-align: left;
}
.hero-benefits p {
  max-width: 320px;
  font-size: 15px;
  color: #f1f5f9;
  line-height: 1.4;
}
.cta-button {
  background-color: #2563eb;
  color: white !important;
  border-radius: 8px;
  padding: 14px 28px;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.cta-button:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  opacity: 0.95;
  background-color: #003366;
}

.cta {
  background-color: #2563eb;
  color: white;
  text-align: center;
  padding: 80px 20px;
}
.cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.cta p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  line-height: 1.5;
}
.cta-white-alt {
  background-color: #f0f4ff;
  color: #1e3a8a;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.cta-link-extra {
  margin-top: 24px;
  font-size: 15px;
  color: #e0edff;
}
.cta-inline-link {
  color: #ffffff;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.card {
  background-color: #fff;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  max-width: 300px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
}
.four-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.active {
  color: #2563eb;
  border-bottom: 2px solid #2563eb;
}
.centered {
  text-align: center;
  padding: 80px 20px;
}
.centered h2 {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 10px;
  font-weight: 700;
}
.centered .sub {
  font-size: 18px;
  color: #64748b;
  max-width: 760px;
  margin: 0 auto 40px;
}
.small {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.card {
  background-color: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  text-align: left;
  transition: all 0.2s ease;
  text-align: center;
  align-items: center;
  justify-content: center;
}
hover {
  background-color: #eef4ff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.active {
  background-color: #eef4ff;
  border: 1px solid #2563eb;
}
.small .card img {
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
}
.small .card h3 {
  margin-top: 0;
}
.icon-lg {
  font-size: 32px;
  margin-bottom: 12px;
  color: #1e40af;
  /* azul escuro ou cor da identidade visual */
}
#equipamentos-rastreamento .card i {
  color: #2658F6;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.hero-video .video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* Proporção 16:9 */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.hero-video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}
.benefit-icon {
  font-size: 36px;
  margin-bottom: 12px;
}
.cta-button-branco {
  background-color: white;
  color: #2563eb;
  padding: 14px 28px;
  font-size: 16px;
  white-space: nowrap;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.section-alt {
  background-color: #f9fafe;
}
.cta-button {
  padding: 14px 28px;
  font-size: 16px;
  white-space: nowrap;
}
#rastreaveis .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.telas-swiper {
  position: relative;
  padding: 40px 60px;
  overflow: hidden;
}
.telas-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
  padding-left: 20px;
  padding-right: 20px;
}
.telas-swiper .swiper-slide {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin: 0 10px;
  width: 320px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.telas-swiper .swiper-button-next {
  color: #2563eb;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.telas-swiper .swiper-button-prev {
  left: -30px;
}
.telas-swiper .swiper-button-next {
  right: -30px;
}
.telas-carousel-section {
  padding: 60px 20px;
  background-color: #ffffff !important;
  text-align: center;
  overflow-x: hidden;
  /* evita barra horizontal */
}
.telas-carousel-section img {
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.telas-carousel-section .swiper-slide {
  transition: background-color 0.3s ease;
  border-radius: 12px;
}
.telas-carousel-section .swiper-slide p {
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.4;
}
.telas-carousel-section a {
  text-decoration: none;
  color: inherit;
}
.telas-swiper {
  width: 100%;
  padding: 40px 0;
  overflow: visible;
}
.telas-swiper .swiper-slide {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  width: 320px;
}
hover {
  transform: scale(1.03);
}
.telas-swiper img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 12px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.telas-swiper h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.telas-swiper p {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
}
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}
.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10000;
}
.icone-pulsante {
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}
.recursos-avancados {
  background: #fff;
}
focus {
  text-decoration: none;
}
focus {
  text-decoration: none;
}
.card-link p {
  text-decoration: none !important;
}
hover p {
  text-decoration: none !important;
}
.equipamentos-section {
  background-color: #ffffff !important;
}

/* Hover em botões */
.cta-button {
  background-color: #003366;
  color: #fff;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.cta-button:hover {
  background-color: #0055aa;
}

/* Hover nos cards do carrossel */
.telas-swiper .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.telas-swiper .swiper-slide:hover {
  background-color: #e6f1fb;
}

/* Suavização ao abrir imagens (lightbox) */
.lightbox img {
  transition: transform 0.3s ease;
}
.lightbox:hover img {
  transform: scale(1.03);
}


/* ==== Ajustes de UX e Responsividade para Mobile ==== */

/* Base adjustments for mobile UX */
@media (max-width: 768px) {
  .card-grid.small {
    grid-template-columns: 1fr !important;
  }

  .card h3 {
    font-size: 1.125rem;
  }

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

  .hero-container {
    flex-direction: column;
    padding: 30px 16px;
  }

  .hero-content-text {
    text-align: center;
  }

  .hero-video iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .cta-button,
  .cta-button-yellow,
  .cta-white-alt,
  .cta-button-branco {
    font-size: 1rem;
    padding: 12px 24px;
  }
}

/* Lightbox modal animations */
.lightbox-content {
  max-width: 95%;
  max-height: 95%;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.lightbox-modal.show .lightbox-content {
  transform: scale(1);
  opacity: 1;
}

/* Button effects */
.cta-button,
.cta-button-yellow,
.cta-white-alt,
.cta-button-branco {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-white-alt:hover,
.cta-button-branco:hover {
  background-color: #facc15;
  color: #000000;
}

/* UX base touch and zoom */
body {
  -webkit-text-size-adjust: 100%;
  touch-action: manipulation;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .card-grid {
    justify-content: center;
    text-align: center;
  }

  .card {
    margin: 10px auto;
    max-width: 90%;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .hero-video iframe {
    width: 100%;
    height: auto;
  }

  .cta-button, .cta-button-yellow, .cta-button-branco {
    width: 90%;
    text-align: center;
    margin: 10px auto;
    display: block;
  }

  .hero-benefits {
    flex-direction: column;
    align-items: center;
  }

  .hero-benefits > div {
    margin-bottom: 20px;
    max-width: 300px;
    text-align: center;
  }
}

.telas-carousel-section .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .telas-swiper .swiper-slide {
    max-width: 90%;
    margin: 0 auto;
  }
}


.cta-button, .cta-button-yellow, .cta-white-alt {
  padding: 14px 18px;
  font-size: 1rem;
  border-radius: 8px;
}
@media (max-width: 768px) {
  section {
    padding: 40px 20px;
  }

  h2 {
    font-size: 1.5rem;
  }

  .sub {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .card-grid.four-columns {
    grid-template-columns: 1fr !important;
  }
}
.card:hover {
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  transition: all 0.3s ease;
}
.cta-button,
button,
.btn {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-break: break-word;
}
.cta-section {
  padding: 20px;
  text-align: center;
}

.cta-section .cta-button {
  max-width: 300px;
  margin: 0 auto;
}
.cta-button {
  max-width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Ajustes para vídeo responsivo */
.video-container iframe {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    display: block;
}

/* Correção para largura dos botões */
.cta-button,
.cta-button-yellow,
.cta-button-branco {
    display: inline-block;
    width: auto;
    max-width: 100%;
    padding: 12px 24px;
    text-align: center;
    white-space: nowrap;
}

/* Centralização e padding adequado em mobile */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }

    .hero-content-text,
    .hero-video {
        width: 100%;
    }

    .hero-content-text p {
        margin-bottom: 16px;
    }

    .hero-content-text a {
        margin: 0 auto;
    }

    .hero-benefits {
        flex-direction: column;
        align-items: center;
    }

    .hero-benefits div {
        max-width: 100%;
    }
}



/* Botões - herdam estilo da index */
.cta-button,
.cta-button-yellow,
.cta-button-branco {
  transition: all 0.3s ease-in-out;
}
.cta-button:hover,
.cta-button-yellow:hover,
.cta-button-branco:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0.95;
}

/* Hover azul suave para cards */
.card {
  transition: background-color 0.3s ease;
}
.card:not(.active):hover {
  background-color: #e6f0ff !important;
}

.card.active .cta-button-branco:hover {
  background-color: #facc15 !important;
  color: #000 !important;
}

.cta-button-white {
  background-color: #fff;
  color: #1e3a8a;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.cta-button-white:hover {
  background-color: #facc15;
  color: #000;
}
/* Estilos movidos do HTML inline */
html, body {
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom right, #1e88e5, #26c6da);
}

.benefit-icon {
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}

.faq-section {
  background-color: #f8fafc;
  padding: 80px 20px;
}
.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  color: #0f172a;
  margin-bottom: 40px;
}
.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.faq-question {
  background-color: #2563eb; /* azul institucional */
  border: none;
  font-size: 1rem;
  font-weight: 600;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 12px;
}
.faq-question:hover {
  background-color: #1e4fcb; /* azul escurecido no hover */
}

.faq-question .icon {
  color: #ffffff !important;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 20px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 20px;
}
.faq-question .icon {
  transition: transform 0.3s ease;
  font-size: 1rem;
  color: #1e40af;
}
.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
}


.cta-final-modern {
  background-color: #2563eb;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}

.cta-final-modern .cta-container {
  max-width: 900px;
  margin: 0 auto;
}

.cta-final-modern h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.cta-final-modern p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 32px;
  color: #e2e8f0;
}

.cta-button-white {
  background-color: #fff;
  color: #1e3a8a;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.cta-button-white:hover {
  background-color: #facc15;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-subtext {
  margin-top: 24px;
  font-size: 0.95rem;
  color: #dbeafe;
}

.cta-link-alt {
  color: #ffffff;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cta-link-alt:hover {
  color: #facc15;
}

.modal-formulario {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow: auto;
}

.modal-conteudo {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  margin: auto;
}
.fechar-modal {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #dc2626; /* vermelho */
  color: #fff;
  border: none;
  padding: 8px 14px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10001;
  transition: background-color 0.2s ease;
}

.fechar-modal:hover {
  background-color: #b91c1c;
}

.icone-x {
  background-color: #dc2626;
  color: #fff;
  font-size: 18px;
  display: inline-block;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  font-weight: bold;
  border-radius: 4px;
}
.modal-header {
  position: absolute;
  top: 16px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.icone-fechar {
  background-color: #dc2626;
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.icone-fechar:hover {
  background-color: #b91c1c;
}

.cta-whatsapp-section {
  background-color: #ffffff; /* fundo branco */
  padding: 60px 20px 20px;
  text-align: center;
}

.cta-button-whatsapp {
  background-color: #22c55e; /* verde vibrante */
  color: #ffffff;
  font-weight: 600;
  padding: 14px 32px;
  font-size: 1.125rem;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button-whatsapp i {
  font-size: 1.5rem;
}

.cta-button-whatsapp:hover {
  background-color: #16a34a;
  transform: translateY(-2px);
}

.cta-extra-recursos {
  margin-top: 40px;
  text-align: center;
}

.cta-extra-recursos .pergunta {
  font-size: 1.2rem;
  font-weight: 500;
  color: #e2e8f0;
  margin-bottom: 12px;
}

.cta-gestao-button {
  display: inline-block;
  background-color: #facc15;
  color: #1e293b;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-gestao-button:hover {
  background-color: #fbbf24;
  transform: translateY(-2px);
}
.youtube-facade {
  position: relative;
  cursor: pointer;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #000;
}

.youtube-facade img {
  width: 100%;
  height: auto;
  display: block;
}

.youtube-facade .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
