/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root {
  --primary-color: #cf9f57;
  --secondary-color: #ffd700;
  --dark-color: #0f1937;
  --light-color: #ffffff;
  --text-light: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, #cf9f57 0%, #ffd700 100%);
  --gradient-bg: linear-gradient(135deg, rgba(15, 25, 55, 1) 0%, rgba(25, 35, 75, 1) 25%, rgba(40, 50, 95, 1) 50%, rgba(50, 40, 85, 1) 75%, rgba(30, 20, 60, 1) 100%);
  --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.2);
  --border-radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.video-fluid {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-strong);
}

.intro-video {
  position: relative;
  height: 100vh;
  width: 100%;
  /* background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)); */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.intro-video video {
  width: auto;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background: #000;
}

.intro-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 49%, rgba(207, 159, 87, 0.1) 50%, transparent 51%);
  pointer-events: none;
  z-index: 2;
}

/* Asegurar que el main content comience justo después del video */
#main {
  position: relative;
  z-index: 3;
}

/* Eliminar cualquier margin/padding que pueda interferir con el video de pantalla completa */
body {
  margin: 0;
  padding: 0;
  font-family: 'Figtree', sans-serif;
  color: var(--text-light);
  line-height: 1.6;
  background: var(--gradient-bg);
  background-attachment: fixed;
  overflow-x: hidden;
  padding-top: 90px;
  /* Space for fixed header */
}

/* Remove padding for intro video section */
.intro-video {
  margin-top: -90px;
  padding-top: 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
  text-decoration: none;
  transform: translateY(-1px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.75rem;
}

h3 {
  font-size: 2.25rem;
}

h4 {
  font-size: 1.875rem;
}

h5 {
  font-size: 1.5rem;
}

h6 {
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.1rem;
  }
}

/* Modern container styling */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Section styling */
section {
  padding: 80px 0;
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Exclude intro-video section from having the top border line */
section.tabs::before {
  display: none;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

/* Espaciado específico para la sección about (botones) */
.about .row {
  margin-top: 40px;
  margin-bottom: 40px;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: var(--gradient-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-strong);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.back-to-top i {
  font-size: 20px;
  color: var(--light-color);
  line-height: 0;
}

.back-to-top:hover {
  /* background: var(--secondary-color); */
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 25px 80px rgba(207, 159, 87, 0.3);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: radial-gradient(circle, rgba(209, 143, 50, 1) 0%, rgba(253, 96, 47, 1) 25%, rgba(253, 29, 29, 1) 50%, rgba(185, 45, 113, 1) 75%, rgba(131, 58, 180, 1) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 9999;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 100%;
  top: 0;
}

#header.header-scrolled {
  padding: 10px 0;
  background: radial-gradient(circle, rgba(209, 143, 50, 0.98) 0%, rgba(253, 96, 47, 0.98) 25%, rgba(253, 29, 29, 0.98) 50%, rgba(185, 45, 113, 0.98) 75%, rgba(131, 58, 180, 0.98) 100%);
  box-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#header .logo {
  font-size: 28px;
  margin: 0;
  padding: 0;
  font-weight: 700;
  font-family: 'Figtree', sans-serif;
  transition: all 0.3s ease;
}

#header .logo a {
  color: var(--text-light);
  display: flex;
  align-items: center;
}

#header .logo a:hover {
  transform: scale(1.05);
}

#header .logo a span {
  color: var(--primary-color);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#header .logo img {
  max-height: 60px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

#header.header-scrolled .logo img {
  max-height: 50px;
}

/*--------------------------------------------------------------
# Get Started Button
--------------------------------------------------------------*/
.get-started-btn {
  margin-left: 25px;
  background: var(--gradient-primary);
  color: var(--light-color);
  border-radius: 25px;
  padding: 12px 30px;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.get-started-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.get-started-btn:hover::before {
  left: 100%;
}

.get-started-btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 15px 40px rgba(207, 159, 87, 0.4);
  border-color: var(--secondary-color);
}

@media (max-width: 992px) {
  .get-started-btn {
    margin: 0 15px 0 0;
    padding: 10px 20px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  position: relative;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 5px;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
  z-index: -1;
}

.navbar a:hover::before,
.navbar .active::before {
  width: 100%;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: var(--light-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(207, 159, 87, 0.3);
}

.navbar a:hover i {
  transform: rotate(10deg);
}

/* Dropdown Menu Styles */
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 20px);
  margin: 0;
  padding: 15px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgba(15, 25, 55, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-strong);
  border-radius: var(--border-radius);
  border: 1px solid rgba(207, 159, 87, 0.1);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translateY(-10px);
}

.navbar .dropdown ul li {
  min-width: 220px;
}

.navbar .dropdown ul a {
  padding: 12px 25px;
  font-size: 13px;
  color: var(--text-light);
  border-radius: 0;
}

