@charset "UTF-8";
/* ============================================================
   GLOBAL SCSS — Rodeo (Landing 13)
   Stack: Astro + SCSS Nativo (Sin Tailwind)
   Fidelidad: Responsivo 3 Niveles + Jerarquía de Pesos
   ============================================================ */
/* SCSS UTILS - Rodeo Version
    Utilidades de layout y compatibilidad.
*/
.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.object-cover {
  object-fit: cover;
}

.text-center {
  text-align: center;
}

.uppercase {
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .lg-flex {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .lg-hidden {
    display: none;
  }
}
@media (min-width: 1024px) {
  .lg-block {
    display: block;
  }
}

.mt-10 {
  margin-top: 2.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.p-8 {
  padding: 2rem;
}

/* ─── FONT FACES ───────────────────────────────── */
@font-face {
  font-family: "Sancreek";
  src: url("/fonts/Sancreek-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("/fonts/Gotham-Black.otf") format("opentype");
  font-weight: 900;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("/fonts/Gotham-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}
/* ─── DESIGN TOKENS ─────────────────────────────── */
:root {
  --color-primary: #1a5123; /* Verde Rodeo */
  --color-primary-dark: #01351b; /* Verde Oscuro */
  --color-amarillo: #e7b539; /* Amarillo Principal */
  --color-amarillo-3: #fed463; /* Amarillo Intermedio */
  --color-amarillo-claro: #f3d88f;
  --color-background: #ffffff;
  --color-gris-fondo: #f2f2f2;
  --color-texto: #000000;
  --color-white: #ffffff;
  --font-display: "Gotham", sans-serif;
  --font-accent: "Sancreek", cursive;
  --font-body: "Gotham", sans-serif;
  --radius-btn: 75px;
  --radius-card: 20px;
}

/* ─── ESTILOS BASE ────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  background-color: var(--color-background);
  color: var(--color-texto);
  font-family: var(--font-body);
  font-weight: 500;
  scroll-behavior: smooth;
}

/* ─── TIPOGRAFÍA RESPONSIVA Y DE PESOS ─── */
h1 {
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 500;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--color-amarillo);
}
h1 strong,
h1 b,
h1 .font-black {
  font-weight: 900;
}
@media (max-width: 992px) {
  h1 {
    font-size: 60px;
    line-height: 1;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 44px;
  }
}

h2 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.1;
}
h2 strong,
h2 b,
h2 .font-black {
  font-weight: 900;
}
h2 span {
  color: var(--color-amarillo);
}
@media (max-width: 992px) {
  h2 {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  h2 {
    font-size: 25px;
  }
  h2 span {
    font-size: 25px;
  }
  h2 br {
    display: none;
  }
}

/* Banda Gigante Decorativa */
.banda-decorativa {
  font-family: var(--font-accent);
  font-size: 120px;
  color: #e0e0e0;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .banda-decorativa {
    font-size: 90px;
  }
}
@media (max-width: 480px) {
  .banda-decorativa {
    font-size: 55px;
  }
}

p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 480px) {
  p {
    font-size: 16px;
    font-style: normal;
    width: 100%;
  }
}

/* ─── COMPONENTES ────────────────────── */
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 480px) {
  .container {
    padding: 0 20px;
  }
}

.btn-rodeo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 45px;
  background: linear-gradient(to right, var(--color-amarillo), var(--color-amarillo-claro));
  color: var(--color-primary);
  font-weight: 900;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-decoration: none;
}
.btn-rodeo:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}
@media (max-width: 480px) {
  .btn-rodeo {
    width: 100%;
    padding: 16px 20px;
  }
}

/* Marcos Amarillos de las Imágenes */
.frame-rodeo {
  position: relative;
  display: inline-block;
}
.frame-rodeo::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-amarillo);
  z-index: -1;
}

/* ─── ANIMACIONES ────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.section-padding {
  padding-block: 100px;
}
@media (max-width: 992px) {
  .section-padding {
    padding-block: 80px;
  }
}
@media (max-width: 480px) {
  .section-padding {
    padding-block: 60px;
  }
}/* Route announcer */
	.astro-route-announcer {
		position: absolute;
		left: 0;
		top: 0;
		clip: rect(0 0 0 0);
		clip-path: inset(50%);
		overflow: hidden;
		white-space: nowrap;
		width: 1px;
		height: 1px;
	}