/* Open Tennis Tour Mazatlán - Brand Design 2026 */

/* FONTS */
@font-face {
  font-family: 'Amoresa';
  src: url('../fonts/AMORESA/Amoresa.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/PROXIMA NOVA/proxima-nova.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
  /* Brand Colors */
  --green: #083C2F;
  /* Deep Brand Green */
  --blue: #20295A;
  /* Deep Brand Blue */

  /* Usage Mapping */
  --volt: var(--green);
  /* Replacing formerly bright accent with Brand Green */
  --primary: var(--blue);

  --bg-main: #FFFFFF;
  --bg-alt: #F4F6F8;
  /* Light blue-ish gray */
  --card-bg: #FFFFFF;

  --text-main: var(--blue);
  /* Blue text is very premium */
  --text-muted: #55606E;
  --text-inverse: #FFFFFF;

  --border: #E0E4E8;

  /* Typography */
  --font-head: 'Oswald', sans-serif;
  --font-body: 'Proxima Nova', sans-serif;
  --font-accent: 'Amoresa', sans-serif;

  /* Layout */
  --max: 1280px;
  --gutter: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  padding-top: 92px;
  /* Compensate for fixed header height */
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* REUSABLE */
.container {
  width: min(var(--max), 100% - (var(--gutter) * 2));
  margin: 0 auto;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-family: var(--font-head);
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  line-height: 1.1;
  font-weight: 700;
  color: var(--primary);
}

.h1 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 1px;
}

.h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
  font-weight: 400;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 2px solid var(--green);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--blue);
  color: var(--text-inverse);
  font-family: var(--font-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--blue);
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  font-size: 1.1rem;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--blue);
  color: var(--blue);
}

.btn--ghost:hover {
  background: var(--blue);
  color: white;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #041E17;
  /* Darker Green explicitly set */
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand__title {
  display: block;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.brand__subtitle {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  color: var(--volt);
  /* Keep accented color */
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav a {
  font-family: var(--font-head);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 1px;
  color: white;
  /* White text on dark header */
  opacity: 0.9;
}

.nav a:hover {
  color: var(--volt);
  opacity: 1;
}

.nav a.btn:hover {
  color: white;
}

.navToggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

.navToggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-alt);
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* Light overlay on placeholder */
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)),
    url('../img/herobanner.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
  transition: background-image 1s ease-in-out;
}

.hero-timeline {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.timeline-segment {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.timeline-fill {
  height: 100%;
  background: var(--volt);
  width: 0;
}

.timeline-fill.active {
  animation: fillProgress 5s linear forwards;
}

/* Reset animation hack */
.timeline-fill.reset {
  animation: none;
  width: 0;
}

@keyframes fillProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero__h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -1px;
  color: white;
  margin-bottom: 2rem;
}

.hero__h1 span {
  display: block;
  color: white;
  /* Highlight "TOUR MAZATLAN" in White for contrast */
}

/* Override eyebrow in hero for visibility */
.hero .eyebrow {
  color: white;
  border-color: white;
}

.hero__lead {
  font-size: 1.25rem;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  border-left: 4px solid var(--green);
  padding-left: 1rem;
}

.hero__dates {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 2.5rem;
}

.badge {
  display: inline-block;
  padding: 10px 15px;
  background: white;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--blue);
  border: 1px solid var(--blue);
  /* box-shadow: 4px 4px 0 var(--green); */
  /* Remove pop shadow for cleaner look */
}

.badge--volt {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

.hero__cta {
  display: flex;
  gap: 15px;
}

.hero__cta .btn--ghost {
  border-color: white;
  color: white;
}

.hero__cta .btn--ghost:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

.sectionHead {
  margin-bottom: 50px;
}

/* CARDS */
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cards2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  padding: 40px;
  transition: 0.3s;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* Softer shadow */
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--green);
}

/* DECORATIVE LINE ON CARD HOVER */
.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--green);
  transition: width 0.3s;
}

.card:hover::after {
  width: 100%;
}

/* EVENTS TAGS */
article.card .tag {
  display: inline-block;
  background: var(--bg-alt);
  color: var(--blue);
  padding: 5px 12px;
  font-family: var(--font-head);
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

/* MEDIA CARD */
.mediaCard {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.mediaCard:hover {
  transform: none;
  box-shadow: none;
}

.mediaCard__img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-bottom: 6px solid var(--green);
}

/* EXPERIENCE HEADER & TOGGLES */
.experience-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 20px;
}

.day-toggles {
  display: flex;
  gap: 10px;
}

.btn-toggle {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 10px 20px;
  font-family: var(--font-head);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-toggle:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-toggle.m30-btn:hover,
.btn-toggle.m30-btn.active {
  border-color: var(--green);
  color: var(--green);
}

.btn-toggle.m30-btn.active {
  background: var(--green);
  color: white;
}

.btn-toggle.w50-btn:hover,
.btn-toggle.w50-btn.active {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-toggle.w50-btn.active {
  background: var(--blue);
  color: white;
}

/* TIMELINE */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  gap: 25px;
  padding: 30px;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-left: 4px solid var(--bg-alt);
  transition: 0.3s;
}

.step:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step__num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--border);
  /* Subtle number */
  line-height: 1;
}