.navbar .dropdown ul a::before {
  display: none;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: var(--primary-color);
  background: rgba(207, 159, 87, 0.1);
  transform: translateX(5px);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  transform: translateY(0);
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  position: relative;
  z-index: 9999;
  background: none;
  border: none;
  padding: 0;
}

.mobile-nav-toggle:hover {
  color: var(--primary-color);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

/* New Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(209, 143, 50, 0.98) 0%, rgba(253, 96, 47, 0.98) 25%, rgba(253, 29, 29, 0.98) 50%, rgba(185, 45, 113, 0.98) 75%, rgba(131, 58, 180, 0.98) 100%);
  backdrop-filter: blur(15px);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-close-btn {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 36px;
  color: var(--light-color);
  cursor: pointer;
  z-index: 10001;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.mobile-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.mobile-menu-overlay ul {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.mobile-menu-overlay ul li {
  margin: 20px 0;
}

.mobile-menu-overlay a {
  display: block;
  padding: 15px 30px;
  font-size: 20px;
  font-weight: 600;
  color: var(--light-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.mobile-menu-overlay a:hover {
  color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(207, 159, 87, 0.3);
}

/* Legacy mobile menu styles (kept for compatibility but hidden) */
.navbar-mobile {
  display: none !important;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 82px;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
}

#hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 4px;
  transition: 0.5s;
  margin-top: 30px;
  color: #fff;
  background: #C8AF78;
  border: 2px solid #C8AF78;
}

#hero .btn-get-started:hover {
  background: transparent;
  border-color: #fff;
}

@media (max-width: 768px) {
  #hero {
    text-align: center;
    padding-top: 58px;
  }

  #hero h1 {
    font-size: 28px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  opacity: 0.3;
}

.section-title {
  text-align: center;
  padding-bottom: 50px;
  position: relative;
  margin-bottom: 30px;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
  padding-bottom: 20px;
  position: relative;
  color: var(--text-light);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-shadow: none;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-primary);
  bottom: 0;
  left: calc(50% - 40px);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(207, 159, 87, 0.5);
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
  bottom: -10px;
  left: calc(50% - 60px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2.2rem;
    letter-spacing: 1px;
  }

  .section-title p {
    font-size: 1.1rem;
    padding: 0 15px;
  }
}

.section-bg {
  padding: 120px 0;
  color: #fff;


}

.section-bg:before {
  content: "";

  position: absolute;
  bottom: 60px;
  top: 60px;
  left: 0;
  right: 0;
  transform: skewY(-3deg);
  background: rgb(21, 10, 59);
  background: linear-gradient(90deg, rgba(21, 10, 59, 1) 0%, rgba(1, 1, 34, 1) 100%);
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #2b2b2b;
  min-height: 40px;
  margin-top: 82px;
  color: #fff;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol a {
  color: #aaaaaa;
}

.breadcrumbs ol a:hover {
  color: #fff;
  transition: 0.3s;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #D4964A;
  content: "/";
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;

  border: 1px solid #D4964A;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #D4964A;
}

.clients .swiper-slide img {

  transition: 0.3s;

}



/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .container {
  position: relative;
  z-index: 10;
}

.about .content {
  padding: 30px 30px 30px 0;
}

.about .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.about .content p {
  margin-bottom: 30px;
}

.about .content .about-btn {
  padding: 8px 30px 9px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  border: 2px solid #00A5BC;
}

.about .content .about-btn i {
  font-size: 16px;
  padding-left: 5px;
}

.about .content .about-btn:hover {

  background: white;
}

/* Espaciado específico para la sección about (botones) */
.about .row {
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Cards modernas para botones de acción */
.about .icon-boxes .icon-box {
  margin: 15px;
  padding: 35px 25px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(207, 159, 87, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.about .icon-boxes .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg,
      rgba(207, 159, 87, 0.1) 0%,
      rgba(255, 215, 0, 0.1) 50%,
      rgba(207, 159, 87, 0.1) 100%);
  transition: left 0.6s ease;
  z-index: 0;
}

.about .icon-boxes .icon-box:hover::before {
  left: 0;
}

.about .icon-boxes .icon-box:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 20px 40px rgba(207, 159, 87, 0.2);
}

.about .icon-boxes .icon-box i {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: all 0.4s ease;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.about .icon-boxes .icon-box:hover i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(207, 159, 87, 0.3));
}

