@font-face {
    font-family: "Montserrat";
    src: url("/fonts/montserrat/Montserrat-VariableFont_wght.ttf");
    font-display: swap;
}

body {
  color: var(--coco-gold);
  margin: 0;
  font-size: 0.875rem;
  font-family: var(--coco-font-sans);
  font-weight: 400;
  line-height: 1.43;
  background-color: black;
}
body::backdrop {
  background-color: black;
}
html{
  background-color: black;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--coco-font-serif);
}

:root {
  --coco-bg-dark: hsla(198,35%,7%,1);
  --coco-gold: #c08e51;
  --coco-parchment: #E4D3B4;
  --coco-white: #FFFFFF;
  --coco-font-serif: 'Cormorant Garamond', serif;
  --coco-font-sans: 'Montserrat', sans-serif;
}

/* 1. CONTENEDOR PRINCIPAL */
.coco-profile-wrapper {
  width: 100%;
  background-color: var(--coco-bg-dark);
  color: var(--coco-parchment);
  padding: 60px 40px 100px 40px; 
  box-sizing: border-box;
  overflow: hidden;
}

.coco-profile-grid {
  display: grid;
  /* Columna Izq (Foto 40%) | Columna Der (Info 60%) */
  grid-template-columns: 0.8fr 1.2fr; 
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

/* 2. COLUMNA IZQUIERDA: FOTO */
.coco-profile-image-col {
  position: relative;
}

.coco-profile-img-container {
  width: 100%;
  aspect-ratio: 3 / 4; /* Formato Retrato */
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(192, 142, 81, 0.2);
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.coco-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(10%) contrast(95%);
}

/* Insignia de Verificado */
.coco-verified-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(12, 21, 25, 0.9);
  backdrop-filter: blur(5px);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid var(--coco-gold);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.coco-badge-icon {
  color: var(--coco-gold);
  font-size: 14px;
}

.coco-badge-text {
  font-family: var(--coco-font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--coco-parchment);
  font-weight: 600;
}

/* 3. COLUMNA DERECHA: INFO */
.coco-profile-info-col {
  text-align: left;
  padding-top: 10px;
}

/* Rol y Nombre */
.coco-profile-role {
  font-family: var(--coco-font-sans);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--coco-gold);
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
}

.coco-profile-name {
  font-family: var(--coco-font-serif);
  font-size: 48px;
  line-height: 1.1;
  color: var(--coco-white);
  margin: 0 0 20px 0;
}

/* Tags de Especialidad */
.coco-specialties-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.coco-spec-tag {
  font-family: var(--coco-font-sans);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border: 1px solid rgba(228, 211, 180, 0.3);
  border-radius: 20px;
  color: rgba(228, 211, 180, 0.8);
}

