.elementor-kit-7{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-0f6c31b:#FEF9EF;--e-global-typography-primary-font-family:"Cormorant Garamond";--e-global-typography-primary-font-size:35px;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Cormorant Garamond";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Inter Tight";--e-global-typography-text-font-size:18px;--e-global-typography-text-font-weight:300;--e-global-typography-accent-font-family:"Inter Tight";--e-global-typography-accent-font-size:18px;--e-global-typography-accent-font-weight:400;}.elementor-kit-7 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//*BOTÓN WHATSAPP*/
.wa-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  height: 72px;
  padding-right: 72px;
  max-width: 100%;
}

.wa-pill {
  background: #FEF9EF;
  padding: 0 40px;
  height: 72px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
  border: 1px solid #ccc;
  box-shadow: 0 2px 12px rgba(195, 164, 100, 0.15);
  min-width: 0; /* permite que el pill se comprima */
}

.wa-text {
  color: #1a1a1a;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.wa-circle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #128C7E;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  transition:
    width 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-circle svg {
  color: #fff;
  flex-shrink: 0;
  transition:
    margin-left 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-wrap:hover .wa-circle {
  width: 100%;
  border-radius: 100px;
  background: #128C7E;
}

.wa-wrap:hover .wa-pill {
  opacity: 1;
}

.wa-wrap:hover .wa-circle svg {
  margin-left: 0;
  transform: translateX(3px);
}

.wa-wrap:active {
  transform: scale(0.97);
}

/* ── MÓVIL ── */
@media (max-width: 480px) {
  .wa-wrap {
    height: 56px;
    padding-right: 56px;
  }

  .wa-pill {
    height: 56px;
    padding: 0 24px;
  }

  .wa-text {
    font-size: 14px;
  }

  .wa-circle {
    width: 56px;
    height: 56px;
  }

  .wa-circle svg {
    width: 16px;
    height: 16px;
  }
}


/*TOGGLE DENTAVIDA*/
 /* ── CONTAINER ── */
  .toggle-dentavida-container {
    width: 100%;
    max-width: 580px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  }

  /* ── ITEM ── */
  .toggle-dentavida {
    position: relative;
    border-bottom: 1px solid #ede8df;
    cursor: pointer;
    transition: background 0.4s ease;
    overflow: hidden; /* para la línea y el fondo */
  }

  .toggle-dentavida:last-child {
    border-bottom: none;
  }

  /* Fondo cálido sutil */
  .toggle-dentavida::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #fdf8f0 0%, #fff 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .toggle-dentavida:hover::before,
  .toggle-dentavida.active::before {
    opacity: 1;
  }

  /* Línea de acento izquierda */
  .toggle-dentavida::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0%;
    background: #C3A464;
    border-radius: 0 2px 2px 0;
    transform: translateY(-50%);
    transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .toggle-dentavida:hover::after,
  .toggle-dentavida.active::after {
    height: 70%;
  }

  /* ── HEADER ── */
  .toggle-dentavida-header {
    position: relative; /* sobre el ::before */
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px 20px 28px;
  }

  /* Número */
  .toggle-dentavida-number {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.12em;
    color: #ccc;
    min-width: 20px;
    transition: color 0.35s ease;
  }

  .toggle-dentavida:hover .toggle-dentavida-number,
  .toggle-dentavida.active .toggle-dentavida-number {
    color: #C3A464;
  }

  /* Título */
  .toggle-dentavida-title {
    flex: 1;
    font-size: 18px;
    font-weight: 400;
    color: #1A1A1A;
    letter-spacing: 0.03em;
    transition: color 0.35s ease, letter-spacing 0.35s ease;
  }

  .toggle-dentavida:hover .toggle-dentavida-title,
  .toggle-dentavida.active .toggle-dentavida-title {
    color: #C3A464;
    letter-spacing: 0.05em;
  }

  /* Círculo con flecha */
  .toggle-dentavida-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #e0d8cc;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
      background 0.35s ease,
      border-color 0.35s ease,
      transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .toggle-dentavida-icon svg {
    color: #999;
    transition: color 0.35s ease, transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .toggle-dentavida:hover .toggle-dentavida-icon,
  .toggle-dentavida.active .toggle-dentavida-icon {
    background: #C3A464;
    border-color: #C3A464;
    transform: rotate(45deg);
  }

  .toggle-dentavida:hover .toggle-dentavida-icon svg,
  .toggle-dentavida.active .toggle-dentavida-icon svg {
    color: #fff;
  }

  /* ── CONTENIDO ── */
  .toggle-dentavida-content {
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
      opacity 0.4s ease 0.1s,
      transform 0.4s ease 0.1s;
  }

  .toggle-dentavida:hover .toggle-dentavida-content,
  .toggle-dentavida.active .toggle-dentavida-content {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
  }

  .toggle-dentavida-description {
    font-size: 13.5px;
    line-height: 1.75;
    color: #7a7060;
    padding: 0 24px 22px 64px; /* alineado con el título */
  }
  
/*PROCESO PRIMERA CONSULTA*/

.proceso-heading {
  text-align: center;
  margin-bottom: 80px;
}

.proceso-eyebrow {
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.proceso-wrapper {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.proceso-line-track {
  position: absolute;
  left: 50%;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: #e0d8cc;
  transform: translateX(-50%);
}

.proceso-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to bottom, #C3A464, #e8d9b8);
  transition: height 0.1s linear;
}

.proceso-step {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.proceso-step:last-child {
  margin-bottom: 0;
}

.proceso-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.proceso-left {
  padding-right: 48px;
  text-align: right;
}

.proceso-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.proceso-node-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #e0d8cc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  /* hereda font-size, font-family y color del tema */
  color: #bbb;
}

.proceso-step.visible .proceso-node-dot {
  border-color: #C3A464;
  color: #C3A464;
  box-shadow: 0 0 0 6px rgba(195, 164, 100, 0.08);
}

.proceso-right {
  padding-left: 48px;
  text-align: left;
}

.proceso-step:nth-child(even) .proceso-left {
  order: 3;
  text-align: left;
  padding-right: 0;
  padding-left: 48px;
}

.proceso-step:nth-child(even) .proceso-node {
  order: 2;
}

.proceso-step:nth-child(even) .proceso-right {
  order: 1;
  text-align: right;
  padding-left: 0;
  padding-right: 48px;
}

.proceso-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.proceso-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid rgba(195,164,100,0.15);
}

.proceso-step:nth-child(odd) .proceso-img-wrap {
  box-shadow: -8px 12px 40px rgba(0,0,0,0.08);
}

.proceso-step:nth-child(even) .proceso-img-wrap {
  box-shadow: 8px 12px 40px rgba(0,0,0,0.08);
}

.proceso-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}

.proceso-img-wrap:hover img {
  transform: scale(1.03);
}

.proceso-img-number {
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-size: 80px;
  font-weight: 300;
  color: rgba(255,255,255,0.18);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.proceso-content {
  padding: 8px 0;
}

.proceso-tag {
  display: inline-block;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C3A464;
  margin-bottom: 12px;
  font-weight: 500;
}

.proceso-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 14px;
  /* sin color — hereda del tema */
}

.proceso-title em {
  font-style: italic;
  color: #C3A464;
}

.proceso-desc {
  line-height: 1.8;
  /* sin color ni font-size — hereda párrafos del tema */
}

@media (max-width: 768px) {
  .proceso-img-wrap {
    display: none;
  }

  .proceso-line-track {
    left: 16px;
    transform: none;
  }

  .proceso-step {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 48px;
  }

  .proceso-step .proceso-node {
    order: 1;
    flex-shrink: 0;
  }

  .proceso-step .proceso-left,
  .proceso-step .proceso-right {
    order: 2;
    padding: 0;
    text-align: left;
  }

  .proceso-step:nth-child(even) .proceso-left,
  .proceso-step:nth-child(even) .proceso-right,
  .proceso-step:nth-child(even) .proceso-node {
    order: unset;
  }

  .proceso-step:nth-child(even) .proceso-node {
    order: 1;
    flex-shrink: 0;
  }

  .proceso-step:nth-child(even) .proceso-left,
  .proceso-step:nth-child(even) .proceso-right {
    order: 2;
    padding: 0;
    text-align: left;
  }

  .proceso-node-dot {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }
}
/*ACERCA DE DR. GUEVARA Y DRA. GARCÍA*/

  .esp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 900px;
    width: 100%;
  }

  /* ── CARD ── */
  .esp-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 32px rgba(0,0,0,0.06);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .esp-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  }

  /* ── IMAGEN ── */
  .esp-img-wrap {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: #e8e0d4;
  }

  .esp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.7s ease;
  }

  .esp-card:hover .esp-img-wrap img {
    transform: scale(1.04);
  }

  /* Degradado sobre imagen */
  .esp-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      transparent 50%,
      rgba(26, 24, 20, 0.45) 100%
    );
  }

  /* Especialidad flotando sobre imagen */
  .esp-specialty-tag {
    position: absolute;
    bottom: 20px;
    left: 24px;
    z-index: 2;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #fff;
    font-weight: 500;
    opacity: 0.9;
  }

  /* Línea dorada decorativa */
  .esp-accent-line {
    height: 3px;
    background: linear-gradient(90deg, #C3A464, #e8d9b8);
    width: 0;
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .esp-card:hover .esp-accent-line {
    width: 100%;
  }

  /* ── CONTENIDO ── */
  .esp-body {
    padding: 28px 28px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .esp-name {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 400;
    color: #1a1814;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .esp-specialty {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #C3A464;
    font-weight: 500;
    margin-bottom: 20px;
  }

  /* Separador */
  .esp-divider {
    height: 1px;
    background: #ede8df;
    margin-bottom: 20px;
  }

  /* Cédulas */
  .esp-cedulas {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
  }

  .esp-cedula {
    font-size: 13px;
    color: #7a7060;
    line-height: 1.5;
  }

  .esp-cedula strong {
    color: #4a4540;
    font-weight: 500;
  }

  /* Botón */
  .esp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    text-decoration: none;
    background: #C3A464;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 12px 22px;
    border-radius: 100px;
    margin-top: auto;
    transition: background 0.3s ease, transform 0.3s ease;
  }

  .esp-btn:hover {
    background: #a8893f;
    transform: translateX(3px);
  }

  .esp-btn svg {
    transition: transform 0.3s ease;
  }

  .esp-btn:hover svg {
    transform: translateX(3px);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 600px) {
    .esp-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /*CASOS DE ÉXITO HOMEPAGE*/
  
  /* ── LAYOUT 1+2 ── */
  .taster-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    max-width: 900px;
    margin: 0 auto;
    height: 580px;
  }

  /* Foto grande ocupa las 2 filas */
  .taster-item-main {
    grid-row: 1 / 3;
  }

  /* ── ITEM BASE ── */
  .taster-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #e0d8cc;
    cursor: pointer;
  }

  .taster-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .taster-item:hover img {
    transform: scale(1.05);
  }

  /* ── OVERLAY ── */
  .taster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(26, 24, 20, 0.78) 0%,
      rgba(26, 24, 20, 0.08) 50%,
      transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 22px;
  }

  .taster-item:hover .taster-overlay {
    opacity: 1;
  }

  .taster-tag {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #C3A464;
    font-weight: 500;
    margin-bottom: 5px;
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.4s ease 0.05s, opacity 0.4s ease 0.05s;
  }

  .taster-label {
    font-size: 15px;
    font-weight: 300;
    color: #fff;
    line-height: 1.4;
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.4s ease 0.12s, opacity 0.4s ease 0.12s;
  }

  .taster-item:hover .taster-tag,
  .taster-item:hover .taster-label {
    transform: translateY(0);
    opacity: 1;
  }

  /* Línea dorada inferior */
  .taster-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #C3A464, #e8d9b8);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .taster-item:hover .taster-line {
    width: 100%;
  }

  /* ── CTA ── */
  .taster-cta {
    text-align: center;
    margin-top: 32px;
  }

  .taster-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #C3A464;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid #e8d9b8;
    padding-bottom: 4px;
    transition: color 0.3s ease, border-color 0.3s ease;
  }

  .taster-cta a:hover {
    color: #a8893f;
    border-color: #C3A464;
  }

  .taster-cta a svg {
    transition: transform 0.3s ease;
  }

  .taster-cta a:hover svg {
    transform: translateX(4px);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 600px) {
    .taster-grid {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
      height: auto;
    }

    .taster-item-main {
      grid-row: auto;
      aspect-ratio: 1/1;
    }

    .taster-item:not(.taster-item-main) {
      aspect-ratio: 1/1;
    }
  }
  
  