.about .icon-boxes .icon-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px 0;
  color: var(--text-light);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.about .icon-boxes .icon-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.about .icon-boxes .icon-box:hover h4 {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.about .icon-boxes .icon-box:hover p {
  color: var(--text-light);
  transform: translateY(-1px);
}

.about .icon-boxes .icon-box a {
  color: inherit;
  text-decoration: none;
  display: block;
  height: 100%;
  position: relative;
  z-index: 1;
}

.about .icon-boxes .icon-box a:hover {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 1200px) {
  .about .content {
    padding-right: 0;
  }
}

/* Responsive para cards de botones */
@media (max-width: 768px) {

  /* Asegurar que las columnas del about section se comporten bien */
  .about .row.no-gutters {
    flex-direction: column !important;
    gap: 20px;
  }

  .about .col-xl-3,
  .about .col-lg-3 {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 20px;
    text-align: center;
  }

  .about .col-xl-9,
  .about .col-lg-9 {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Container de las cards */
  .about .icon-boxes {
    display: block !important;
    width: 100% !important;
    padding: 20px 15px !important;
  }

  .about .icon-boxes .row {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 15px !important;
  }

  /* Cards individuales */
  .about .icon-boxes .col-lg-3,
  .about .icon-boxes .col-md-4,
  .about .icon-boxes .col-sm-6 {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
    margin-bottom: 20px !important;
  }

  .about .icon-boxes .icon-box {
    transform: none !important;
    margin: 0 !important;
    padding: 20px 15px !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    width: 100% !important;
    min-height: 140px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }

  .about .icon-boxes .icon-box i {
    font-size: 32px !important;
    margin-bottom: 10px !important;
    color: var(--primary-color) !important;
  }

  .about .icon-boxes .icon-box h4 {
    font-size: 14px !important;
    margin-bottom: 5px !important;
    text-align: center !important;
    line-height: 1.3 !important;
  }

  .about .icon-boxes .icon-box a {
    text-decoration: none !important;
    color: inherit !important;
  }
}

@media (max-width: 576px) {

  /* En móviles muy pequeños, una sola columna */
  .about .icon-boxes .col-lg-3,
  .about .icon-boxes .col-md-4,
  .about .icon-boxes .col-sm-6 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    margin-bottom: 15px !important;
  }

  .about .icon-boxes .icon-box {
    padding: 25px 20px !important;
    min-height: 120px !important;
  }

  .about .icon-boxes .icon-box i {
    font-size: 36px !important;
    margin-bottom: 12px !important;
  }

  .about .icon-boxes .icon-box h4 {
    font-size: 15px !important;
    font-weight: 600 !important;
  }

  /* Logo del evento en mobile */
  .about .logoevento {
    max-width: 200px !important;
    height: auto !important;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .about {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 80px;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.counts .count-box i {
  position: absolute;
  width: 54px;
  height: 54px;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  background: #fff;
  color: #cf9f57;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: #111111;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tabs .nav-tabs {
  border: 0;
}

.tabs .nav-link {
  border: 1px solid #b9b9b9;
  padding: 15px;
  transition: 0.3s;
  color: #111111;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.tabs .nav-link i {
  padding-right: 15px;
  font-size: 48px;
  color: white;
}

.tabs .nav-link i.active {
  padding-right: 15px;
  font-size: 48px;
  color: white;
}

.tabs .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: white;
}

.tabs .nav-link:hover {
  color: #cf9f57;
}

.tabs .nav-link.active {
  background: #C8AF78;
  color: #fff;
  border-color: #C8AF78;
}

@media (max-width: 768px) {
  .tabs .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .tabs .nav-link {
    padding: 15px;
  }

  .tabs .nav-link i {
    font-size: 24px;
  }
}

.tabs .tab-content {
  margin-top: 30px;
}

.tabs .tab-pane h3 {
  font-weight: 600;
  font-size: 26px;
}

.tabs .tab-pane ul {
  list-style: none;
  padding: 0;
}

.tabs .tab-pane ul li {
  padding-bottom: 10px;
}

.tabs .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #cf9f57;
}

.tabs .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
  padding: 5px 20px;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(207, 159, 87, 0.1);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 100px;
  /* Reduced min-height for more compact cards */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 1;
}

.services .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0.1;
  transition: width 0.5s ease;
  z-index: -1;
}

.services .icon-box:hover::before {
  width: 100%;
}

.services .icon-box:hover {
  /* transform: translateY(-10px) scale(1.02); */
  border-color: var(--primary-color);
  box-shadow: 0 25px 80px rgba(207, 159, 87, 0.2);
}

.services .icon-box i {
  position: relative;
  float: left;
  color: var(--primary-color);
  font-size: 36px;
  /* Reduced font size */
  line-height: 1;
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 15px;
  /* Reduced margin */
  margin-top: 10px;
  max-width: 40px;
  /* Reduced width */
  overflow: visible;
}

.services .icon-box:hover i {
  transform: scale(1.2) rotate(5deg);
}

.services .icon-box h4 {
  margin-left: 55px;
  /* Reduced margin */
  font-weight: 700;
  margin-bottom: 10px;
  /* Reduced margin */
  font-size: 20px;
  /* Reduced font size */
  color: var(--text-light);
  transition: all 0.3s ease;
  text-transform: uppercase;
  word-wrap: break-word;
  letter-spacing: 1px;
}

