/*
  TEMA017 — Joyería Gutiérrez
  Luxury Redesign
  Paleta: Negro profundo, Blanco marfil, Dorado #C9A84C
*/

/* ─────────────────────────────────────────
   Variables & Reset
───────────────────────────────────────── */
:root {
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --gold-dark: #9a7a2e;
  --black: #0d0d0d;
  --black-soft: #1a1a1a;
  --grey-dark: #2c2c2c;
  --grey-mid: #6b6b6b;
  --grey-light: #f0ece6;
  --white: #ffffff;
  --ivory: #faf8f5;
  --font-main: "Poppins", sans-serif;
  --transition: 0.4s ease;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: var(--white);
  font-family: var(--font-main);
  font-weight: 400;
  font-style: normal;
  color: var(--grey-dark);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   Typography
───────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--black);
  letter-spacing: 0.04em;
  margin-top: 0;
}

/* Sistema tipográfico: serif para títulos, sans para texto */
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h4,
h5,
h6 {
  font-family: var(--font-main);
}

/* Jerarquía clara de tamaños */
h1 {
  font-size: 54px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 2px;
}

h2 {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 1px;
}

h5 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding-top: 10px;
}

p {
  color: var(--grey-mid);
  font-size: 15px;
  line-height: 28px;
  font-weight: 300;
}

a {
  text-decoration: none !important;
  outline: none;
  transition: color var(--transition);
}

.gold-line {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 16px auto 28px auto;
}

.gold-line-left {
  margin-left: 0;
}

.text-white {
  color: var(--white) !important;
}

/* ─────────────────────────────────────────
   Preloader
───────────────────────────────────────── */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--black);
}

.sk-rotating-plane {
  width: 36px;
  height: 36px;
  background-color: var(--gold);
  animation: sk-rotatePlane 1.2s infinite ease-in-out;
}

@keyframes sk-rotatePlane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

/* ─────────────────────────────────────────
   Navigation
───────────────────────────────────────── */
.custom-navbar {
  margin-bottom: 0;
  background-color: transparent;
  border: none;
  transition:
    background var(--transition),
    padding var(--transition);
}

.custom-navbar.top-nav-collapse {
  background: rgba(10, 10, 10, 0.96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 !important;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.custom-navbar .navbar-brand {
  color: var(--white);
  font-weight: 600;
  font-size: 2.6rem;
  line-height: 40px;
  letter-spacing: 1px;
}

.custom-navbar .navbar-brand:hover {
  color: var(--gold);
}

/* Logo image */
.img-size {
  max-height: 72px;
  width: auto;
  border-radius: 8px;
  transition:
    transform var(--transition),
    opacity var(--transition),
    max-height var(--transition);
}

.img-size:hover {
  transform: scale(1.05);
}

.custom-navbar.top-nav-collapse .img-size {
  max-height: 52px;
}

.img-padding {
  padding: 6px 4px !important;
}

.custom-navbar .nav li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 40px;
  transition: color var(--transition);
  position: relative;
}

.custom-navbar .nav li a::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.custom-navbar .nav li a:hover::after,
.custom-navbar .nav li.active > a::after {
  width: calc(100% - 30px);
}

.custom-navbar .nav li a:hover,
.custom-navbar .nav li.active > a {
  background: transparent;
  color: var(--gold);
}

.custom-navbar .navbar-nav > li > a:hover,
.custom-navbar .navbar-nav > li > a:focus {
  background-color: transparent;
}

.custom-navbar .navbar-toggle {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 12px;
  margin-top: 12px;
}

.custom-navbar .navbar-toggle .icon-bar {
  background: var(--white);
}

@media (min-width: 768px) {
  .custom-navbar {
    padding: 22px 0;
    border-bottom: 0;
  }
  .custom-navbar.top-nav-collapse {
    padding: 0;
  }
}

@media (max-width: 980px) {
  .img-size,
  .custom-navbar.top-nav-collapse .img-size {
    max-height: 48px;
  }
  .img-padding {
    padding: 6px 4px !important;
  }
  .custom-navbar .navbar-brand {
    font-size: 2rem;
  }
  .custom-navbar .nav li a {
    font-size: 11px;
    line-height: 22px;
  }
}

/* ─────────────────────────────────────────
   Hero — Video Banner
───────────────────────────────────────── */
.intro {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

/* ─────────────────────────────────────────
   Hero Carousel Slider (Tema 17 Full-Screen)
───────────────────────────────────────── */
.intro.hero-carousel-active {
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  height: 100vh !important;
  min-height: 600px !important;
  position: relative !important;
  overflow: hidden !important;
  background-color: #000000 !important;
}

.intro.hero-carousel-active .carousel,
.intro.hero-carousel-active .carousel-inner,
.intro.hero-carousel-active .carousel-inner > .item {
  width: 100% !important;
  height: 100vh !important;
  min-height: 600px !important;
}

.intro.hero-carousel-active .carousel-inner {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  background-color: #000000 !important;
}

.intro.hero-carousel-active .carousel-inner > .item {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow: hidden !important;
}

.intro.hero-carousel-active .jg-carousel-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  transition: transform 8s ease !important;
  transform: scale(1) !important;
  z-index: 1 !important;
}

.intro.hero-carousel-active .item.active .jg-carousel-img {
  transform: scale(1.04) !important;
}

.intro.hero-carousel-active .jg-carousel-img .hero-overlay,
.intro.hero-carousel-active .hero-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.4) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.intro.hero-carousel-active .carousel-inner > .item > .container {
  position: relative !important;
  z-index: 3 !important;
  padding-top: 50px !important;
  width: 100% !important;
}