/* Bio Texto */
.coco-profile-bio {
  font-family: var(--coco-font-sans);
  font-size: 16px;
  line-height: 1.8;
  color: rgba(228, 211, 180, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
}

/* Caja de "Ofertas" */
.coco-offerings-box {
  background: rgba(12, 21, 25, 0.5); 
  border-left: 3px solid var(--coco-gold);
  padding: 30px;
  margin-bottom: 40px;
}

.coco-offerings-title {
  font-family: var(--coco-font-serif);
  font-size: 22px;
  color: var(--coco-white);
  margin: 0 0 15px 0;
  font-style: italic;
}

.coco-offerings-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coco-offerings-list li {
  font-family: var(--coco-font-sans);
  font-size: 14px;
  color: var(--coco-parchment);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.coco-offerings-list li::before {
  content: '✦';
  color: var(--coco-gold);
  font-size: 14px;
  margin-top: 3px;
}

/* Botón de Acción */
.coco-book-btn {
  display: inline-block;
  background: linear-gradient(90deg, #724B39 0%, #c08e51 100%);
  color: #0C1519;
  text-decoration: none;
  padding: 18px 50px;
  border-radius: 50px;
  font-family: var(--coco-font-sans);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(192, 142, 81, 0.2);
  border: none;
}

.coco-book-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 10px 30px rgba(192, 142, 81, 0.4);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 768px) {
  .coco-profile-wrapper {
      padding: 30px 20px;
  }
  
  .coco-profile-grid {
      grid-template-columns: 1fr; /* Una sola columna */
      gap: 30px;
  }

  .coco-profile-name {
      font-size: 36px;
  }

  .coco-profile-img-container {
      max-height: 500px; 
  }

  .coco-book-btn {
      width: 100%; 
      text-align: center;
      box-sizing: border-box;
  }
}

.coco-combined-hero {
  width: 100%;
  padding: 20px 0 60px 0;
  background-color: var(--coco-bg-dark);
  color: var(--coco-parchment);
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
  border-bottom: 1px solid var(--coco-bg-dark);
  position: relative;
  z-index: 1;
}

.coco-content-limit {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- NUEVOS ESTILOS PARA EL LOGO GIRATORIO (PNG) --- */
.coco-spinning-logo {
  display: block;
  width: 80px;
  /* Tamaño del logo */
  height: 80px;
  /* Asegura que la imagen se contenga bien en el espacio */
  object-fit: contain;
  margin: 0 auto 25px auto;
  /* Centrado y margen inferior */
  /* Animación: nombre, duración, tipo, repetición */
  /* CAMBIO: Ahora usa 'spinRight' */
  animation: spinRight 60s linear infinite;
}

/* Definición de la animación de giro a la DERECHA (Clockwise) */
@keyframes spinRight {
  from {
      transform: rotate(0deg);
  }

  to {
      transform: rotate(360deg);
  }

  /* Grados positivos para girar a la derecha */
}

/* ELIMINADO: .coco-guide-eyebrow ya no se usa */
.coco-guide-title {
  font-family: var(--coco-font-serif);
  font-size: clamp(38px, 5vw, 60px);
  color: var(--coco-parchment);
  line-height: 1.15;
  margin: 0 auto 35px auto;
}

.coco-guide-title span {
  font-style: italic;
  color: var(--coco-gold);
}

.coco-search-container {
  max-width: 700px;
  margin: 0 auto 70px auto;
}

.coco-search-form {
  display: flex;
  align-items: center;
  background: rgba(12, 21, 25, 0.6);
  border: 1px solid rgba(192, 142, 81, 0.3);
  padding: 8px;
  border-radius: 60px;
  backdrop-filter: blur(5px);
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.coco-search-form:hover {
  border-color: var(--coco-gold);
}

.coco-search-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 15px 25px;
  height: 50px;
  font-family: var(--coco-font-sans);
  font-size: 16px;
  color: var(--coco-parchment);
  outline: none;
  box-sizing: border-box;
}

.coco-search-btn {
  background: linear-gradient(90deg, #724B39 0%, #c08e51 100%);
  color: #0C1519;
  border: none;
  height: 50px;
  padding: 0 40px;
  border-radius: 40px;
  font-family: var(--coco-font-sans);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.coco-search-btn:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(192, 142, 81, 0.3);
}

.coco-carousel-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  text-align: left;
  display: flex;
  justify-content: flex-start;
}

.coco-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLeft 60s linear infinite;
  transform: translateX(0);
  margin: 0;
  padding-left: 0;
}

.coco-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
      transform: translateX(0);
  }

  100% {
      transform: translateX(-50%);
  }
}

.coco-card {
  flex: 0 0 280px;
  height: 380px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  background: #000;
}

.coco-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  opacity: 0.9;
}

.coco-card:hover .coco-card-img {
  transform: scale(1.05);
  opacity: 1;
}

.coco-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(12, 21, 25, 0.95) 10%, rgba(12, 21, 25, 0.6) 50%, transparent 100%);
  pointer-events: none;
}

.coco-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 2;
  text-align: left;
}

.coco-card-name {
  font-family: var(--coco-font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--coco-white);
  margin: 0 0 4px 0;
}