.services .icon-box h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.services .icon-box p {
  margin-left: 55px;
  /* Reduced margin */
  line-height: 1.6;
  /* Reduced line height */
  font-size: 14px;
  /* Reduced font size */
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.services .icon-box:hover p {
  color: var(--text-light);
}

/* Desktop to tablet transition happens at 1200px instead of 992px for smoother transition */
@media (max-width: 1200px) {
  .services .icon-box {
    padding: 18px 15px;
    min-height: 140px;
    /* Further reduced for smaller screens */
  }

  .services .icon-box h4 {
    font-size: 17px;
    margin-left: 50px;
  }

  .services .icon-box p {
    font-size: 13px;
    margin-left: 50px;
  }

  .services .icon-box i {
    font-size: 32px;
    margin-top: 2px;
  }
}

/* Intermediate breakpoint for smoother transition */
@media (max-width: 991px) {
  .services .icon-box {
    padding: 15px 15px;
    min-height: 130px;
  }
}

/* Tablet to mobile transition */
@media (max-width: 768px) {
  .services .icon-box {
    padding: 15px 15px;
    text-align: center;
    min-height: 120px;
    margin-bottom: 15px;
  }

  .services .icon-box i {
    float: none;
    margin-right: 0;
    margin-bottom: 10px;
    display: block;
    font-size: 32px;
  }

  .services .icon-box h4,
  .services .icon-box p {
    margin-left: 0;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .services .icon-box {
    min-height: 100px;
    padding: 12px 10px;
    margin-bottom: 10px;
  }

  .services .icon-box h4 {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .services .icon-box p {
    font-size: 12px;
    line-height: 1.4;
  }

  .services .icon-box i {
    font-size: 28px;
    margin-bottom: 8px;
  }
}

/*--------------------------------------------------------------
# Portfolio / Gallery
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 40px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 40px auto;
  list-style: none;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(207, 159, 87, 0.2);
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.portfolio #portfolio-flters li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.4s ease;
  z-index: -1;
}

.portfolio #portfolio-flters li:hover::before,
.portfolio #portfolio-flters li.filter-active::before {
  left: 0;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: var(--light-color);
  transform: translateY(-3px) scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(207, 159, 87, 0.3);
}

.portfolio .portfolio-wrap {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  background: rgba(0, 0, 0, 0.3);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(17, 17, 17, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
}

.portfolio .portfolio-wrap img {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: var(--border-radius);
  width: 100%;
  height: auto;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  bottom: 0;
  z-index: 3;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  text-align: center;
  transform: translate(-50%, -50%) scale(0.8);
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 24px;
  color: var(--light-color);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  text-transform: uppercase;
  padding: 0;
  margin: 0 0 20px 0;
  font-weight: 500;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.portfolio .portfolio-wrap .portfolio-links {
  text-align: center;
  z-index: 4;
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: var(--light-color);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(75, 58, 33, 0.4);
  transform: scale(1.2) rotate(10deg);
  border-color: var(--light-color);
  box-shadow: 0 10px 25px rgba(207, 159, 87, 0.4);
}

.portfolio .portfolio-wrap:hover::before {
  opacity: 1;
  transform: scale(1);
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.portfolio .portfolio-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .portfolio #portfolio-flters {
    margin-bottom: 30px;
  }

  .portfolio #portfolio-flters li {
    padding: 10px 20px;
    font-size: 13px;
    margin: 5px;
  }

  .portfolio .portfolio-wrap .portfolio-info {
    padding: 20px;
  }

  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
  }

  .portfolio .portfolio-wrap .portfolio-info p {
    font-size: 14px;
  }

  .portfolio .portfolio-wrap .portfolio-links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #cf9f57;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cf9f57;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(17, 17, 17, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  background: #fff;
  border-radius: 15px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 25px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #fceaea;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 30px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #cf9f57;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #cf9f57;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .box {
  padding: 20px;
  background: #2b2b2b;
  text-align: center;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.pricing .box h3 {
  font-weight: 400;
  padding: 15px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}

.pricing .box h4 {
  font-size: 42px;
  font-weight: 500;
  font-family: 'Figtree', sans-serif;
  margin-bottom: 20px;
}

.pricing .box h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing .box h4 span {
  font-size: 16px;
  font-weight: 300;
}

.pricing .box ul {
  padding: 0;
  list-style: none;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing .box ul li {
  padding-bottom: 16px;
}

.pricing .box ul i {
  color: #cf9f57;
  font-size: 18px;
  padding-right: 4px;
}

.pricing .box ul .na {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.pricing .box .btn-wrap {
  padding: 15px;
  text-align: center;
}

.pricing .box .btn-buy {
  display: inline-block;
  padding: 10px 40px 12px 40px;
  border-radius: 4px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: 'Figtree', sans-serif;
  font-weight: 600;
  transition: 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.pricing .box .btn-buy:hover {
  border-color: #fff;
}

.pricing .featured {
  background: #cf9f57;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0;
  list-style: none;
}

.faq .faq-list li {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq .faq-list a {
  display: block;
  position: relative;

  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  padding-right: 25px;
  cursor: pointer;
}

.faq .faq-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #cf9f57;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

/*--------------------------------------------------------------
# Team / Jurado
--------------------------------------------------------------*/
.team .member {
  margin-bottom: 20px;
  /* Reduced margin for more consistent spacing */
  overflow: hidden;
  border-radius: var(--border-radius);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(207, 159, 87, 0.1);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: var(--shadow-soft);
  position: relative;
  transform-style: preserve-3d;
  height: 100%;
  /* Asegurar altura completa */
  min-width: 287px;
  /* Ancho mínimo para cards */
  display: flex;
  flex-direction: column;
}

.team .member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: var(--border-radius);
}

.team .member:hover::before {
  opacity: 0.1;
}

.team .member:hover {
  /* transform: translateY(-15px) rotateX(5deg); */
  border-color: var(--primary-color);
  box-shadow: 0 25px 80px rgba(207, 159, 87, 0.25);
}

.team .member .member-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  flex-shrink: 0;
  /* No se encoge */
}

.team .member .member-img img {
  width: 100%;
  height: 300px;
  /* Altura fija para todas las imágenes */
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: grayscale(20%);
}

/* Responsive jurado cards */
@media (max-width: 1200px) {
  .team .member .member-img img {
    height: 280px;
    /* Slightly reduced height for larger screens */
  }
}

@media (max-width: 991px) {
  .team .member .member-img img {
    height: 250px;
    /* Altura reducida en tablets */
  }

  .team .member {
    margin-bottom: 20px;
    /* Consistent spacing */
  }
}

@media (max-width: 767px) {
  .team .member {
    margin-bottom: 20px;
    /* Consistent spacing in móvil */
  }

  .team .member .member-img img {
    height: 220px;
    /* Altura más reducida en móviles */
  }

  .team .member .member-info {
    padding: 12px 8px;
    min-height: 70px;
  }

  .team .member .member-info h4 {
    font-size: 14px;
    margin-bottom: 3px;
  }

  .team .member .member-info span {
    font-size: 10px;
    line-height: 1.2;
  }
}

/* Ensure consistent spacing in smaller mobile screens */
@media (max-width: 576px) {
  .team .member {
    margin-bottom: 15px;
  }

  .team .row {
    row-gap: 15px !important;
  }
}

.team .member:hover .member-img img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.team .member .social {
  position: absolute;
  left: 0;
  bottom: 20px;
  right: 0;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: translateY(20px);
}

.team .member:hover .social {
  opacity: 1;
  transform: translateY(0);
}

.team .member .social a {
  color: var(--light-color);
  margin: 0;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background: rgba(207, 159, 87, 0.9);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.team .member .social a:hover {
  background: var(--secondary-color);
  transform: scale(1.2) rotate(15deg);
  border-color: var(--light-color);
  box-shadow: 0 10px 25px rgba(207, 159, 87, 0.4);
}

.team .member .member-info {
  padding: 15px 10px;
  text-align: center;
  background: rgb(15, 25, 55);
  backdrop-filter: blur(10px);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  flex-grow: 1;
  /* Toma el espacio restante */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80px;
  /* Altura mínima más compacta */
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 16px;
  /* Tama&ntilde;o más reducido */
  color: var(--text-light);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team .member:hover .member-info h4 {
  color: var(--primary-color);
  transform: translateY(-2px);
}

.team .member .member-info span {
  display: block;
  font-size: 11px;
  /* Tama&ntilde;o más peque&ntilde;o */
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  line-height: 1.2;
  /* Línea más compacta */
  min-height: auto;
  /* Auto altura */
  overflow: hidden;
  text-overflow: ellipsis;
}

.team .member:hover .member-info span {
  color: var(--secondary-color);
}

.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 10px 0 0 0;
  transition: all 0.3s ease;
  min-height: 20px;
  /* Altura mínima para párrafo adicional */
}

.team .member:hover .member-info p {
  color: rgba(255, 255, 255, 0.8);
}


/* Centrar cards de jurado en mobile */
@media (max-width: 768px) {
  .team .row {
    justify-content: center;
  }

  .team .col-lg-3.col-md-6 {
    display: flex;
    justify-content: center;
    /* margin-bottom: 30px; */
  }
}

/* Additional hover effect for member cards */
.team .member::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 48%, rgba(207, 159, 87, 0.1) 50%, transparent 52%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: var(--border-radius);
}

.team .member:hover::after {
  opacity: 1;
}

/* Asegurar que todas las cards en una fila tengan la misma altura */
.team .row {
  display: flex;
  flex-wrap: wrap;
}

.team .col-lg-3,
.team .col-md-6 {
  display: flex;
  align-items: stretch;
}

@media (max-width: 768px) {
  .team .member {
    margin: 0 auto 40px auto;
    max-width: 300px;
  }

  .team .member .member-img img {
    height: 250px;
    /* Altura fija para móvil */
  }

  .team .member .member-info {
    padding: 15px 15px;
    min-height: 80px;
    /* Altura mínima reducida para móvil */
  }

  .team .member .member-info h4 {
    font-size: 16px;
    min-height: 35px;
    margin-bottom: 5px;
  }

  .team .member .member-info span {
    min-height: 25px;
    font-size: 11px;
  }

  .team .member .social a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .team .member .member-img img {
    height: 220px;
  }

  .team .member .member-info {
    min-height: 120px;
  }

  .team .member .member-info h4 {
    font-size: 16px;
    min-height: 40px;
  }

  .team .member .member-info span {
    min-height: 30px;
    font-size: 12px;
  }
}

.team .member:hover .social {
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  position: relative;
  z-index: 1;
}

.contact .info-box {
  color: var(--text-light);
  text-align: center;
  background: rgba(15, 25, 55, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(207, 159, 87, 0.2);
  box-shadow: var(--shadow-soft);
  padding: 35px 20px;
  border-radius: var(--border-radius);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact .info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(207, 159, 87, 0.05), transparent);
  z-index: -1;
}

.contact .info-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(207, 159, 87, 0.4);
}