/* Pure Cross-Fade Transition (No horizontal sliding movement, no black gaps) */
.intro.hero-carousel-active .carousel-fade .carousel-inner .item {
  opacity: 0 !important;
  transition-property: opacity !important;
  transition-duration: 0.8s !important;
  transition-timing-function: ease-in-out !important;
  left: 0 !important;
  top: 0 !important;
  position: absolute !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
}

.intro.hero-carousel-active .carousel-fade .carousel-inner .item.active {
  opacity: 1 !important;
  position: relative !important;
  z-index: 2 !important;
}

.intro.hero-carousel-active .carousel-fade .carousel-inner .item.next,
.intro.hero-carousel-active .carousel-fade .carousel-inner .item.prev {
  opacity: 0 !important;
  z-index: 1 !important;
  left: 0 !important;
  transform: none !important;
}

.intro.hero-carousel-active .carousel-fade .carousel-inner .item.next.left,
.intro.hero-carousel-active .carousel-fade .carousel-inner .item.prev.right {
  opacity: 1 !important;
  z-index: 2 !important;
}

.intro.hero-carousel-active .carousel-fade .carousel-inner .item.active.left,
.intro.hero-carousel-active .carousel-fade .carousel-inner .item.active.right {
  opacity: 0 !important;
  z-index: 1 !important;
  left: 0 !important;
}

/* Indicators (Horizontal bars matching Tema 18) */
.intro.hero-carousel-active .carousel-indicators {
  bottom: 35px !important;
  z-index: 10 !important;
  margin-bottom: 0 !important;
}

.intro.hero-carousel-active .carousel-indicators li {
  width: 35px !important;
  height: 3px !important;
  margin: 0 4px !important;
  border: none !important;
  border-radius: 0 !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
  display: inline-block !important;
  transition: background-color 0.3s ease !important;
}

.intro.hero-carousel-active .carousel-indicators .active {
  width: 35px !important;
  height: 3px !important;
  background-color: var(--gold, #c9a84c) !important;
  border: none !important;
}

/* Arrows (left/right controls) matching Tema 18 */
.intro.hero-carousel-active .carousel-control {
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 60px !important;
  height: 100% !important;
  transform: none !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  opacity: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  text-decoration: none !important;
  transition:
    opacity 0.3s ease,
    background 0.3s ease !important;
}

.intro.hero-carousel-active .carousel-control.left {
  left: 0 !important;
}

.intro.hero-carousel-active .carousel-control.right {
  right: 0 !important;
}

/* Show arrows with soft gradient on hover (identical to Tema 18) */
.intro.hero-carousel-active:hover .carousel-control.left {
  opacity: 1 !important;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.35),
    transparent
  ) !important;
}

.intro.hero-carousel-active:hover .carousel-control.right {
  opacity: 1 !important;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.35),
    transparent
  ) !important;
}

.intro.hero-carousel-active .carousel-control .fa {
  font-size: 32px !important;
  color: #ffffff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
  line-height: 1 !important;
  transition:
    color 0.3s ease,
    transform 0.3s ease !important;
}

