/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #040404;
  color: #eaeaea;
}

/* ================= HEADER ================= */
.header {
  padding: 16px 0;
}

.header-inner {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-btn {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.brand-btn:hover {
  background: rgba(209, 0, 108, 0.18);
  box-shadow: 0 0 14px rgba(209, 0, 108, 0.6);
}

.menu-link {
  color: #d1006c;
  text-decoration: none;
  font-size: 14px;
}

/* ================= HERO ================= */
.hero-wrapper {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
}

.hero-card {
  background: linear-gradient(160deg, rgba(35,5,25,.95), rgba(10,0,6,.95));
  border-radius: 16px;
  padding: 80px 60px;
  max-width: 900px;
  width: 100%;
  text-align: center;
  border: 1px solid rgba(209, 0, 108, 0.35);
  box-shadow: 0 0 40px rgba(209, 0, 108, 0.18);
}

.hero-card h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-description {
  font-size: 15px;
  line-height: 1.85;
  color: #d6d6d6;
  margin: 24px 0 40px;
}

.cta-btn {
  display: inline-block;
  background: #d1006c;
  color: #fff;
  padding: 14px 34px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.cta-btn:hover {
  box-shadow: 0 0 28px rgba(209, 0, 108, 0.7);
}

/* ================= APRESENTAÇÃO ================= */
.content-wrapper {
  display: flex;
  justify-content: center;
  padding: 60px 20px 120px;
}

.content-card {
  background: linear-gradient(160deg, rgba(30,5,20,.97), rgba(12,0,8,.97));
  border-radius: 18px;
  max-width: 1100px;
  width: 100%;
  display: flex;
  gap: 60px;
  padding: 60px;
  border: 1px solid rgba(209, 0, 108, 0.3);
}

.content-image img {
  max-width: 380px;
  width: 100%;
  border-radius: 12px;
}

.content-text {
  flex: 1;
}

.label {
  font-size: 12px;
  letter-spacing: 3px;
  color: #d1006c;
}

.line {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(209,0,108,.65),
    transparent
  );
  margin: 22px 0;
}

/* ================= SERVIÇOS & CATÁLOGO ================= */
.services-wrapper,
.catalog-wrapper {
  padding: 60px 20px 120px;
  display: flex;
  justify-content: center;
}

.services-grid {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: linear-gradient(160deg, rgba(30,5,20,.97), rgba(12,0,8,.97));
  border-radius: 14px;
  padding: 30px;
  border: 1px solid rgba(209,0,108,.25);
  transition: all .3s ease;
}

.service-card:hover {
  border-color: rgba(209,0,108,.7);
  box-shadow: 0 0 25px rgba(209,0,108,.5);
  transform: translateY(-3px);
}

.service-icon {
  color: #d1006c;
  font-size: 18px;
}

.service-card h3 {
  margin: 12px 0;
  font-size: 18px;
}

.service-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: #dddddd;
}

.catalog-inner {
  max-width: 1100px;
  width: 100%;
}

.catalog-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

/* ===== RODAPÉ DO CARD ===== */
.catalog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}

.catalog-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #bdbdbd;
  display: block;
}

/* ===== BOTÃO CATÁLOGO ===== */
.catalog-btn {
  background: transparent;
  border: 1px solid rgba(209,0,108,.6);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.catalog-btn:hover {
  background: rgba(209,0,108,.15);
  box-shadow: 0 0 15px rgba(209,0,108,.6);
}

/* ================= TRAJETÓRIA ================= */
.trajectory-wrapper {
  display: flex;
  justify-content: center;
  padding: 80px 20px 140px;
}

.trajectory-card {
  max-width: 1100px;
  width: 100%;
  background: linear-gradient(160deg, rgba(30,5,20,.97), rgba(12,0,8,.97));
  border-radius: 18px;
  padding: 60px;
  border: 1px solid rgba(209,0,108,.35);
}

.trajectory-subcard {
  margin-top: 30px;
  padding: 26px;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(22,6,14,.96), rgba(10,0,6,.96));
  border: 1px solid rgba(209,0,108,.25);
  transition: all .3s ease;
}