/* M30 CONTENT STYLES (Default/Day 1) */
#day1-content .step {
  border-left-color: var(--green);
}

#day1-content .step .step__num {
  color: var(--green);
}

/* W50 CONTENT STYLES (Day 2) */
#day2-content .step {
  border-left-color: var(--blue);
}

#day2-content .step .step__num {
  color: var(--blue);
}

/* ANIMATIONS */
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0.5;
  }

  to {
    opacity: 1;
  }
}

/* PRICING */
.plan {
  background: var(--bg-main);
  border: 1px solid var(--border);
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.plan--primary {
  border: 2px solid var(--blue);
}

.price__v {
  font-family: var(--font-head);
  font-size: 2.5rem;
  color: var(--blue);
  margin: 10px 0;
}

/* SPONSORS GRID */
#nuestros-patrocinadores {
  background-color: white;
  color: var(--blue);
}



.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.sponsors-grid>img {
  /* Enforce grid-like columns with flex basis */
  flex: 0 0 calc(50% - 40px);
  /* 2 columns on mobile */
  max-width: 150px;
  height: 80px;
  /* Uniform height */
  object-fit: contain;
  opacity: 1;
}

@media (min-width: 768px) {
  .sponsors-grid>img {
    flex: 0 0 calc(25% - 40px);
    /* 4 columns on desktop */
    max-width: 200px;
  }
}

.sponsors-grid img.logo-el-cid {
  filter: brightness(0);
  /* Make black */
}


/* FOOTER REDESIGN */
.footer {
  background: var(--blue);
  color: #FFFFFF;
  padding: 80px 0 30px;
  border-top: none;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* 4 EQUAL COLUMNS */
  gap: 40px;
  margin-bottom: 60px;
}

.footer__col {
  display: block;
}

.footer__heading {
  font-family: var(--font-head);
  /* Match other titles */
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer__nav li {
  margin-bottom: 10px;
}

.footer__nav a {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0.8;
}

.footer__nav a:hover {
  opacity: 1;
  color: var(--volt);
}

.footer__socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer__form {
  display: flex;
  gap: 0;
}

.footer__form input {
  padding: 12px 15px;
  border: none;
  background: #FFFFFF;
  color: #333;
  width: 100%;
  font-family: var(--font-body);
}

.footer__form button {
  padding: 12px 20px;
  border: none;
  background: #0044FF;
  /* Bright Blue */
  color: white;
  cursor: pointer;
}

.footer__form button:hover {
  background: var(--volt);
  color: var(--blue);
}

.footer__note {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* CALENDAR VISIBILITY */
/* CALENDAR VISIBILITY */
#torneos.section--alt {
  background-color: var(--blue);
  background-image: url('../img/red-Photoroom.png');
  background-repeat: repeat;
  background-size: 40%;
  /* Original size, do not stretch */
  background-position: top center;
  background-blend-mode: overlay;
  /* Optional: blends with blue if desired, or remove if needs to be distinct */
  color: white;
  position: relative;
  overflow: hidden;
}

/* Decorative Net Styling Removed (Converted to CSS background) */


#torneos .container {
  position: relative;
  z-index: 1;
  /* Content above image */
}

#torneos .eyebrow {
  color: #FFFFFF;
  /* White for better contrast on Blue */
  border-color: #FFFFFF;
}

#torneos .h2 {
  color: white;
}

#torneos .card {
  background: white;
  border: none;
  color: var(--text-main);
}

/* TICKETS CONTAINER */
.tickets-container {
  background: var(--volt);
  border-radius: 4px;
  padding: 30px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.tickets-container__text h3 {
  color: #FFFFFF;
  /* Fix contrast on Dark Green */
  margin-bottom: 5px;
  font-size: 2rem;
  font-family: var(--font-head);
  font-weight: 700;
}

.tickets-container__text p {
  color: rgba(255, 255, 255, 0.8);
  /* Fix contrast */
  margin-bottom: 0;
  font-weight: 600;
}

.tickets-container .btn {
  background: var(--blue);
  color: white;
  border: none;
}

.tickets-container .btn:hover {
  background: white;
  color: var(--blue);
}

/* FULL WIDTH CTA SECTION */
.cta-full {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: white;
  overflow: hidden;
}

.cta-full h2,
.cta-full p {
  color: white !important;
  /* Force white text */
}

.cta-full__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* Dark overlay */
.cta-full__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 11, 0.7);
  /* Dark overlay */
}

.cta-full__content {
  position: relative;
  z-index: 1;
}

.cta-full .btn--large {
  padding: 15px 40px;
  font-size: 1.2rem;
}