.intro.hero-carousel-active .carousel-control.left:hover .fa {
  color: var(--gold, #c9a84c) !important;
  transform: translateX(-3px) !important;
}

.intro.hero-carousel-active .carousel-control.right:hover .fa {
  color: var(--gold, #c9a84c) !important;
  transform: translateX(3px) !important;
}

.intro .carousel-control.left {
  left: 25px;
}

.intro .carousel-control.right {
  right: 25px;
}

.intro .carousel-control:hover {
  opacity: 1;
}

.intro .carousel-control .fa {
  font-size: 22px;
  color: #ffffff;
}

/* Video de fondo */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* Overlay degradado */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.intro .container {
  position: relative;
  z-index: 2;
}

/* Etiqueta superior del banner */
.banner-eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.banner-titulo {
  font-size: 15px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 18px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-texto {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 2px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
  max-width: 820px;
  margin: 0 auto 36px auto;
}

/* Línea dorada decorativa en hero */
.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto;
  opacity: 0.8;
}

/* Fallback si no hay video */
.fondo-oscuro-transparente-banner {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

@media (max-width: 980px) {
  .intro {
    height: 70vh;
  }
  .banner-texto {
    font-size: 30px;
  }
}

@media (max-width: 760px) {
  .intro {
    height: 100vh;
  }
  .banner-texto {
    font-size: 26px;
  }
  .banner-titulo {
    font-size: 12px;
    letter-spacing: 3px;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────────
   General sections
───────────────────────────────────────── */
.section-title {
  margin-bottom: 36px;
}

.parallax-section {
  background-attachment: fixed !important;
  background-size: cover !important;
  background-position: center center !important;
}

.overview,
#register {
  padding-top: 9rem;
  padding-bottom: 9rem;
}

#detail,
#video,
.speakers,
#program,
#sponsors,
.contact,
footer {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

#detail,
.speakers,
#sponsors,
footer {
  text-align: center;
}

.contact_des,
.overview p {
  text-align: justify;
}

.overview h3,
#detail h3,
#video h3,
#register h3,
#venue h3,
.contact h3 {
  padding-bottom: 14px;
}

/* ─────────────────────────────────────────
   Overview — Quiénes Somos
───────────────────────────────────────── */
.overview {
  background: var(--ivory);
}

.overview h3 {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 6px;
}

/* El <h3> del BLL contiene el ARTTITULO (ej. "QUIENES SOMOS") */
.overview .col-md-6 h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 0;
}

.overview .col-md-6 h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 16px;
  margin-bottom: 20px;
}

.overview p {
  font-size: 15px;
  line-height: 30px;
  color: var(--grey-mid);
  font-weight: 300;
}

.overview img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  /* Borde dorado sutil como box-shadow para no desbordarse */
  box-shadow:
    8px 8px 0px var(--gold),
    12px 12px 40px rgba(0, 0, 0, 0.15);
}

.overview .img-wrapper {
  position: relative;
  padding-bottom: 8px;
  padding-right: 8px;
}

/* ─────────────────────────────────────────
   Artículos / Contact section
───────────────────────────────────────── */
.contact {
  width: 100% !important;
  max-width: 100% !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position: relative;
}

.fondo-oscuro-transparente {
  background: rgba(10, 10, 10, 0.72);
}

.contact .contact_des {
  padding-top: 3rem;
  padding-right: 3rem;
}

.contact .contact_des h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
}

.contact .contact_des h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 14px;
  margin-bottom: 20px;
}

.contact .contact_detail {
  background: var(--white);
  padding: 4rem 4rem 5rem 4rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

/* Título del formulario de contacto - NO uppercase para Cormorant */
.contact .contact_detail .section-title h2 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.3;
  color: var(--black);
}

.contact .form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid #ddd;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 20px;
  font-size: 13px;
  color: var(--grey-dark);
  transition: border-color var(--transition);
  padding-left: 0;
}

.contact .form-control:focus {
  border-bottom-color: var(--gold);
  outline: none;
  box-shadow: none;
}

.contact .form-control::placeholder {
  color: #bbb;
  font-size: 12px;
  letter-spacing: 1px;
}

.contact input {
  height: 46px;
}

.contact input[type="submit"] {
  background: var(--black);
  border-radius: 0;
  border: 1px solid var(--black);
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  height: 50px;
  width: 100%;
  max-width: 180px;
  margin-top: 40px;
  transition: all var(--transition);
  cursor: pointer;
}

