/* ============================================================
   team-section.css  — Estilos modernos para sección equipo
   Aplica a: .ozellika  y  .team-section
   Independiente del style.css principal — agregar como <link>
   ============================================================ */

/* ── Variables de color alineadas con la marca ── */
:root {
  --tc-blue:       #0c5adb;
  --tc-blue-dark:  #0843a8;
  --tc-accent:     #25aae2;
  --tc-white:      #ffffff;
  --tc-gray-light: #f4f7ff;
  --tc-gray-text:  #6b7c9e;
  --tc-dark:       #0d1b3e;
  --tc-radius:     16px;
  --tc-shadow:     0 20px 60px rgba(12, 90, 219, 0.12);
}

/* ============================================================
   1. FRANJA MOTIVACIONAL  (.ozellika)
   — Reemplaza el bloque azul sólido y encimado
   ============================================================ */

.ozellika {
  background-color: var(--tc-blue) !important;
  padding: 2.8rem 0 !important;
  margin: 0 !important;
  position: relative;
  z-index: 1;
  border-left: 6px solid var(--tc-accent);
}

.ozellika .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.ozellika .row {
  background: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.ozellika .row::before,
.ozellika .row::after { display: none !important; }

.ozellika .row .boslukalt { display: none; }

.ozellika .col-lg-12::before { display: none !important; }

/* Título */
.ozellika .h2-baslik-hizmetler-21 {
  font-size: 2rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  color: var(--tc-white) !important;
  text-align: center !important;
  line-height: 1.3 !important;
  margin-bottom: 0.7rem !important;
  text-transform: none !important;
  display: block !important;
}

/* Párrafo */
.ozellika .h2-baslik-hizmetler-21__paragraf {
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.80) !important;
  text-align: center !important;
  max-width: 580px !important;
  margin: 0 auto !important;
  line-height: 1.65 !important;
}

/* Responsive ozellika */
@media (max-width: 900px) {
  .ozellika {
    padding: 2.2rem 0 !important;
  }
  .ozellika .h2-baslik-hizmetler-21 {
    font-size: 1.7rem !important;
    margin-top: 0 !important;
  }
  .ozellika .h2-baslik-hizmetler-21__paragraf {
    font-size: 1.2rem !important;
    padding: 0 1rem !important;
  }
}


/* ============================================================
   2. SECCIÓN EQUIPO  (.team-section)
   — Fondo limpio, tarjetas modernas, sin márgenes negativos caóticos
   ============================================================ */

.team-section {
  padding: 7rem 0 7rem !important;
  margin-top: 0 !important;
  background-color: var(--tc-gray-light) !important;
  position: relative;
}

/* Separador superior sutil */
.team-section::before {
  display: none !important;
}

/* Título de sección del equipo (si existe) */
.team-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ── Carousel ── */
.team-section .carousel-classes,
.carousel-classes {
  position: relative !important;
  padding-bottom: 4rem !important;
}

/* ── Tarjeta de miembro ── */
.team-section .member-box {
  border-radius: var(--tc-radius) !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(12, 90, 219, 0.10) !important;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
  margin: 1rem !important;
}

.team-section .member-box:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 50px rgba(12, 90, 219, 0.18) !important;
}

/* Imagen sin desbordamiento */
.team-section .member-box img {
  width: 100% !important;
  display: block !important;
  aspect-ratio: 3 / 4;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

.team-section .member-box:hover img {
  transform: scale(1.04) !important;
}

/* ── Figcaption moderno (siempre visible en la parte inferior) ── */
.team-section .member-box figcaption {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  background: linear-gradient(to top, rgba(8, 67, 168, 0.97) 60%, rgba(12, 90, 219, 0.80)) !important;
  color: #fff !important;
  padding: 2rem 2.4rem !important;
  transform: translateY(0) !important;        /* siempre visible */
  transition: background 0.3s ease !important;
  backdrop-filter: blur(4px);
  text-align: left !important;
}

.team-section .member-box:hover figcaption {
  background: linear-gradient(to top, rgba(5, 30, 110, 0.98) 60%, rgba(12, 90, 219, 0.92)) !important;
}

/* Nombre */
.team-section .member-box figcaption h6 {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin-bottom: 0.5rem !important;
  color: #fff !important;
}

/* Cargo / descripción */
.team-section .member-box figcaption .paragraf-sol-beyaz-orta {
  font-size: 1.2rem !important;
  opacity: 0.82 !important;
  margin-bottom: 1rem !important;
  line-height: 1.5 !important;
  display: block !important;
}

/* Redes sociales */
.team-section .member-box figcaption ul {
  display: flex !important;
  gap: 1rem !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  justify-content: flex-start !important;
}

.team-section .member-box figcaption ul li {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.team-section .member-box figcaption ul li a {
  color: rgba(255,255,255, 0.7) !important;
  font-size: 1.4rem !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
  display: inline-block !important;
}

.team-section .member-box figcaption ul li a:hover {
  color: var(--tc-accent) !important;
  transform: scale(1.2) !important;
}

/* ── Paginación swiper — Opción C: puntos con anillo exterior ── */
.team-section .swiper-pagination,
.carousel-classes .swiper-pagination {
  position: absolute !important;
  bottom: 10px !important;
  left: 0 !important;
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 18px !important;
  line-height: 1 !important;
}

.team-section .swiper-pagination-bullet,
.carousel-classes .swiper-pagination-bullet {
  background: var(--tc-blue) !important;
  opacity: 0.25 !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  display: inline-block !important;
  cursor: pointer !important;
  transition: opacity 0.3s ease, box-shadow 0.3s ease !important;
  margin: 0 !important;
  box-shadow: none !important;
}

.team-section .swiper-pagination-bullet:hover,
.carousel-classes .swiper-pagination-bullet:hover {
  opacity: 0.55 !important;
}

.team-section .swiper-pagination-bullet-active,
.carousel-classes .swiper-pagination-bullet-active {
  background: var(--tc-blue) !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  box-shadow:
    0 0 0 3px #ffffff,
    0 0 0 5px var(--tc-blue) !important;
}

/* Responsive team */
@media (max-width: 900px) {
  .team-section {
    padding: 5rem 0 5rem !important;
    margin-top: 0 !important;
  }
}
/* ── Ocultar scrollbar del Swiper (manchas azules) ── */
.team-section .swiper-scrollbar,
.carousel-classes .swiper-scrollbar {
  display: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
}

/* ── Quitar overlay azul en tarjeta activa/central ── */
.team-section .swiper-slide-active .member-box::after,
.team-section .swiper-slide .member-box::after,
.carousel-classes .swiper-slide-active figure::after,
.carousel-classes .swiper-slide figure::after {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}

.team-section .swiper-slide-active .member-box img,
.carousel-classes .swiper-slide-active figure img {
  filter: none !important;
  opacity: 1 !important;
}

/* ── Ocultar scrollbar Swiper completamente ── */
.team-section .swiper-scrollbar,
.carousel-classes .swiper-scrollbar,
.swiper-scrollbar {
  display: none !important;
  height: 0 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}