/* RESET Y VARIABLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-red: #a52c31;
  --dark-red: #782124;
  --light-red: #c73e47;
  --gold: #d4af37;
  --dark-bg: #1a1a1a;
  --glass-bg: rgba(0, 0, 0, 0.4);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.8);
  --text-accent: rgba(255, 255, 255, 0.6);
}

/* GENERAL */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 50%, var(--primary-red) 100%);
  background-attachment: fixed;
  font-family: "Roboto", sans-serif;
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ENHANCED BACKGROUND PATTERN */
.background-pattern {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* Círculos mejorados */
.pattern-circle {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.pattern-circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.pattern-circle-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 5s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pattern-circle-3 {
  width: 100px;
  height: 100px;
  top: 30%;
  left: 70%;
  animation-delay: 10s;
  border: 1px solid rgba(212, 175, 55, 0.4);
}

.pattern-circle-4 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  left: 30%;
  animation-delay: 15s;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Nuevos círculos */
.pattern-circle-5 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 30%;
  animation-delay: 3s;
  border: 1px solid rgba(212, 175, 55, 0.2);
  animation-duration: 25s;
}

.pattern-circle-6 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  right: 10%;
  animation-delay: 8s;
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation-duration: 30s;
}

.pattern-circle-7 {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 20%;
  animation-delay: 12s;
  border: 1px solid rgba(212, 175, 55, 0.3);
  animation-duration: 18s;
}

.pattern-circle-8 {
  width: 140px;
  height: 140px;
  top: 70%;
  left: 60%;
  animation-delay: 6s;
  border: 1px solid rgba(255, 255, 255, 0.12);
  animation-duration: 22s;
}

/* Diamantes decorativos */
.pattern-diamond {
  position: absolute;
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
  transform: rotate(45deg);
  animation: diamondFloat 15s ease-in-out infinite;
}

.pattern-diamond-1 {
  top: 25%;
  left: 50%;
  animation-delay: 2s;
}

.pattern-diamond-2 {
  bottom: 30%;
  right: 40%;
  animation-delay: 7s;
  width: 15px;
  height: 15px;
}

.pattern-diamond-3 {
  top: 60%;
  left: 80%;
  animation-delay: 11s;
  width: 25px;
  height: 25px;
}

/* Líneas decorativas */
.pattern-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  animation: lineMove 20s linear infinite;
}

.pattern-line-1 {
  width: 200px;
  height: 1px;
  top: 40%;
  left: -200px;
  animation-delay: 0s;
}

.pattern-line-2 {
  width: 150px;
  height: 1px;
  top: 70%;
  right: -150px;
  animation-delay: 8s;
  animation-direction: reverse;
}

.pattern-line-3 {
  width: 100px;
  height: 1px;
  top: 15%;
  left: -100px;
  animation-delay: 15s;
}

/* Partículas flotantes */
.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  animation: particleFloat 25s linear infinite;
}

.particle-1 {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.particle-2 {
  top: 40%;
  right: 25%;
  animation-delay: 5s;
  background: rgba(255, 255, 255, 0.4);
}

.particle-3 {
  bottom: 30%;
  left: 40%;
  animation-delay: 10s;
}

.particle-4 {
  top: 60%;
  right: 15%;
  animation-delay: 15s;
  background: rgba(212, 175, 55, 0.4);
}

.particle-5 {
  bottom: 20%;
  left: 70%;
  animation-delay: 20s;
  background: rgba(255, 255, 255, 0.3);
}

.particle-6 {
  top: 80%;
  right: 50%;
  animation-delay: 3s;
}

/* ANIMACIONES MEJORADAS */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-15px) rotate(90deg) scale(1.05);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-30px) rotate(180deg) scale(1.1);
    opacity: 0.7;
  }
  75% {
    transform: translateY(-15px) rotate(270deg) scale(1.05);
    opacity: 0.5;
  }
}

@keyframes diamondFloat {
  0%,
  100% {
    transform: rotate(45deg) translateY(0px) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: rotate(225deg) translateY(-25px) scale(1.2);
    opacity: 0.6;
  }
}

@keyframes lineMove {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100vw + 200px));
    opacity: 0;
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0px) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(50px);
    opacity: 0;
  }
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* MENU RESPONSIVE - FIXED VERSION */
.menu {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  color: white;
  height: 80px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  border-bottom: 1px solid var(--glass-border);
}

