/* ---------------------------------------------------------
  Geral
--------------------------------------------------------- */

section.video-destaque,
section.tecnica-beneficios,
section.blog-destaque,
section.tecnicas-beneficios  {
  background-color: var(--neve);
}

section.video-destaque,
section.tecnicas-beneficios {
  text-align: center;
}

section.depoimentos-destaque .section-header,
section.blog-destaque .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 20px 0;
}

/* ---------------------------------------------------------
   Banner
--------------------------------------------------------- */

section.banner {
  background: #fff;
  padding: 0;
  max-height: fit-content;
  padding-bottom: 0;
}

.banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.banner-infos {
  flex: 1;
}

.banner-foto {
  flex: 1;
  text-align: right;
  width: 50%;
  max-width: 450px;
  max-height: 90%;
}

.banner-foto img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.destaque-clientes {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--destaque-escuro);
  margin-bottom: 20px;
}

.destaque-clientes img {
  height: 50px;
  width: auto;
}

.video-destaque .destaque-clientes {
  display: none;
}

.banner span {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: clamp(2rem, 4vw, 3rem);;
  font-weight: 300;
  color: var(--texto-principal);
  margin-bottom: 30px;
}

.banner span strong {
  color: var(--texto-principal);
}

.banner h1 {
  color: var(--destaque-escuro);
  font-weight: 400;
  font-size: clamp(1.2rem, 4vw, 2rem);
  line-height: normal;
  margin-bottom: 10px;
  margin-top: 3vh;
}

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

.banner ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 400;
}

.banner ul li img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/* Banner - Responsividade */
@media (min-width: 1200px) {
  .banner-foto {
  transform: translateX(80px);
  }
}

@media (max-width: 991px) {
  .banner .container {
  flex-direction: column;
  gap: 0;
  }
  .banner-infos {
  max-width: 100%;
  }
  .banner-foto {
  text-align: center;
  transform: none;
  margin-top: 10px;
  min-width: auto;
  max-width: 75%;
  width: auto;
  }
}

@media (max-width: 576px) {
  .banner .container {
  text-align: center;
  }

  .banner .destaque-clientes {
  display: none;
  }

  .video-destaque .destaque-clientes {
  font-size: 1.2rem;
  gap: 8px;
  display: flex;
  justify-content: center;
  margin-top: 50px;
  color: var(--destaque-escuro);
  font-weight: 700;
  }

  .banner h1 {
    font-size: clamp(1rem, 4.5vw, 2rem);
  }

  .banner span {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: clamp(2.2rem, 4vw, 3rem);
  }

  .video-destaque .destaque-clientes img {
  height: 30px;
  }

  .banner ul {
  padding: 0 3vw;
  text-align: left;
  }

  section.banner {
  max-height: fit-content;
  }

  section.banner .container {
  padding-top: 30px;
  }

  .banner ul li {
    font-size: 18px;
  }
}

/* ================================
   Vídeo destaque
=================================*/

.video-destaque .video-placeholder, .video-destaque .video .video-embed-wrap {
  margin: auto !important;
}

.video-destaque p {
  font-size: 1.6em;
  margin-bottom: 20px;
}

/* ================================
   Seção Sobre Doctorz
=================================*/

.sobre-doctorz {
  padding: 6vh 0;
}

.sobre-doctorz_inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sobre-doctorz_inner.has-image.image-left {
  flex-direction: row;
}

.sobre-doctorz_image {
  flex: 0 0 45%;
  max-width: 500px;
}

.sobre-doctorz_image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

.sobre-doctorz_content {
  flex: 1;
  min-width: 280px;
}

.sobre-doctorz_content .ns-cta {
  margin-top: 24px;
}

/* ------------------------------
   Responsividade
-------------------------------*/
@media (max-width: 900px) {
  .sobre-doctorz_inner {
  flex-direction: column;
  gap: 24px;
  text-align: center;
  }

  .sobre-doctorz_image {
  flex: 0 0 auto;
  width: 100%;
  }

  .sobre-doctorz_image img {
  max-height: 300px;
  width: 100%;
  }
}

/* ---------------------------------------------------------
   Técnicas
--------------------------------------------------------- */

.tecnicas-beneficios .container {
  width: 95%;
  max-width: 1450px;
  margin: auto;
}

/* Card técnicas */
.card-tecnicas {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  justify-content: center;
  padding: 2px;
}