.contact input[type="submit"]:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ─────────────────────────────────────────
   Mapa / Ubicación
───────────────────────────────────────── */
.mapa {
  background:
    linear-gradient(rgba(251, 249, 246, 0.5), rgba(251, 249, 246, 0.5)),
    url("../images/map1.png") no-repeat center center;
  background-size: cover;
  padding: 100px 0;
  position: relative;
}

/* Flex layout to align map and content vertically */
.mapa .row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

body .mapa h5 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0;
  padding-top: 0;
}

body .mapa h5::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 14px;
  margin-bottom: 36px;
}

/* Elegant list/rows for contact info */
.mapa .map-content {
  padding-left: 40px;
}

.mapa-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.mapa-info-row i {
  color: var(--gold);
  font-size: 20px;
  width: 24px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.mapa-info-row span {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey-dark);
  font-weight: 300;
}

.mapa-info-row span a {
  color: var(--grey-dark);
  font-weight: 400;
  transition: color var(--transition);
  text-decoration: none;
}

.mapa-info-row span a:hover {
  color: var(--gold);
}

body .mapa .gmap {
  border: 8px solid var(--white);
  border-radius: 50%;
  /* Gold ring and shadow */
  box-shadow:
    0 0 0 1px rgba(201, 168, 76, 0.4),
    0 20px 48px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

body .mapa .gmap:hover {
  transform: translateY(-4px);
  box-shadow:
    0 0 0 2px var(--gold),
    0 24px 56px rgba(201, 168, 76, 0.15);
}

address {
  margin-bottom: 0;
  font-style: normal;
}

@media screen and (max-width: 2800px) {
  .gmap {
    width: 420px;
    height: 420px;
  }
  .gmap iframe {
    width: 420px;
    height: 420px;
  }
}
@media screen and (max-width: 1200px) {
  .gmap {
    width: 350px;
    height: 350px;
  }
  .gmap iframe {
    width: 350px;
    height: 350px;
  }
}
@media screen and (max-width: 991px) {
  .mapa .row {
    flex-direction: column;
    text-align: center;
  }
  .mapa .map-content {
    padding-left: 15px;
    margin-top: 40px;
  }
  .mapa-info-row {
    justify-content: center;
    text-align: left;
  }
}
@media screen and (max-width: 480px) {
  .gmap {
    width: 280px;
    height: 280px;
  }
  .gmap iframe {
    width: 280px;
    height: 280px;
  }
}

/* ─────────────────────────────────────────
   Speakers / Carrusel
───────────────────────────────────────── */
.speakers {
  background: var(--grey-light);
}

.speakers h3 {
  font-size: 16px;
  margin-bottom: 0;
}

.speakers h6 {
  color: var(--grey-mid);
  margin-top: 4px;
}

.speakers img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.speakers .col-md-3 {
  display: block;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 20px;
  margin-bottom: 22px;
}

.speakers .speakers-wrapper {
  background: var(--white);
  padding-bottom: 22px;
}

/* ─────────────────────────────────────────
   Banner Promocional
───────────────────────────────────────── */
.banner-promocional {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 32vh !important;
  min-height: 300px !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  margin: 0 !important;
  overflow: hidden !important;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.banner-promocional-box {
  position: absolute !important;
  right: 5% !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 330px !important;
  max-width: 90% !important;
  text-align: left !important;
  z-index: 2 !important;
}

@media screen and (min-width: 1600px) {
  .banner-promocional-box {
    right: 8% !important;
  }
}

.banner-promocional-title {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #c9a84c;
  margin: 0 0 8px 0;
  white-space: nowrap;
}

.banner-promocional-divider {
  position: relative;
  width: 100%;
  max-width: 190px;
  height: 1px;
  background: #333333;
  margin: 8px 0 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-promocional-divider .diamond {
  font-size: 10px;
  color: #333333;
  padding: 0 5px;
}

.banner-promocional-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-style: italic;
  font-weight: 600;
  color: #222222;
  margin: 15px 0 0 0;
}

.banner-promocional-info {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #333333;
  line-height: 1.7;
  margin-bottom: 5px;
}

.banner-info-item {
  display: flex !important;
  align-items: flex-start !important;
  margin-bottom: 12px;
}

.banner-info-item i {
  color: #c9a84c;
  font-size: 19px;
  width: 28px;
  min-width: 28px;
  text-align: center;
  margin-right: 10px;
  margin-top: 2px;
}

.banner-info-item i.fa-map-marker {
  font-size: 22px !important;
  margin-top: 0px !important;
}

.banner-info-item span {
  flex: 1;
}

/* ─────────────────────────────────────────
   Footer
───────────────────────────────────────── */
footer {
  background-color: var(--black) !important;
  background: var(--black) !important;
  padding-top: 10px;
  padding-bottom: 10px;
}

footer p,
footer small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  letter-spacing: 1px;
}

.footer-content-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 30px;
}