.menu__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  height: 100%;
}

.menu__logo-link {
  text-decoration: none;
}

.menu__logo {
  font-family: "Graduate", serif;
  color: var(--text-primary);
  text-align: left;
}

.logo-main {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 3px;
  line-height: 1;
}

.logo-subtitle {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-top: 2px;
}

.menu__links {
  height: 100%;
  transition: transform 0.3s ease;
  display: flex;
  list-style: none;
}

.menu__link {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0 25px;
  display: flex;
  height: 100%;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.menu__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.menu__link:hover {
  color: var(--text-primary);
  background: var(--glass-bg);
}

.menu__link:hover::after {
  width: 80%;
}

.menu__item {
  list-style: none;
  position: relative;
  height: 100%;
  --clip: polygon(0 0, 100% 0, 100% 0, 0 0);
  --transform: rotate(-90deg);
}

.menu__item:hover {
  --clip: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  --transform: rotate(0);
}

.menu__arrow {
  transform: var(--transform);
  transition: transform 0.3s ease;
  display: block;
  margin-left: 8px;
}

.menu__nesting {
  list-style: none;
  transition: clip-path 0.3s ease;
  clip-path: var(--clip);
  position: absolute;
  z-index: 1001;
  bottom: 0;
  width: max-content;
  min-width: 250px;
  transform: translateY(100%);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  overflow: hidden;
}

.menu__link--inside {
  padding: 15px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--glass-border);
}

.menu__link--inside:hover {
  background: var(--glass-bg);
  color: var(--gold);
}

.menu__hamburguer {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 15px;
  cursor: pointer;
  display: none;
}

.menu__img {
  display: block;
  width: 28px;
  color: white;
  font-size: 24px;
  transition: all 0.3s ease;
}

/* ENHANCED HERO SECTION */
.hero-section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-content {
  z-index: 10;
}

/* HERO BADGE CON ANIMACIONES SUTILES */
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 25px;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 30px;
  color: var(--gold);
  font-weight: 500;
  position: relative;
  overflow: hidden;

  /* Animaciones sutiles */
  animation: badgeGlow 3s ease-in-out infinite;
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  animation: badgeShimmer 4s linear infinite;
  z-index: -1;
}

/* TÍTULO CON MÚLTIPLES ANIMACIONES SUTILES */
.hero-title {
  font-family: "Graduate", serif;
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  letter-spacing: 8px;
  margin-bottom: 30px;
  position: relative;

  /* Sombra base mejorada */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);

  /* Degradado animado mejorado */
  background: linear-gradient(
    45deg,
    var(--text-primary) 0%,
    var(--gold) 25%,
    var(--text-primary) 50%,
    var(--gold) 75%,
    var(--text-primary) 100%
  );
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;

  /* Múltiples animaciones combinadas */
  animation: gradientMove 4s ease-in-out infinite, titleGlow 6s ease-in-out infinite, subtlePulse 8s ease-in-out
    infinite;
}

/* SUBTÍTULO CON ANIMACIONES ELEGANTES */
.hero-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--text-secondary);
  font-style: italic;
  position: relative;

  /* Animaciones sutiles */
  animation: subtitleFloat 4s ease-in-out infinite, subtitleGlow 5s ease-in-out infinite;
}

.hero-subtitle::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: subtitleUnderline 3s ease-in-out infinite;
  transform: translateX(-50%);
}

/* ANIMACIONES PARA EL TÍTULO */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 100% 100%;
  }
  75% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.3), 0 0 40px rgba(212, 175, 55, 0.1);
  }
  50% {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.5), 0 0 60px rgba(212, 175, 55, 0.2), 0 0
      80px rgba(212, 175, 55, 0.1);
  }
}

@keyframes subtlePulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

