/* =============================
   💎 ENFERMAGEM OBSTÉTRICA - LUX PREMIUM
   ============================= */

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

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(180deg, #fff8f8 0%, #fdeef3 100%);
  color: #333;
  overflow-x: hidden;
}

/* =============================
   🌸 NAVBAR
   ============================= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #4b1024;
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 50px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-voltar-fixo {
  position: absolute;
  left: 20px;
  background-color: #6e1332;
  color: #ffffff;
  font-weight: bold;
  padding: 0.4rem 0.8rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 12px rgba(75, 23, 23, 0.2);
  transition: all 0.3s ease;
}

.btn-voltar-fixo:hover {
  background-color: #ff92ac;
  transform: translateY(-2px);
}

header h1 {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
}

/* =============================
   🌷 HERO SECTION (ajustada para caber tudo na tela)
   ============================= */
.hero {
  position: relative;
  height: 60vh; /* ocupa toda a tela */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  /* 🔥 Gradiente suave e imagem nítida */
  background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.15) 0%,
      /* leve escurecimento no topo */ rgba(0, 0, 0, 0.05) 50%,
      /* quase transparente no meio */ rgba(0, 0, 0, 0.25) 100%
        /* um leve contraste no rodapé */
    ),
    url("imgg/blaid.jpg") center / cover no-repeat;
  text-align: center;
  padding: 2vh 0;
  overflow: hidden;
}

/* =============================
   🎬 VÍDEO PRINCIPAL (ocupa 60% da tela)
   ============================= */
.main-video {
  width: 40%;
  max-width: 900px;
  height: 50vh;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  top: 1.5rem;
  position: relative;
}

.main-video video,
.main-video iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  display: block;
}

.main-video:hover {
  transform: scale(1.02);
}

/* =============================
   🎥 CARROSSEL DE VÍDEOS (ocupa 35–40% da tela)
   ============================= */
.carrossel {
  width: 100%;
  height: 35vh;
  text-align: center;
  background: #230911;
  padding: 10px 20px;
}

.carrossel h2 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.carrossel-container {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  scroll-behavior: smooth; /* mantém rolagem suave para usuário */
  /* desative o snap por CSS — vamos controlar via JS quando quiser */
  scroll-snap-type: none !important;
  padding: 5px;
}

.carrossel-item {
  flex: 0 60 170px;
  scroll-snap-align: center;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  height: 10rem;
}

.carrossel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carrossel-item:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 35px rgba(183, 47, 107, 0.3);
}

.carrossel-item span {
  position: absolute;
  bottom: 8px;
  left: 10px;
  background: rgb(28 28 28 / 85%);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

/* =============================
   📱 RESPONSIVIDADE
   ============================= */
/* =============================
   📱 RESPONSIVIDADE (para telas menores que 768px)
   ============================= */
@media (max-width: 768px) {
  /* =============================
     🎥 CARROSSEL (mantém horizontal no mobile)
     ============================= */
  .carrossel-container {
    overflow-x: auto; /* permite deslizar lateralmente com o dedo */
    scroll-snap-type: x mandatory; /* faz o "encaixe" suave entre os vídeos */
    -webkit-overflow-scrolling: touch; /* rolagem fluida em iPhones */
    justify-content: flex-start; /* alinha os vídeos à esquerda */
    padding-bottom: 10px; /* espaçamento inferior para evitar corte */
  gap: 10px;
  }

  .carrossel-item {
    flex: 0 0 50%;
    height: 11rem; /* cada vídeo ocupa 75% da largura da tela */
    scroll-snap-align: center; /* centraliza cada item ao parar de rolar */
    margin-right: 15px; /* espaço entre os vídeos */
  }

  .carrossel h2 {
    font-size: 1.5rem; /* título um pouco menor no mobile */
  }

  /* =============================
     🌸 HEADER (título centralizado + botão à esquerda)
     ============================= */
  header {
    display: flex;
    align-items: center;
    justify-content: center; /* centraliza o h1 */
    position: relative;
    background: 4b1024; /* fundo rosa suave */
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

  /* Botão “Início” no canto esquerdo, fixo dentro do header */
  .btn-voltar-fixo {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #510a15;
    color: #ffffff;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 0.9rem;
  }

  .btn-voltar-fixo:hover {
    background-color: #ff92ac; /* cor mais viva ao passar o mouse */
    transform: translateY(-50%) scale(1.05); /* leve aumento */
  }

  /* Centralização e estilo do título */
  header h1 {
    display: none;
  }

  /* =============================
     🌷 HERO SECTION (ajuste para caber na tela menor)
     ============================= */
  .hero {
    height: auto; /* altura automática */
    padding: 45px 20px; /* espaço interno confortável */
  }

  .hero-text {
    padding: 20px;
    max-width: 90%; /* limita o tamanho no mobile */
  }

  .hero-text h2 {
    font-size: 1.6rem; /* título menor */
  }

  /* =============================
     🎬 VÍDEO PRINCIPAL (mantém centralizado)
     ============================= */
  .main-video {
    width: 95%; /* ocupa quase toda a largura */
    top: 0rem; /* leve afastamento do topo */
  }
}