.trajectory-subcard:hover {
  border-color: rgba(209,0,108,.6);
  box-shadow: 0 0 20px rgba(209,0,108,.4);
  transform: translateY(-2px);
}

.trajectory-content {
  display: flex;
  gap: 24px;
  align-items: center;
}

.trajectory-content img {
  width: 220px;
  max-width: 100%;
  border-radius: 12px;
}

.trajectory-number {
  width: 32px;
  height: 32px;
  background: #d1006c;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.trajectory-text h3 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 700;
}

.trajectory-text p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: #dddddd;
}

/* ================= RESPONSIVO ================= */
@media (max-width: 900px) {
  .content-card {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .trajectory-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .trajectory-content img {
    width: 100%;
  }
}

@media (max-width: 430px) {
  body {
    overflow-x: hidden;
  }

  .hero-card {
    padding: 32px 20px;
  }

  .hero-card h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .content-card {
    padding: 32px 20px;
    gap: 24px;
  }

  .service-card {
    padding: 24px;
  }

  /* ADIÇÕES (não existiam no style.css original) */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .trajectory-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .trajectory-content img {
    width: 100%;
  }
}

/* ================= PAINEL DE VÍDEOS ================= */

.videos-inner {
  max-width: 1100px;
  width: 100%;
  margin: auto;
}

.videos-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.video-player {
  background: linear-gradient(160deg, rgba(30,5,20,.97), rgba(12,0,8,.97));
  border-radius: 18px;
  padding: 20px;
  border: 1px solid rgba(209,0,108,.35);
}

.video-player iframe {
  width: 100%;
  height: 360px;
  border-radius: 12px;
}

.video-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.video-item {
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(22,6,14,.96), rgba(10,0,6,.96));
  border: 1px solid rgba(209,0,108,.25);
  cursor: pointer;
  transition: all .3s ease;
}

.video-item.active,
.video-item:hover {
  border-color: rgba(209,0,108,.7);
  box-shadow: 0 0 18px rgba(209,0,108,.4);
}

/* ================= PAINEL DE COMENTÁRIOS ================= */

.testimonial-wrapper {
  position: relative;
  max-width: 720px;
  margin: 40px auto 0;
}

.testimonial-card {
  display: none;
  background: linear-gradient(160deg, rgba(30,5,20,.97), rgba(12,0,8,.97));
  border-radius: 18px;
  padding: 48px 40px;
  border: 1px solid rgba(209,0,108,.35);
  box-shadow: 0 0 35px rgba(209,0,108,.15);
  text-align: center;
}

.testimonial-card.active {
  display: block;
}

.testimonial-quote {
  font-size: 48px;
  color: #d1006c;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: #eaeaea;
  max-width: 560px;
  margin: 0 auto;
}