.contact .info-box i {
  font-size: 36px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-radius: 50%;
  padding: 15px;
  border: 2px solid rgba(207, 159, 87, 0.3);
  margin-bottom: 20px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(207, 159, 87, 0.15);
  transition: all 0.4s ease;
}

.contact .info-box:hover i {
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(207, 159, 87, 0.6);
  box-shadow: 0 15px 35px rgba(207, 159, 87, 0.25);
}

.contact .info-box h3 {
  font-size: 22px;
  color: var(--primary-color);
  font-weight: 700;
  margin: 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 16px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.contact .php-email-form {
  background: rgba(15, 25, 55, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(207, 159, 87, 0.2);
  box-shadow: var(--shadow-soft);
  padding: 35px 30px;
  border-radius: var(--border-radius);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact .php-email-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(207, 159, 87, 0.05), transparent);
  z-index: -1;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: linear-gradient(135deg, #ed3c0d, #c52707);
  text-align: left;
  padding: 15px;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 20px;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: linear-gradient(135deg, #18d26e, #0da053);
  text-align: center;
  padding: 15px;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 20px;
}

.contact .php-email-form .loading {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary-color);
  border-top-color: rgba(255, 255, 255, 0.3);
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 25px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(207, 159, 87, 0.2);
  color: var(--text-light);
  box-shadow: none;
  font-size: 16px;
  border-radius: var(--border-radius);
  padding: 12px 18px;
  transition: all 0.3s ease;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 15px rgba(207, 159, 87, 0.1);
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact .php-email-form textarea {
  padding: 15px 18px;
  resize: none;
}

.contact .php-email-form button[type="submit"] {
  background: var(--gradient-primary);
  border: 0;
  padding: 14px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  box-shadow: 0 10px 25px rgba(207, 159, 87, 0.3);
  position: relative;
  overflow: hidden;
}

.contact .php-email-form button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.contact .php-email-form button[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(207, 159, 87, 0.4);
}

.contact .php-email-form button[type="submit"]:hover::before {
  transform: translateX(100%);
}

/* Captcha and submit button layout */
.contact .php-email-form .row.align-items-center {
  margin-bottom: 20px;
}

@media (max-width: 768px) {

  .contact .php-email-form .row.align-items-center .col-md-8,
  .contact .php-email-form .row.align-items-center .col-md-4 {
    margin-bottom: 15px;
  }

  .contact .php-email-form .row.align-items-center .col-md-4 {
    text-align: center !important;
  }
}

/* Mapa de Google con estilo mejorado */
.map-container {
  margin-top: 3rem;
}

.map-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  border: 2px solid rgba(207, 159, 87, 0.3);
  height: 400px;
  background: linear-gradient(135deg, rgba(15, 25, 55, 0.05), rgba(15, 25, 55, 0.2));
}

.contact iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%) contrast(1.1) brightness(0.9) saturate(1.2);
  transition: all 0.6s ease;
  position: relative;
  z-index: 1;
}