.card-tecnicas .video,
.video .video-placeholder.tecnica-video,
.video .video-embed-wrap {
  flex: 1;
  width: 100%;
  max-width: 750px;
  min-width: 280px;
  margin: 0;
}

.card-tecnicas .btn {
  background: transparent !important;
  border: 2px solid var(--texto-principal);
}

.card-tecnicas .btn:hover {
  background: var(--texto-principal) !important;
  color: var(--branco);
  border: none;
}

.info-tecnica h3 {
  font-weight: 700;
}

.info-tecnica p,
.info-tecnica h3 {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: clamp(26px, 1.5vw, 30px);
}

.info-tecnica {
  display: flex;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.29);
  width: 500px;
  position: relative;
  right: -20px;
  z-index: 2;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1100px) {
  .carrossel.carrossel-tecnicas {
  width: 100%;
  max-width: 95vw;
  }
  .card-tecnicas {
  flex-direction: column-reverse;
  }
  .card-tecnicas.video {
  width: 100%;
  }
  .info-tecnica {
  width: 95%;
  right: 0px;
  top: -10px;
  }
}

/* ---------------------------------------------------------
  Benefícios grid
--------------------------------------------------------- */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Mobile: 1 coluna */
@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefit-card-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

h3.benefit-cardtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--texto-principal);
}

.benefit-icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.benefit-card-desc {
  font-size: 1rem;
  color: #454379;
  line-height: 1.6;
  flex: 1;
}

.benefit-card-desc p {
  margin-bottom: 0;
}

article.benefit-card {
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
}

/* ---------------------------------------------------------
   Blog DESTAQUES
--------------------------------------------------------- */

section.blog-destaque.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card-post a.btn {
  margin-top: 20px;
  background-color: transparent !important;
}

/* ---------------------------------------------------------
   Swiper - base
--------------------------------------------------------- */

/* Remove setas padrão do swiper */
.swiper-button-next::after,
.swiper-button-prev::after {
  content: none !important;
  display: none !important;
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--destaque-contraste);
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 30px;
  height: 30px;
  fill: var(--destaque-contraste);
}

.swiper-tecnicas .swiper-wrapper {
  flex: initial !important;
  align-items: initial !important;
}


/* ---------------------------------------------------------
   Carrossel - containers
--------------------------------------------------------- */

.carrossel-blog {
  display: flex;
  align-items: center;
  width: 95%;
  max-width: 1350px;
  margin: auto;
  gap: 20px;
}

.carrossel .swiper,
.carrossel-blog .swiper {
  flex: 1;
  max-width: 100%;
  padding: 2px;
}

.swiper-controles {
  display: flex;
  align-items: center;
}

/* ---------------------------------------------------------
   Custom Pagination
--------------------------------------------------------- */

.custom-pagination {
  position: relative;
  z-index: 50;
  pointer-events: auto;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 2vh;
}

.custom-pagination .bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.12s;
}

.custom-pagination .bullet.active {
  background-color: var(--destaque-contraste);
  transform: scale(1.05);
}

/* ---------------------------------------------------------
   Responsividade comum
--------------------------------------------------------- */

@media (max-width: 1200px) {
  .swiper-controles {
  max-width: 90%;
  }
}

@media (max-width: 768px) {
  .swiper-controles {
  max-width: 100%;
  }
}

@media (max-width: 480px) {
  .swiper-button-prev svg,
  .swiper-button-next svg {
  width: 24px;
  height: 24px;
  }
  .custom-pagination .bullet {
  width: 10px;
  height: 10px;
  }
}


/* ---------------------------------------------------------
   Card Post
--------------------------------------------------------- */

.card-post {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.card-post-image, .card-post-image img {
  width: 100%;
  height: clamp(250px, 30vh, 200px);
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.card-post-content {
  padding-top: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-post-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--destaque-escuro);
}

.card-post-title a {
  text-decoration: none;
  color: #333;
}

.card-post-excerpt {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5rem;
  color: #474752;
}

.card-post p.card-post-excerpt {
  margin-bottom: 5px;
}

.card-post .btn,
.card-post-mini .btn {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  background-color: transparent;
  font-weight: bold !important;
  color: var(--destaque-contraste) !important;
  font-size: 0.95rem !important;
  gap: 5px !important;
  padding: 10px 0;
  transition: 0.3s !important;
}

.card-post .btn svg,
.card-post-mini .btn svg {
  width: 12px !important;
  height: 12px !important;
  fill: currentColor !important;
}

.card-post .btn:hover {
  color: #005bb5 !important;
}