.footer-left {
  position: absolute;
  left: 20px;
}

.footer-right {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.social-icon {
  position: relative;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 30px;
}

.social-icon li {
  display: inline-block;
  list-style: none;
}

.social-icon li a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 20px;
  transition: all var(--transition);
  text-decoration: none;
}

.social-icon li a:hover {
  color: var(--gold);
}

@media (max-width: 991px) {
  .footer-content-row {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .footer-left {
    position: static;
    text-align: center !important;
    width: 100%;
  }
  .footer-right {
    text-align: center !important;
    width: 100%;
  }
}

/* ─────────────────────────────────────────
   WhatsApp Button
───────────────────────────────────────── */
.whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
  text-decoration: none !important;
  position: fixed; /* Ensures it floats */
}

.whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  color: var(--white) !important;
  font-size: 32px !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ─────────────────────────────────────────
   Go Top
───────────────────────────────────────── */
.go-top {
  background-color: var(--gold-dark);
  bottom: 12px !important;
  right: 15px !important;
  color: var(--white);
  font-size: 24px;
  display: none;
  position: fixed;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  transition:
    background var(--transition),
    color var(--transition);
  border-radius: 2px;
  z-index: 9998 !important;
}

.go-top:hover {
  background: var(--gold);
  color: var(--white);
}

/* ─────────────────────────────────────────
   Buttons
───────────────────────────────────────── */
.intro .btn,
.contact .btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 0;
  color: var(--white);
  font-weight: 500;
  letter-spacing: 3px;
  font-size: 11px;
  text-transform: uppercase;
  padding: 14px 48px;
  margin-top: 36px;
  margin-right: 10px;
  transition: all var(--transition);
}

.intro .btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.intro .btn-danger {
  background: var(--gold);
  border-color: var(--gold);
}

.intro .btn-danger:hover {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

/* ─────────────────────────────────────────
   Misc helpers
───────────────────────────────────────── */
body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.scrollsmoht {
  transition: all var(--transition);
}

/* Fix bootstrap navbar collapse on mobile dark bg */
@media (max-width: 767px) {
  .custom-navbar .navbar-collapse {
    background: rgba(10, 10, 10, 0.97);
    padding: 10px 20px;
  }
  .contact .contact_detail {
    padding: 3rem 2rem 4rem 2rem;
    margin-top: 60px;
  }
  .contact .contact_des {
    padding-right: 0;
  }
  .overview {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

/* ─────────────────────────────────────────
   Botón Flotante WhatsApp — Estilo boutique
   (Cerrado y alineado con .go-top original)
───────────────────────────────────────── */
.whatsapp {
  position: fixed !important;
  bottom: 70px !important; /* Colocado encima de .go-top que tiene bottom:12px + height:44px + 14px gap */
  right: 13px !important; /* Centrado con el go-top que usa right:15px y mide 44px (whatsapp mide 48px, por lo que 15-2=13px) */
  z-index: 9999 !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background-color: #25d366 !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1) !important;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
}

.whatsapp:hover {
  transform: scale(1.06) translateY(-2px) !important;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.25) !important;
}

.whatsapp-icon,
.fa-whatsapp {
  color: #ffffff !important;
  font-size: 24px !important;
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

@media (max-width: 768px) {
  .whatsapp {
    bottom: 65px !important;
    right: 16px !important; /* Centrado con el go-top de right:15px y mide 44px (en móvil whatsapp mide 42px, por lo que 15+1=16px) */
    width: 42px !important;
    height: 42px !important;
  }
  .whatsapp-icon,
  .fa-whatsapp {
    font-size: 20px !important;
  }
}

/* --- Remover recuadro punteado por defecto al hacer clic en menú e imágenes --- */
a,
button,
img,
li,
ul,
*:focus,
*:active {
  outline: none !important;
  outline: 0 !important;
  -webkit-tap-highlight-color: transparent !important;
}