.map-wrapper:hover iframe {
  filter: grayscale(0%) contrast(1.15) brightness(1) saturate(1.3);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(207, 159, 87, 0.05), transparent, rgba(131, 58, 180, 0.05));
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.map-wrapper:hover .map-overlay {
  opacity: 0.4;
}

.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  background: var(--gradient-primary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(207, 159, 87, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  z-index: 3;
  animation: pulse 2s infinite;
}

.map-wrapper:hover .map-pin {
  opacity: 1;
}

.map-pin i {
  font-size: 28px;
  color: #fff;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow: 0 0 0 0 rgba(207, 159, 87, 0.7);
  }

  70% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 15px rgba(207, 159, 87, 0);
  }

  100% {
    transform: translate(-50%, -50%) scale(0.95);
    box-shadow: 0 0 0 0 rgba(207, 159, 87, 0);
  }
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #111111;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #cf9f57;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #777777;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #777777;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  background: #cf9f57;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #e35052;
}

.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #444444;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #111111;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #5e5e5e;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #1e1e1e;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #cf9f57;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #111111;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(17, 17, 17, 0.5);
  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;
  color: #b7b7b7;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #444444;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #cf9f57;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #111111;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #2b2b2b;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #ee9293;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #ee9293;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #111111;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #1e1e1e;
}