.testimonial-author {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.testimonial-info span {
  font-size: 12px;
  color: #bdbdbd;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(209,0,108,.6);
  background: transparent;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-arrow.prev { left: -60px; }
.testimonial-arrow.next { right: -60px; }

@media (max-width: 900px) {
  .videos-layout {
    grid-template-columns: 1fr;
  }

  .video-player iframe {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    padding: 32px 24px;
  }

  .testimonial-arrow.prev { left: 10px; }
  .testimonial-arrow.next { right: 10px; }
}

/* =====================================================
   SISTEMA RESPONSIVO UNIFICADO
   VÍDEOS + COMENTÁRIOS
   ===================================================== */

/* ===== BASE DESKTOP GRANDE (≥1200px) ===== */
.videos-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.video-player iframe {
  height: 380px;
}

.testimonial-wrapper {
  max-width: 760px;
  margin: 48px auto 0;
}

/* ===== DESKTOP / NOTEBOOK (≥992px) ===== */
@media (max-width: 1199px) {

  .videos-layout {
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
  }

  .video-player iframe {
    height: 340px;
  }
}

/* ===== TABLET (≥768px) ===== */
@media (max-width: 991px) {

  .videos-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .video-player iframe {
    height: 300px;
  }

  .testimonial-wrapper {
    max-width: 100%;
    padding: 0 24px;
  }
}

/* ===== MOBILE GRANDE (≥576px) ===== */
@media (max-width: 767px) {

  .video-player iframe {
    height: 240px;
  }

  .testimonial-card {
    padding: 36px 28px 40px;
  }

  /* setas abaixo do card */
  .testimonial-arrow {
    top: auto;
    bottom: -56px;
    transform: none;
  }

  .testimonial-arrow.prev {
    left: 50%;
    transform: translateX(-120%);
  }

  .testimonial-arrow.next {
    right: 50%;
    transform: translateX(120%);
  }
}

/* ===== MOBILE PEQUENO (≤575px – iPhone 14) ===== */
@media (max-width: 575px) {

  .videos-wrapper {
    padding: 60px 16px 100px;
  }

  .video-player {
    padding: 16px;
  }

  .video-player iframe {
    height: 200px;
  }

  .video-item {
    padding: 16px;
  }

  .testimonial-card {
    padding: 32px 20px 36px;
  }
}

/* ================= AJUSTE ESPECÍFICO – iPAD / TABLET GRANDE ================= */
/* iPad, iPad Pro, tablets entre 992px e 1199px */

@media (max-width: 1199px) and (min-width: 992px) {

  /* sessões estratégicas */
  .videos-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .video-player iframe {
    height: 300px;
  }

  .video-list {
    gap: 12px;
  }

  /* comentários */
  .testimonial-wrapper {
    max-width: 90%;
  }

}

/* =====================================================
   iPAD FIX DEFINITIVO – SEM SCROLL (768px–1199px)
   ===================================================== */

@media (min-width: 768px) and (max-width: 1199px) {

  /* reduz espaço geral da seção */
  .videos-wrapper {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  /* título mais compacto */
  .videos-wrapper h2 {
    margin-bottom: 16px;
  }

  /* layout empilhado */
  .videos-wrapper .videos-layout {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  /* player mais baixo */
  .videos-wrapper .video-player {
    padding: 16px;
  }

  .videos-wrapper .video-player iframe {
    height: 260px !important;
  }

  /* lista mais compacta */
  .videos-wrapper .video-list {
    gap: 10px;
  }

  .videos-wrapper .video-item {
    padding: 14px;
    font-size: 13px;
  }

}

/* ================= FOOTER – AJUSTES FINAIS ================= */

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #eaeaea;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color .3s ease;
}

.footer-contact:hover {
  color: #d1006c;
}

/* ícones rosas */
.footer-icon {
  font-size: 16px;
  color: #d1006c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* remove qualquer CTA residual de navegação */
.footer-cta {
  display: none !important;
}

/* ================= FOOTER ================= */

.site-footer {
  background: #040404;
  border-top: 1px solid rgba(209,0,108,.25);
  padding: 80px 20px 40px;
}

.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-brand {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.footer-text {
  font-size: 14px;
  line-height: 1.6;
  color: #bdbdbd;
  margin-top: 12px;
}

.footer-col h4 {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-link,
.footer-contact {
  display: block;
  font-size: 14px;
  color: #eaeaea;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color .3s ease;
}

.footer-link:hover,
.footer-contact:hover {
  color: #d1006c;
}

/* CTA navegação */
.footer-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid rgba(209,0,108,.6);
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  transition: all .3s ease;
}

.footer-cta:hover {
  background: rgba(209,0,108,.15);
  box-shadow: 0 0 18px rgba(209,0,108,.4);
}

/* BASE DO FOOTER */
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(209,0,108,.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: #9a9a9a;
}

.footer-dev {
  color: #d1006c;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    text-align: center;
    justify-content: center;
  }
}

.footer-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
  fill: #d1006c;
}

/* ================= FOOTER – AJUSTE LIMPO E DEFINITIVO ================= */

/* dá mais largura útil ao footer */
.footer-inner {
  max-width: 1280px;      /* antes 1100px */
  gap: 120px;             /* espaço real entre colunas */
}

/* remove qualquer linha/divisor acidental */
.footer-col::after {
  display: none !important;
}

/* melhora a leitura da coluna central */
.footer-col {
  padding-right: 0;
}

/* assinatura em branco (como você pediu) */
.footer-dev {
  color: #ffffff !important;
  font-weight: 500;
}