/* OLD TICKETS CONTAINER REMOVED/UNUSED */

.cta {
  background: var(--green);
  color: white;
  padding: 80px 0;
}

.cta__title {
  color: white;
}

.cta__text {
  color: rgba(255, 255, 255, 0.8);
}

.cta .btn {
  background: white;
  color: var(--green);
  border: none;
}

.cta .btn:hover {
  background: var(--blue);
  color: white;
}


/* RESPONSIVE */
.mobileNav {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  background: var(--bg-main);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* SPONSOR FORM SECTION */
.sponsor-form-container {
  background: var(--bg-alt);
  padding: 40px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.sponsor-text {
  text-align: center;
  margin-bottom: 30px;
}

.sponsor-form {
  display: grid;
  gap: 20px;
}

.sponsor-form input,
.sponsor-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--border);
  background: white;
  font-family: var(--font-body);
  color: var(--text-main);
  transition: 0.3s;
}

.sponsor-form input:focus,
.sponsor-form textarea:focus {
  border-color: var(--blue);
  outline: none;
}

.sponsor-form button {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
}

.sponsor-form button:hover {
  background: var(--green);
}

@media (min-width: 768px) {
  .sponsor-form {
    grid-template-columns: 1fr 1fr;
  }

  .sponsor-form .form-group:last-of-type,
  .sponsor-form button {
    grid-column: span 2;
  }
}

/* CALENDAR PAGE STYLES */

.footer-contact-info {
  color: white;
  font-family: var(--font-head);
  text-transform: uppercase;
  font-size: 14px;
}

.footer-contact-info strong {
  font-weight: 700;
}

/* PRELOADER */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out, visibility 0.5s;
}

.loader-container {
  position: relative;
  width: 150px;
  height: 150px;
}

.racket-svg {
  position: absolute;
  bottom: -10px;
  left: 20px;
  width: 100px;
  height: auto;
  transform-origin: 30% 90%;
  animation: swing 1s infinite ease-in-out;
}

.ball-loader {
  position: absolute;
  top: 20px;
  left: 65px;
  width: 15px;
  height: 15px;
  background: var(--volt);
  border-radius: 50%;
  animation: bounce 1s infinite ease-in-out;
}

@keyframes bounce {

  0%,
  100% {
    top: 20px;
    animation-timing-function: ease-in;
  }

  50% {
    top: 80px;
    /* Hit point */
    animation-timing-function: ease-out;
  }
}

@keyframes swing {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-15deg);
    /* Prepare */
  }

  50% {
    transform: rotate(15deg);
    /* Hit */
  }

  75% {
    transform: rotate(0deg);
  }
}

.hero--small {
  min-height: 50vh;
}

.hero--small .hero__h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 0;
}

/* FILTERS */
.schedule-filters {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-filter {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-muted);
  padding: 10px 30px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
}

.btn-filter:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.btn-filter.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

.schedule-date-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.nav-arrow {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--blue);
  cursor: pointer;
}

.current-date {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--blue);
  font-weight: 700;
}

/* SCHEDULE GRID / MATCH CARDS */
.schedule-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.match-card {
  display: grid;
  grid-template-columns: 120px 1fr 150px;
  align-items: center;
  background: white;
  border: 1px solid var(--border);
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: 0.3s;
}

.match-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: var(--green);
}

.match-time {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--text-muted);
  font-weight: 700;
}

.match-info {
  text-align: center;
  padding: 0 20px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.match-detail {
  display: block;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-top: 5px;
  font-weight: 400;
}

.match-category {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.players {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--blue);
}

.player {
  display: flex;
  align-items: center;
  gap: 8px;
}

.vs {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-body);
}

.match-court {
  text-align: right;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .match-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 15px;
  }

  .match-info {
    border: none;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
  }

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

.mobileNav a {
  display: block;
  padding: 15px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-head);
  text-transform: uppercase;
  color: var(--blue);
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .navToggle {
    display: block;
  }

  .grid2,
  .cards2,
  .cards3,
  .footer__cols {
    grid-template-columns: 1fr;
  }

  .hero__h1 {
    font-size: 3.5rem;
  }
}

/* FULL WIDTH SPLIT SECTION */
.split-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: white;
}

.split-image,
.split-content {
  width: 100%;
}

.split-image {
  min-height: 400px;
  background: url('../img/patrocinadores.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
}

.split-content {
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sponsor-content-inner {
  width: 100%;
  max-width: 600px;
}

@media (min-width: 900px) {
  .split-section {
    flex-direction: row;
    min-height: 700px;
    /* Ensure sufficient height */
  }

  .split-image,
  .split-content {
    width: 50%;
  }

  .split-image {
    min-height: auto;
    /* Height will be determined by flex container stretch */
  }

  .split-content {
    padding: 80px 40px;
  }
}

h4.footer__heading {
  margin-top: 0;
}