.blog .blog-pagination {
  color: #444444;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #111111;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #cf9f57;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #111111;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #cf9f57;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {

  .blog .sidebar .search-form form button:hover {
    background: #e34c4d;
  }

  .blog .sidebar .categories ul {
    list-style: none;
    padding: 0;
  }

  .blog .sidebar .categories ul li+li {
    padding-top: 10px;
  }

  .blog .sidebar .categories ul a {
    color: #111111;
    transition: 0.3s;
  }

  .blog .sidebar .categories ul a:hover {
    color: #cf9f57;
  }

  .blog .sidebar .categories ul a span {
    padding-left: 5px;
    color: #aaaaaa;
    font-size: 14px;
  }

  .blog .sidebar .recent-posts .post .blog .sidebar .recent-posts h4 a {
    color: #111111;
    transition: 0.3s;
  }

  .blog .sidebar .recent-posts h4 a:hover {
    color: #cf9f57;
  }

  .blog .sidebar .recent-posts time {
    display: block;
    margin-left: 95px;
    font-style: italic;
    font-size: 14px;
    color: #aaaaaa;
  }

  .blog .sidebar .tags {
    margin-bottom: -10px;
  }

  .blog .sidebar .tags ul {
    list-style: none;
    padding: 0;
  }

  .blog .sidebar .tags ul li {
    display: inline-block;
  }

  .blog .sidebar .tags ul a {
    color: #515151;
    font-size: 14px;
    padding: 6px 14px;
    margin: 0 6px 8px 0;
    border: 1px solid #c4c4c4;
    display: inline-block;
    transition: 0.3s;
  }

  .blog .sidebar .tags ul a:hover {
    color: #fff;
    border: 1px solid #cf9f57;
    background: #cf9f57;
  }

  /*--------------------------------------------------------------
# Modern Animations & Effects
--------------------------------------------------------------*/

  /* Loading animation for images */
  img {
    transition: all 0.3s ease;
  }

  /* Scroll reveal animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-30px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes bounceIn {
    0% {
      opacity: 0;
      transform: scale(0.3);
    }

    50% {
      opacity: 1;
      transform: scale(1.05);
    }

    70% {
      transform: scale(0.9);
    }

    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(207, 159, 87, 0.7);
    }

    70% {
      box-shadow: 0 0 0 10px rgba(207, 159, 87, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(207, 159, 87, 0);
    }
  }

  /* Apply animations to elements */
  .fade-in-up {
    animation: fadeInUp 0.8s ease-out;
  }

  .fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
  }

  .fade-in-right {
    animation: fadeInRight 0.8s ease-out;
  }

  .bounce-in {
    animation: bounceIn 1s ease-out;
  }

  /* Modern cursor effect for interactive elements */
  .interactive-element {
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .interactive-element::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(207, 159, 87, 0.3) 0%, transparent 70%);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
  }

  .interactive-element:hover::before {
    width: 300px;
    height: 300px;
  }

  /* Glass morphism effect */
  .glass-effect {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  /* Neon glow effect for accents */
  .neon-glow {
    box-shadow:
      0 0 5px var(--primary-color),
      0 0 10px var(--primary-color),
      0 0 15px var(--primary-color),
      0 0 20px var(--primary-color);
  }

  /* Floating animation */
  @keyframes floating {

    0%,
    100% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-20px);
    }
  }

  .floating {
    animation: floating 3s ease-in-out infinite;
  }

  /* Gradient text effect */
  .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
  }

  /* Modern scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }

  ::-webkit-scrollbar-track {
    background: var(--dark-color);
  }

  ::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
  }

  /* Selection styling */
  ::selection {
    background: var(--primary-color);
    color: var(--light-color);
  }

  ::-moz-selection {
    background: var(--primary-color);
    color: var(--light-color);
  }

  /* Focus states for accessibility */
  *:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }

  button:focus,
  a:focus,
  input:focus,
  textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }

  /* Modern button hover effects */
  button,
  .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  button:hover,
  .btn:hover {
    transform: translateY(-2px);
  }

  /* Particle effect container */
  .particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
  }

  /*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
  #footer {
    background: radial-gradient(circle, rgba(209, 143, 50, 1) 0%, rgba(253, 96, 47, 1) 25%, rgba(253, 29, 29, 1) 50%, rgba(185, 45, 113, 1) 75%, rgba(131, 58, 180, 1) 100%);
    color: var(--light-color);
    font-size: 14px;
    position: relative;
    padding: 30px 0;
    margin-top: 50px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 997;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -2px 30px rgba(0, 0, 0, 0.3);
  }

  #footer .footer-top {
    padding: 60px 0 30px 0;
    background: rgba(0, 0, 0, 0.1);
  }

  #footer .footer-top .footer-contact {
    margin-bottom: 30px;
  }

  #footer .footer-top .footer-contact h3 {
    font-size: 24px;
    margin: 0 0 30px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    color: var(--light-color);
  }

  #footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
  }

  #footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    color: var(--light-color);
    position: relative;
    padding-bottom: 12px;
  }

  #footer .footer-top .footer-links {
    margin-bottom: 30px;
  }

  #footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
  }

  #footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
  }

  #footer .footer-top .footer-links ul a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
    text-decoration: none;
  }

  #footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: var(--light-color);
    transform: translateX(5px);
  }

  #footer .footer-top .social-links {
    display: flex;
    gap: 12px;
  }

  #footer .footer-top .social-links a {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--light-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
  }

  #footer .footer-top .social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
  }

  #footer .footer-top .social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-strong);
    border-color: var(--light-color);
  }

  #footer .footer-top .social-links a:hover::before {
    transform: translateX(100%);
  }

  #footer .copyright {
    text-align: center;
    float: left;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
  }

  #footer .copyright span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  #footer .credits {
    float: right;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
  }

  #footer .credits a {
    color: var(--light-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  #footer .credits a:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
  }

  @media (max-width: 768px) {

    #footer .copyright,
    #footer .credits {
      float: none;
      text-align: center;
      padding: 5px 0;
    }
  }

  /* Separación específica para columnas de botones y jurados */
  .about .row .col-md-6 {
    margin-bottom: 20px;
  }

  .team .row .col-lg-3,
  .team .row .col-md-6 {
    padding: 20px 15px;
  }

  /* Contenedor responsive para las cards de acción */
  .about .icon-boxes {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }

  /* .team .row {
    margin-top: 30px;
    margin-bottom: 30px;
  } */

  /* Centrar cards de jurado en mobile */
  @media (max-width: 768px) {
    .about .row .col-md-6 {
      margin-bottom: 15px;
    }

    .team .row {
      justify-content: center;
    }

    .team .row .col-lg-3,
    .team .row .col-md-6 {
      padding: 15px 10px;
      display: flex;
      justify-content: center;
      /* margin-bottom: 30px; */
    }
  }

}