/*=================*/
/*HERO SUPERSEOS*/
/*=================*/
.hero-b {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FEF9EF;
}
.hero-b-photo {
  position: absolute;
  right: 0;
  top: 0;
  width: 54%;
  height: 100%;
  z-index: 0;
}
.hero-b-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-b-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    #FEF9EF 0%,
    rgba(254,249,239,0.8) 25%,
    rgba(254,249,239,0.05) 60%,
    transparent 100%
  );
  z-index: 1;
}
.hero-b-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 30%;
  background: linear-gradient(to top, #FEF9EF, transparent);
  z-index: 2;
}
.hero-b-divider {
  position: absolute;
  left: 46%;
  top: 80px;
  bottom: 80px;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #C3A464 20%, #C3A464 80%, transparent);
  z-index: 3;
  opacity: 0.35;
}
.hero-b-bg-num {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: min(320px, 26vw);
  font-weight: 300;
  color: rgba(195,164,100,0.05);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}
.hero-b-content {
  position: relative;
  z-index: 4;
  width: 46%;
  padding: 100px 60px 100px 10%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-b-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C3A464;
  margin-bottom: 28px;
}
.hero-b-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-b-title em {
  font-style: italic;
  color: #C3A464;
}
.hero-b-sep {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, #C3A464, #e8d9b8);
  margin-bottom: 24px;
}
.hero-b-desc {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.8;
  color: #666666;
  margin-bottom: 44px;
  max-width: 340px;
}
.hero-b-stats {
  display: flex;
  margin-bottom: 48px;
}
.hero-b-stat {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(195,164,100,0.25);
}
.hero-b-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.hero-b-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1;
}
.hero-b-stat-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9A8F82;
  margin-top: 5px;
}
.hero-b-float {
  position: absolute;
  left: 43%;
  bottom: 60px;
  z-index: 5;
  background: rgba(254,249,239,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(195,164,100,0.3);
  border-radius: 16px;
  padding: 18px 22px;
  width: 220px;
}
.hero-b-float-label {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C3A464;
  font-weight: 600;
  margin-bottom: 6px;
}
.hero-b-float-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 12px;
}
.hero-b-float-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #C3A464, transparent);
  margin-bottom: 10px;
}
.hero-b-float-sub {
  font-size: 11px;
  color: #9A8F82;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .hero-b-photo,
  .hero-b-divider,
  .hero-b-bg-num,
  .hero-b-float { display: none; }
  .hero-b { min-height: auto; }
  .hero-b-content {
    width: 100%;
    padding: 60px 24px;
  }
  .hero-b-desc { max-width: 100%; }
}/* End custom CSS */