.coco-card-role {
  font-family: var(--coco-font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 8px;
  font-weight: 300;
}

.coco-reviews-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.coco-stars {
  color: var(--coco-gold);
  font-size: 12px;
}

.coco-review-num {
  color: rgba(228, 211, 180, 0.6);
  font-size: 11px;
  font-family: var(--coco-font-sans);
}

/* --- AJUSTES MÓVIL (CORREGIDOS) --- */
@media (max-width: 768px) {
  .sqs-block-code, .sqs-block-content {
      padding: 0 !important;
      margin: 0 !important;
  }

  .coco-combined-hero {
      padding-top: 10px !important;
      margin-top: -20px !important;
      margin-bottom: -10px !important;
      padding-bottom: 50px !important;
      min-height: 0 !important;
      height: auto !important;
      border-bottom: none !important;
  }

  /* Ajuste del tamaño del logo en móvil */
  .coco-spinning-logo {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
  }

  .coco-carousel-track {
      animation-duration: 10s !important;
  }

  .coco-carousel-wrapper {
      overflow-x: hidden !important;
  }

  .coco-guide-title {
      font-size: 32px;
      margin-bottom: 25px;
      margin-top: 0px;
  }

  .coco-search-container {
      margin-bottom: 40px;
  }

  .coco-search-form {
      flex-direction: column;
      border-radius: 20px;
      padding: 10px;
      gap: 10px;
  }

  .coco-search-input {
      width: 100%;
      text-align: center;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      height: auto;
  }

  .coco-search-btn {
      width: 100%;
      height: 45px;
  }

  .coco-card {
      flex: 0 0 240px;
      height: 320px;
  }
}

.coco-combined-hero {
  width: 100%;
  padding: 20px 0 60px 0;
  background-color: var(--coco-bg-dark);
  color: var(--coco-parchment);
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
  border-bottom: 1px solid var(--coco-bg-dark);
  position: relative;
  z-index: 1;
}

.coco-content-limit {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- NUEVOS ESTILOS PARA EL LOGO GIRATORIO (PNG) --- */
.coco-spinning-logo {
  display: block;
  width: 80px;
  /* Tamaño del logo */
  height: 80px;
  /* Asegura que la imagen se contenga bien en el espacio */
  object-fit: contain;
  margin: 0 auto 25px auto;
  /* Centrado y margen inferior */
  /* Animación: nombre, duración, tipo, repetición */
  /* CAMBIO: Ahora usa 'spinRight' */
  animation: spinRight 60s linear infinite;
}

/* Definición de la animación de giro a la DERECHA (Clockwise) */
@keyframes spinRight {
  from {
      transform: rotate(0deg);
  }

  to {
      transform: rotate(360deg);
  }

  /* Grados positivos para girar a la derecha */
}

/* ELIMINADO: .coco-guide-eyebrow ya no se usa */
.coco-guide-title {
  font-family: var(--coco-font-serif);
  font-size: clamp(38px, 5vw, 60px);
  color: var(--coco-parchment);
  line-height: 1.15;
  margin: 0 auto 35px auto;
}

.coco-guide-title span {
  font-style: italic;
  color: var(--coco-gold);
}

.coco-search-container {
  max-width: 700px;
  margin: 0 auto 70px auto;
}

.coco-search-form {
  display: flex;
  align-items: center;
  background: rgba(12, 21, 25, 0.6);
  border: 1px solid rgba(192, 142, 81, 0.3);
  padding: 8px;
  border-radius: 60px;
  backdrop-filter: blur(5px);
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.coco-search-form:hover {
  border-color: var(--coco-gold);
}

.coco-search-input {
  flex-grow: 1;
  background: transparent;
  border: none;
  padding: 15px 25px;
  height: 50px;
  font-family: var(--coco-font-sans);
  font-size: 16px;
  color: var(--coco-parchment);
  outline: none;
  box-sizing: border-box;
}

.coco-search-btn {
  background: linear-gradient(90deg, #724B39 0%, #c08e51 100%);
  color: #0C1519;
  border: none;
  height: 50px;
  padding: 0 40px;
  border-radius: 40px;
  font-family: var(--coco-font-sans);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.coco-search-btn:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(192, 142, 81, 0.3);
}

.coco-carousel-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  text-align: left;
  display: flex;
  justify-content: flex-start;
}

.coco-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollLeft 60s linear infinite;
  transform: translateX(0);
  margin: 0;
  padding-left: 0;
}

.coco-carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
      transform: translateX(0);
  }

  100% {
      transform: translateX(-50%);
  }
}