/* Estilos responsivos para el mapa */
@media (max-width: 992px) {
  .map-wrapper {
    height: 350px;
  }

  .map-pin {
    width: 50px;
    height: 50px;
  }

  .map-pin i {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .map-wrapper {
    height: 300px;
    margin-top: 1rem;
  }

  .map-container {
    margin-top: 2rem;
  }

  .map-pin {
    width: 40px;
    height: 40px;
  }

  .map-pin i {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .map-wrapper {
    height: 250px;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Ensure sections are positioned correctly for navigation */
section {
  position: relative;
  scroll-margin-top: 80px;
  /* Adjust based on header height */
}

/* Desktop header height adjustment */
@media (min-width: 992px) {
  section {
    scroll-margin-top: 90px;
  }
}

/* Mobile header height adjustment */
@media (max-width: 991px) {
  section {
    scroll-margin-top: 70px;
  }
}

/* Mobile responsive improvements */
@media (max-width: 991px) {
  body {
    padding-top: 80px;
  }

  .intro-video {
    margin-top: -80px;
  }

  #header {
    padding: 10px 0;
  }

  #header .logo img {
    max-height: 50px;
  }

  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 576px) {
  body {
    padding-top: 70px;
  }

  .intro-video {
    margin-top: -70px;
  }

  #header {
    padding: 8px 0;
  }

  #header .logo img {
    max-height: 40px;
  }

  .mobile-nav-toggle {
    font-size: 24px;
  }

  .mobile-menu-overlay a {
    font-size: 18px;
    padding: 12px 25px;
  }

  .mobile-close-btn {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
}