@keyframes titleShimmer {
  0% {
    left: -100%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes titleHalo {
  0%,
  100% {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* ANIMACIONES PARA EL BADGE */
@keyframes badgeGlow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
    border-color: rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    border-color: rgba(212, 175, 55, 0.3);
  }
}

@keyframes badgeShimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

/* ANIMACIONES PARA EL SUBTÍTULO */
@keyframes subtitleFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes subtitleGlow {
  0%,
  100% {
    color: var(--text-secondary);
    text-shadow: none;
  }
  50% {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }
}

@keyframes subtitleUnderline {
  0%,
  100% {
    width: 0;
    opacity: 0;
  }
  50% {
    width: 60%;
    opacity: 1;
  }
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}

.divider-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  animation: lineGlow 3s ease-in-out infinite;
}

.divider-diamond {
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
  margin: 0 20px;
  animation: diamondPulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

@keyframes diamondPulse {
  0%,
  100% {
    transform: rotate(45deg) scale(1);
    opacity: 1;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }
  50% {
    transform: rotate(45deg) scale(1.2);
    opacity: 0.8;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  }
}

@keyframes lineGlow {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
    filter: brightness(1.2);
  }
}

/* HISTORIA SECTION */
.historia-section {
  padding-bottom: 100px;
  position: relative;
}

.section-title {
  font-family: "Graduate", serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.title-accent {
  color: var(--gold);
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0 60px 0;
}

.leyenda-container {
  max-width: 900px;
  margin: 0 auto 80px auto;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.leyenda-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 25px;
  text-align: justify;
  font-weight: 300;
}

.leyenda-text strong {
  color: var(--gold);
  font-weight: 700;
}

/* VIDEO CONTAINER */
.video-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

.main-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1));
  pointer-events: none;
}

/* PUNTOS DE VENTA SECTION */
.puntos-venta-section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-description {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.map-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.map-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  height: 500px;
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05));
  pointer-events: none;
}

/* GALERÍA SECTION */
.galeria-section {
  padding: 100px 0;
  position: relative;
}

.slideshow-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.slideshow-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

.mySlides {
  display: none;
  position: relative;
  width: 100%;
  height: 600px;
  animation: fadeIn 0.5s ease-in-out;
}

.mySlides.active {
  display: block;
}

.slide-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.slide-image:hover {
  transform: scale(1.05);
}

/* Navigation buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -30px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  color: var(--text-primary);
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.next {
  right: 20px;
}

.prev {
  left: 20px;
}

.prev:hover,
.next:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--gold);
  transform: scale(1.1);
}

.nav-icon {
  display: block;
  line-height: 1;
}

/* Dots indicators */
.dots-container {
  text-align: center;
  padding: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: inline-block;
  transition: all 0.3s ease;
  border: 1px solid var(--glass-border);
}

.dot.active,
.dot:hover {
  background-color: var(--gold);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 0.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ENTREVISTAS SECTION */
.entrevistas-section {
  padding: 100px 0;
  position: relative;
}

.video-interview-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.video-interview-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  aspect-ratio: 16 / 9;
  height: auto;
}

.iframe-entrevista {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.video-interview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05));
  pointer-events: none;
  z-index: 1;
}

/* Play button overlay effect */
.video-interview-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.video-interview-wrapper:hover::before {
  opacity: 0.8;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-interview-wrapper::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  color: var(--gold);
  font-size: 24px;
  z-index: 3;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.video-interview-wrapper:hover::after {
  opacity: 1;
}

/* CONTACTO SECTION */
.contacto-section {
  padding: 100px 0;
  position: relative;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.form-contacto {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.form-contacto::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.05), transparent);
  animation: formShimmer 8s linear infinite;
  z-index: -1;
}

.titulo-formulario-contacto {
  text-align: center;
  margin-bottom: 30px;
}

.titulo-formulario-contacto h3 {
  font-family: "Graduate", serif;
  font-size: 1.8rem;
  color: var(--text-primary);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.form-divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 40px auto;
  animation: dividerGlow 3s ease-in-out infinite;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.areas-de-texto {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 1rem;
  color: var(--text-primary);
  font-family: "Roboto", sans-serif;
  transition: all 0.3s ease;
  resize: vertical;
}

.areas-de-texto::placeholder {
  color: var(--text-accent);
  font-style: italic;
}

.areas-de-texto:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
}

.full-width {
  grid-column: 1 / -1;
}

.btn-enviar {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--gold) 0%, #b8941f 100%);
  border: none;
  border-radius: 12px;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-bg);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-family: "Roboto", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-enviar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-enviar:hover::before {
  left: 100%;
}

.btn-enviar:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #e6c547 0%, var(--gold) 100%);
}

.btn-enviar:active {
  transform: translateY(-1px);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
}

@keyframes formShimmer {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes dividerGlow {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
    filter: brightness(1.3);
  }
}

