/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ─── VARIABLES ─── */
:root {
  --gold: #d0b181;
  --gold-light: #E8C86A;
  --gold-dark: #A07830;
  --black: #010101;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --white: #F5F0E8;
  --red: #C0392B;
}

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

body {
  background-color: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

.titulo-principal{
  color: #010101 !important;
  position: absolute  !important; 
  left: 0  !important;
  z-index: -1  !important;
}

.section {
  overflow: hidden;
}

/* ─── DECORATIVE DIVIDER ─── */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin: 8px 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

.divider-diamond {
  width: 6px;
  height: 6px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ─── GOLD LINE ─── */
.gold-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 12px auto;
}

/* ─── GRADIENT BORDER CONTAINER ─── */
.gradient-border {
  border: 1px solid transparent;
  background-image:
    linear-gradient(var(--black), var(--black)),
    linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold-dark));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 20px;
  padding: 24px;
}

/* ─── GOLD SEPARATOR LINE ─── */
.gold-separator {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-dark), var(--gold), var(--gold-light), var(--gold-dark), transparent);
}

.banderas{
  width: 20px;
}

/* ─── HERO ─── */
.hero {
  height: auto;
}

.hero-layout {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: stretch;
}

.hero-left {
  width: 57%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 0 0 10px;
  background: var(--black);
}

.hero-left img.logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.hero-left .linea-dorada {
  width: 70%;
}

.hero-bailarines {
  width: 43%;
  background: var(--black);
  overflow: hidden;
  height: auto;
}

.hero-bailarines img {
  width: 100%;
  /*height: 100%;*/
  display: block;
  object-fit: cover;
  object-position: center top;
}

.hero-body {
  font-size: 12px;
  line-height: 1.7;
  color: white;
  margin-top: 5px;
  margin-bottom: 0;
  max-width: 100%;
  text-align: justify;
}

.hero-body-2 {
  margin-top: 10px;
}

.hero-body-p {
  font-size: 14px;
}

.hero-body strong {
  color: var(--gold);
  font-weight: 600;
}

/* ─── FEATURES STRIP ─── */
.features-strip {
  padding: 28px 0;
}

.features-layout {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 20px;
}

/* ─── SLIDER ─── */
.slider-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 400px;
  border: 1px solid transparent;
  background-image: linear-gradient(var(--black), var(--black)),
                    linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold-dark));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border-radius: 2px 10px 2px 10px;
}

.hero-slider {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.hero-slide {
  min-width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--gold);
  color: var(--gold);
  width: 32px;
  height: 32px;
  font-size: 1rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn-prev { left: 10px; }
.slider-btn-next { right: 10px; }

/* ─── FEATURES LIST ─── */
.features-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px;
  gap: 0;
}

.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
}

.feature-row-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-row-icon img {
  width: 100%;
}

.feature-row-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.feature-row-desc {
  font-size: 13px;
  color: white;
  line-height: 1.55;
  margin: 0;
}

/* ─── SECTION TITLES ─── */
.section-label {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-align: center;
  display: block;
  margin-bottom: 6px;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  line-height: 1.1;
}

/* ─── GROUP ORDER BANNER ─── */
.banner-section {
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.banner-icon-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.icono_manos {
  width: 30%;
}

/* ─── CATALOGUES ─── */
.catalogue-section {
  padding: 10px 0;
}

.cat-label {
  font-family: 'Cinzel', serif;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
}

.logo_tango,
.logo_fabio {
  width: 100%;
}

.catalogue-note {
  font-size: 15px;
  color: white;
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--black);
  padding: 20px 20px 0 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-icon img {
  width: 100%;
}

.contact-val {
  font-size: 16px;
  color: var(--white);
}

.contact-val a {
  color: white;
  text-decoration: none;
}

/* ─── FOOTER BADGES ─── */
.footer-badges {
  padding: 10px 0;
}

.footer-badges .col-md-3 {
  position: relative;
}

.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 8px;
}

.badge-item img {
  width: 50%;
}

.badge-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.badge-title {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  font-weight: bold;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.badge-desc {
  font-size: 16px;
  font-style: italic;
  color: white;
}

/* ─── FOOTER ─── */
footer {
  padding: 20px 0;
  text-align: center;
}

footer h3 {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  background: var(--gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.footer-main-text {
  font-size: 20px !important;
  font-weight: bold;
}

footer em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.75rem;
  color: rgba(245, 240, 232, 0.3);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}

.section-banderas {
  position: absolute;
  left: 0;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

/* ─── MOBILE: hasta 767px ─── */
@media (max-width: 767px) {
  .footer-badges .col-md-3:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 15%;
    width: 70%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
  }
}

/* ─── TABLET: 768px – 1199px ─── */
/* @media (min-width: 768px) and (max-width: 1199px) {
  .hero-layout {
    max-height: 420px;
  }

  .hero-bailarines {
    align-self: stretch;
  }

  .hero-bailarines img {
    object-fit: cover;
    object-position: center top;
    height: 100% !important;
    max-height: none;
  }

  .features-strip {
    position: relative;
    z-index: 2;
  }

  .footer-badges .col-md-3:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 20%;
    right: 0;
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  }
} */

/* ─── TABLET + DESKTOP: 768px+ ─── */
@media (min-width: 768px) {
  .features-strip {
    position: relative;
    z-index: 2;
  }

  .features-layout {
    flex-direction: row;
  }

  .slider-wrapper {
    width: 50%;
  }

  .features-list {
    width: 50%;
    padding: 50px;
  }

  .hero-bailarines img {
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
  }
}

/* ─── DESKTOP MEDIO: 992px+ ─── */
@media (min-width: 992px) {
  .hero-body {
    font-size: 20px;
    padding: 5px 50px 0 50px;
  }

  .icono_manos {
    width: 40%;
  }

  .features-list {
    width: 50%;
    padding: 10px 50px 50px 50px;
  }

  .logo_fabio {
    margin-top: 50px;
  }
}

/* ─── DESKTOP GRANDE: 1200px+ ─── */
@media (min-width: 1200px) {
  .banderas{
    width: 60px;
  }
  .features-list {
    width: 50%;
    padding: 50px;
  }

  .logo_tango {
    width: 50%;
    display: block;
    margin: 0 auto;
  }

  .logo_fabio {
    margin-top: 0;
  }

  .contact-section {
    padding: 40px 20px 0 20px;
  }

  .hero-layout {
    max-height: none;
  }

  .hero-bailarines {
    align-self: flex-start;
    height: auto;
    max-height: 100vh;
  }

  .hero-bailarines img {
    object-fit: contain;
    object-position: left top;
    height: auto !important;
    max-height: 100vh;
    position: absolute;
  }
}

/* ─── XL: 1400px+ ─── */
@media (min-width: 1400px) {
  .features-strip {
    /* margin-top: -160px; */
  }
}

/* ─── XXL: 1600px+ ─── */
@media (min-width: 1600px) {
  .features-strip {
    /* margin-top: -320px; */
  }
}