.coco-card {
  flex: 0 0 280px;
  height: 380px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  background: #000;
}

.coco-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  opacity: 0.9;
}

.coco-card:hover .coco-card-img {
  transform: scale(1.05);
  opacity: 1;
}

.coco-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(12, 21, 25, 0.95) 10%, rgba(12, 21, 25, 0.6) 50%, transparent 100%);
  pointer-events: none;
}

.coco-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 2;
  text-align: left;
}

.coco-card-name {
  font-family: var(--coco-font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--coco-white);
  margin: 0 0 4px 0;
}

.coco-card-role {
  font-family: var(--coco-font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 8px;
  font-weight: 300;
}

.coco-reviews-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.coco-stars {
  color: var(--coco-gold);
  font-size: 12px;
}

.coco-review-num {
  color: rgba(228, 211, 180, 0.6);
  font-size: 11px;
  font-family: var(--coco-font-sans);
}

/* --- AJUSTES MÓVIL (CORREGIDOS) --- */
@media (max-width: 768px) {
  .sqs-block-code, .sqs-block-content {
      padding: 0 !important;
      margin: 0 !important;
  }

  .coco-combined-hero {
      padding-top: 10px !important;
      margin-top: -20px !important;
      margin-bottom: -10px !important;
      padding-bottom: 50px !important;
      min-height: 0 !important;
      height: auto !important;
      border-bottom: none !important;
  }

  /* Ajuste del tamaño del logo en móvil */
  .coco-spinning-logo {
      width: 60px;
      height: 60px;
      margin-bottom: 20px;
  }

  .coco-carousel-track {
      animation-duration: 10s !important;
  }

  .coco-carousel-wrapper {
      overflow-x: hidden !important;
  }

  .coco-guide-title {
      font-size: 32px;
      margin-bottom: 25px;
      margin-top: 0px;
  }

  .coco-search-container {
      margin-bottom: 40px;
  }

  .coco-search-form {
      flex-direction: column;
      border-radius: 20px;
      padding: 10px;
      gap: 10px;
  }

  .coco-search-input {
      width: 100%;
      text-align: center;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      height: auto;
  }

  .coco-search-btn {
      width: 100%;
      height: 45px;
  }

  .coco-card {
      flex: 0 0 240px;
      height: 320px;
  }
}

.sqs-block[data-definition-name="website.components.imageFluid"] .design-layout-fluid img
 {
    width: 100%;
    height: 100%;
    position: absolute;
}


/* --- ESTILOS DEL NUEVO HEADER --- */
.coco-header-wrapper {
  position: fixed; /* Fixed asegura que esté arriba siempre */
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  width: 100%;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(22, 33, 39, 0.05);
  padding: 15px 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

/* LOGO */
.coco-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  color: #162127;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.coco-logo span { color: #c08e51; }

/* NAVEGACIÓN */
.coco-nav { display: flex; gap: 30px; align-items: center; }

.coco-nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #162127;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.coco-nav-link::after {
  content: ''; position: absolute; width: 0; height: 1px; bottom: -5px; left: 0;
  background-color: #c08e51; transition: width 0.3s ease;
}
.coco-nav-link:hover { color: #c08e51; }
.coco-nav-link:hover::after { width: 100%; }

/* BOTÓN CTA */
.coco-header-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FFFFFF;
  background-color: #162127;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #162127;
  transition: all 0.3s ease;
}
.coco-header-btn:hover { background-color: transparent; color: #162127; }

/* RESPONSIVE MÓVIL (SIMPLE) */
@media (max-width: 900px) {
  .coco-header-wrapper {
    flex-direction: column;
    padding: 15px 20px;
    gap: 15px;
    position: relative; /* En móvil dejamos que fluya */
  }
  body { padding-top: 0px; } /* Quitamos el padding extra en móvil */
  .coco-nav { gap: 15px; flex-wrap: wrap; justify-content: center; }
}

#custom-global-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}