/* FOOTER */
.main-footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #000 100%);
  color: var(--text-primary);
  position: relative;
}

.container-footer-all {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
}

.container-body {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
}

.footer-title {
  font-family: "Graduate", serif;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--gold);
  letter-spacing: 1px;
}

.footer-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 25px;
}

.footer-text {
  font-size: 0.95rem;
  color: var(--text-accent);
  line-height: 1.6;
  font-weight: 300;
}

.social-links .row,
.contact-info .row2 {
  margin-bottom: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.social-link:hover {
  color: var(--gold);
  transform: translateX(5px);
}

.social-link span {
  font-size: 1.2rem;
  margin-right: 12px;
  width: 20px;
}

.contact-info .row2 {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  margin-bottom: 15px;
}

.contact-info .row2 span {
  font-size: 1.1rem;
  margin-right: 12px;
  width: 20px;
  color: var(--gold);
}

.container-footer {
  background: #000;
  border-top: 1px solid var(--glass-border);
}

.footer-info {
  max-width: 1200px;
  margin: 0 auto;
  padding: 25px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright,
.information {
  font-size: 0.9rem;
  color: var(--text-accent);
}

.copyright a,
.information a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.copyright a:hover,
.information a:hover {
  color: var(--text-primary);
}

/* RESPONSIVE DESIGN - ENHANCED MOBILE MENU */
@media (max-width: 980px) {
  .menu__hamburguer {
    display: flex;
  }

  .menu__item {
    --clip: 0;
    overflow: visible; /* Cambiar de hidden a visible */
  }

  .menu__item--active {
    --transform: rotate(0);
    --background: var(--dark-red);
  }

  .menu__item--show {
    background-color: transparent; /* Cambiar para mejor visibilidad */
  }

  .menu__links {
    position: fixed;
    max-width: 100%;
    width: 100%;
    top: 80px;
    bottom: 0;
    right: 0;
    height: calc(100vh - 80px);
    min-height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(15px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    z-index: 1000;
    border-left: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .menu__links--show {
    transform: translateX(0);
  }

  .menu__link {
    padding: 20px 30px;
    height: auto;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1.1rem;
    justify-content: space-between;
    flex-shrink: 0;
    width: 100%; /* Asegurar ancho completo */
  }

  .menu__link::after {
    display: none;
  }

  .menu__arrow {
    margin-left: auto;
    margin-right: 0;
    transition: transform 0.3s ease;
  }

  .menu__item--active .menu__arrow {
    transform: rotate(180deg);
  }

  .menu__nesting {
    display: block;
    position: static;
    width: 100%;
    transform: none;
    height: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(0, 0, 0, 0.9);
    border: none;
    border-radius: 0;
    clip-path: none;
    flex-shrink: 0;
  }

  .menu__inside {
    width: 100%; /* Asegurar ancho completo */
    flex-shrink: 0;
  }

  .menu__link--inside {
    width: 100%;
    margin-left: 0;
    padding: 15px 30px 15px 50px; /* Padding más consistente */
    border-left: 3px solid var(--gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.5);
    font-size: 1rem;
    flex-shrink: 0;
    display: block; /* Asegurar que se muestre como bloque */
    height: auto; /* Altura automática */
    min-height: 50px; /* Altura mínima para cálculos */
    align-items: center;
  }

  .menu__link--inside:hover {
    background: var(--glass-bg);
    color: var(--gold);
    padding-left: 55px;
  }

  /* Overlay para prevenir scroll del body */
  body.menu-open {
    overflow: hidden;
    height: 100vh;
  }

  body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 0 20px;
  }

  .hero-badge {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .leyenda-container {
    padding: 30px 25px;
    margin: 0 20px 60px 20px;
  }

  .leyenda-text {
    font-size: 1rem;
    text-align: left;
  }

  .section-title {
    margin-bottom: 15px;
  }

  .puntos-venta-section,
  .galeria-section,
  .entrevistas-section,
  .contacto-section {
    padding: 60px 0;
  }

  .map-wrapper {
    height: 400px;
    margin: 0 20px;
  }

  .slideshow-container,
  .video-interview-container,
  .form-container {
    margin: 0 20px;
  }

  .mySlides {
    height: 400px;
  }

  .prev,
  .next {
    width: 50px;
    height: 50px;
    margin-top: -25px;
    font-size: 16px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }

  .video-interview-wrapper::before {
    width: 60px;
    height: 60px;
  }

  .video-interview-wrapper::after {
    font-size: 20px;
  }

  .form-contacto {
    padding: 40px 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .titulo-formulario-contacto h3 {
    font-size: 1.5rem;
  }

  .container-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-info {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .menu__links {
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .logo-main {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }

  .logo-subtitle {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .hero-title {
    letter-spacing: 4px;
  }

  .leyenda-container {
    padding: 25px 20px;
  }

  .leyenda-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .section-description {
    font-size: 1rem;
    padding: 0 20px;
  }

  .mySlides {
    height: 300px;
  }

  .prev,
  .next {
    width: 40px;
    height: 40px;
    margin-top: -20px;
    font-size: 14px;
  }

  .dot {
    height: 10px;
    width: 10px;
    margin: 0 3px;
  }

  .video-interview-wrapper::before {
    width: 50px;
    height: 50px;
  }

  .video-interview-wrapper::after {
    font-size: 18px;
  }

  .form-contacto {
    padding: 30px 20px;
  }

  .titulo-formulario-contacto h3 {
    font-size: 1.3rem;
  }

  .areas-de-texto {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .btn-enviar {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .container-footer-all {
    padding: 40px 20px;
  }

  .menu__links {
    max-width: 100%;
  }

  .menu__link {
    padding: 18px 25px;
    font-size: 1rem;
  }

  .menu__link--inside {
    padding-left: 40px;
    font-size: 0.9rem;
  }

  .menu__link--inside:hover {
    padding-left: 45px;
  }
}

/* SMOOTH SCROLLING */
html {
  scroll-behavior: smooth;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--light-red);
}

/* LOADING ANIMATION */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content > * {
  animation: fadeInUp 1s ease-out forwards;
}

.hero-badge {
  animation-delay: 0.2s;
}
.hero-title {
  animation-delay: 0.4s;
}
.hero-divider {
  animation-delay: 0.6s;
}
.hero-subtitle {
  animation-delay: 0.8s;
}

.menu__link,
.menu__link .menu__arrow {
  color: white !important;
  fill: white !important;
}

/* KENAI Enhanced Footer Styles - Nombres únicos para evitar conflictos */

.kenai-footer-main {
  position: relative;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), #000000);
  color: #ffffff;
  overflow: hidden;
}

/* Background Pattern */
.kenai-footer-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  pointer-events: none;
  z-index: 1;
}

.kenai-footer-circle {
  position: absolute;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  animation: kenaiFooterFloat 20s ease-in-out infinite;
}

.kenai-footer-circle-1 {
  width: 128px;
  height: 128px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.kenai-footer-circle-2 {
  width: 96px;
  height: 96px;
  bottom: 20%;
  right: 20%;
  animation-delay: 1s;
}

.kenai-footer-diamond {
  position: absolute;
  width: 16px;
  height: 16px;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
  transform: rotate(45deg);
  animation: kenaiFooterFloat 15s ease-in-out infinite;
}

.kenai-footer-diamond-1 {
  top: 50%;
  left: 33%;
  animation-delay: 0.5s;
}

@keyframes kenaiFooterFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-15px) rotate(180deg);
    opacity: 0.6;
  }
}

/* Footer Content */
.kenai-footer-wrapper {
  position: relative;
  z-index: 10;
}

.kenai-footer-primary {
  max-width: 1400px;
  margin: 0 auto;
  padding: 64px 24px;
}

.kenai-footer-layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

/* Company Section */
.kenai-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kenai-brand-header {
  margin-bottom: 8px;
}

.kenai-brand-name {
  font-family: "Graduate", serif;
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 8px 0;
  letter-spacing: 2px;
}

.kenai-brand-tagline {
  color: #d4af37;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 0;
}

.kenai-brand-separator {
  height: 1px;
  background: linear-gradient(to right, #d4af37, rgba(212, 175, 55, 0.5), transparent);
  margin: 16px 0;
}

.kenai-brand-story {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 0.875rem;
  max-width: 400px;
  margin: 0;
}

.kenai-brand-highlight {
  color: #d4af37;
  font-weight: 600;
}

.kenai-brand-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 16px;
}

.kenai-feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kenai-feature-symbol {
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4af37;
  font-size: 1.25rem;
}

.kenai-feature-info {
  flex: 1;
}

.kenai-feature-label {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0 0 2px 0;
}

.kenai-feature-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  margin: 0;
}

/* Section Headers */
.kenai-catalog-header,
.kenai-connect-header {
  margin-bottom: 24px;
}

.kenai-catalog-heading,
.kenai-connect-heading {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kenai-catalog-icon,
.kenai-connect-icon {
  color: #d4af37;
  font-size: 1rem;
}

.kenai-catalog-line,
.kenai-connect-line {
  height: 1px;
  background: linear-gradient(to right, #d4af37, rgba(212, 175, 55, 0.5), transparent);
}

/* Products Section */
.kenai-footer-catalog {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kenai-catalog-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kenai-catalog-item {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 4px 0;
  transition: all 0.3s ease;
  position: relative;
}

.kenai-catalog-item:hover {
  color: #d4af37;
  transform: translateX(8px);
}

.kenai-catalog-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4af37;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 16px;
  transition: all 0.3s ease;
}

.kenai-catalog-all:hover {
  color: #ffffff;
}

.kenai-catalog-all i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.kenai-catalog-all:hover i {
  transform: translateX(4px);
}

/* Contact Section */
.kenai-footer-connect {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kenai-connect-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kenai-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.kenai-detail-symbol {
  color: #d4af37;
  font-size: 1.25rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.kenai-detail-text {
  flex: 1;
}

.kenai-detail-label {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 4px 0;
}

.kenai-detail-value {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  margin: 0;
}

.kenai-detail-anchor {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.75rem;
  transition: color 0.3s ease;
}

.kenai-detail-anchor:hover {
  color: #d4af37;
}

/* Social Media */
.kenai-connect-social {
  padding-top: 16px;
}

.kenai-social-label {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  margin: 0 0 16px 0;
}

.kenai-social-buttons {
  display: flex;
  gap: 16px;
}

.kenai-social-btn {
  width: 40px;
  margin: 0 0 16px 0;
}

.kenai-social-buttons {
  display: flex;
  gap: 16px;
}

.kenai-social-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.kenai-social-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
  color: #d4af37;
  transform: translateY(-2px);
}

/* Footer Bottom */
.kenai-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.kenai-bottom-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.kenai-bottom-copyright {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.kenai-bottom-copyright i {
  font-size: 1rem;
}

.kenai-bottom-brand {
  color: #d4af37;
  font-weight: 600;
}

.kenai-bottom-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.75rem;
}

.kenai-bottom-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.kenai-bottom-link:hover {
  color: #d4af37;
}

.kenai-bottom-divider {
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .kenai-footer-layout {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .kenai-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .kenai-footer-primary {
    padding: 48px 20px;
  }

  .kenai-footer-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kenai-brand-name {
    font-size: 2.5rem;
  }

  .kenai-brand-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .kenai-bottom-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .kenai-bottom-navigation {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .kenai-footer-primary {
    padding: 40px 16px;
  }

  .kenai-brand-name {
    font-size: 2rem;
  }

  .kenai-brand-tagline {
    font-size: 0.75rem;
    letter-spacing: 2px;
  }

  .kenai-social-buttons {
    justify-content: center;
  }

  .kenai-social-btn {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.modal-contenido {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  margin: 15% auto;
  padding: 30px;
  border-radius: 12px;
  max-width: 400px;
  color: var(--text-primary);
  text-align: center;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-modal {
  margin-top: 20px;
  background: var(--gold);
  color: var(--dark-bg);
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-modal:hover {
  background: #e6c547;
}

.kenai-footer-bottom {
  background-color: #111;
  padding: 20px 10px;
  font-size: 14px;
  color: white;
}

.kenai-bottom-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .kenai-bottom-flex {
    flex-direction: row;
    justify-content: space-between;
  }
}

.kenai-desarrollador {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.kenai-desarrollador:hover {
  text-decoration: underline;
}

.kenai-footer-bottom {
  background-color: #1a1a1a;
  padding: 20px 40px;
  color: white;
}

.kenai-bottom-wrapper.updated {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.kenai-bottom-left span {
  margin-right: 10px;
}

.kenai-bottom-right a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
}

.kenai-bottom-right a:hover {
  text-decoration: underline;
}


