/*---------------------------------------------------------------------------------------------*/
/* Root Variables */
:root {
  /* Colors */
  --primary-dark: #010101; /* Primary dark color */
  --primary-dark-mode: #0d1021; /* Dark mode primary background color */
  --color-red: #f7086c; /* Red color */
  --color-white: #fafafa; /* White color */
  --color-blue: #1ba9f6; /* Blue color */
  --color-dark-blue: #244d61; /* Dark blue color */
  --color-warning: #ffc956; /* Warning color */
  --color-danger: #ff5e59; /* Danger color */
  --color-success: #55f16c; /* Success color */
  --color-header: #1d1f20; /* Header color */
  --color-border: #27272e; /* Border color */
  --color-bg-footer: #151414; /* Background color for footer */
  --color-dark-green: #008037; /* Dark green color */
  --color-orange: #c28412; /* Orange color */
  --color-dark-orange: #bd7247; /* Dark orange color */
  --color-background: #1b0104; /* Background color */
  --color-border-footer: #373636;
  --color-icon-footer: #ff5e14;
  --color-span-footer: #757575;
  --color-description-footer: #7e7e7e;
  --color-input-footer: #2e2e2e;
  --color-background-copyright: #202020;
  --color-text-copyright: #878787;
  --color-border-copyright: #2a2a2a;
  --color-hamburguer: #201a1a;

  /* Social Media */
  --linkedin: #0077b5;
  --instagram: #e1306c;
  --tiktok: #0b0a0a;

  /* Gradient */
  --gradient-color: linear-gradient(
    to right,
    #ff7f50,
    /* Coral (orange) */ #ffd900,
    /* Yellow */ #ff4500 /* Darker orange */
  );

  --sunset-gradient: conic-gradient(
    from 0deg,
    #ff7f50,
    /* Coral (orange) */ #ff4500,
    /* Darker orange */ #ff6347,
    /* Tomato (reddish-orange) */ #ff8c00,
    /* Yellow */ #ff0000,
    /* Red */ #8b0000,
    /* Dark red */ #ff0000,
    /* Red */ #000000 /* Dark slate gray (for a hint of the coming night) */
  );

  --gradient-splash: linear-gradient(
    to bottom,
    rgba(255, 87, 34, 1) 0%,
    /* Orange */ rgba(255, 152, 0, 1) 25%,
    /* Amber */ rgba(255, 193, 7, 1) 50%,
    /* Yellow */ rgba(255, 255, 0, 1) 75%,
    /* Light Yellow */ rgba(255, 235, 59, 0) 100% /* Transparent Yellow */
  );

  --gradient-color-green: linear-gradient(
    90deg,
    rgb(186, 255, 129) 0%,
    rgb(24, 182, 136) 65%,
    rgba(3, 145, 111, 255) 80%,
    rgba(3, 145, 111, 255) 100%
  );

  /* Fonts */
  --primary-font: Helvetica, sans-serif; /* Primary font family */
  --secondary-font: Arial, sans-serif;
  --font-weight: 700; /* Font weight */

  /* Borders */
  --border-radius: 14px; /* Border radius */
  --border-scrollbar-radius: 15px; /* Scrollbar border radius */
  --border-radius-sm: 4px; /* Small border radius */

  /* Animations */
  --twinkle-duration: 4s;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
/*---------------------------------------------------------------------------------------------*/
/* Buttons */
.btn-consent {
  min-width: 30%; /* Establece un ancho mínimo para ambos botones */
  /* Otras propiedades para asegurar consistencia */
  padding: 10px;
  margin: 5px;
  border-radius: 10px;
}

/* Estilos para dispositivos móviles por defecto */
@media (max-width: 768px) {
  .btn-consent {
    min-width: 30%;
  }
}

/* Estilos para modo escritorio */
@media (min-width: 769px) {
  .btn-consent {
    min-width: 160px;
  }
}
/*---------------------------------------------------------------------------------------------*/
/* Customized style for the scrollbar */

/* Scrollbar base styles */
::-webkit-scrollbar {
  width: 10px; /* Width of the scrollbar */
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
  background: var(--color-orange); /* Background color of the scrollbar thumb */
  border-radius: var(
    --border-radius-sm
  ); /* Border radius of the scrollbar thumb */
  z-index: 1; /* Ensure scrollbar thumb is below the cursor */
}

/* Hover state of the scrollbar thumb */
::-webkit-scrollbar-thumb:hover {
  background: var(--color-dark-orange); /* Background color on hover */
}

/* Active state of the scrollbar thumb */
::-webkit-scrollbar-thumb:active {
  border-radius: var(--border-radius-sm); /* Border radius on active state */
}

/* Scrollbar track */
::-webkit-scrollbar-track {
  background-color: var(
    --primary-dark
  ); /* Background color of the scrollbar track */
}
/*---------------------------------------------------------------------------------------------*/
/* ANIMATION */

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes titleAnim {
  0% {
    width: 20vw;
    height: 0;
  }
  30% {
    height: 0vw;
    width: 40vw;
  }
  60% {
    width: 60vw;
    height: 5vw;
  }
  80% {
    width: 60vw;
    height: 5vw;
  }
  100% {
    width: 60vw;
    height: 5vw;
  }
}

/* titleAnim2 is used for the span: "STUDIO" word in the title sandbox */
/* Animación para pantallas hasta 576px */
@media (min-width: 481px) and (max-width: 576px) {
  @keyframes titleAnim2 {
    0% {
      opacity: 0;
      transform: translateY(0);
      transform: translateX(0%);
    }

    50% {
      opacity: 0.75;
      transform: translateY(15px); /* Ajustado para pantallas pequeñas */
      transform: translateX(20%); /* Ajustado para pantallas pequeñas */
    }

    100% {
      opacity: 1;
      transform: translateX(65%); /* Ajustado para pantallas pequeñas */
    }
  }
}

/* Tablets (577px - 767px) */
@media (min-width: 577px) and (max-width: 767px) {
  @keyframes titleAnim2 {
    0% {
      opacity: 0;
      transform: translateY(0);
      transform: translateX(0%);
    }

    50% {
      opacity: 0.75;
      transform: translateY(25px); /* Ajustado para pantallas medianas */
      transform: translateX(40%); /* Ajustado para pantallas medianas */
    }

    100% {
      opacity: 1;
      transform: translateX(70%); /* Ajustado para pantallas medianas */
    }
  }
}

@media screen and (max-width: 767px) {
  .copyright-area {
    padding: 1.5rem 1rem;
  }

  .copyright-area .container {
    padding: 0 0.75rem;
  }

  .copyright-area .row {
    flex-direction: column;
    text-align: center;
    margin: 0;
  }

  .copyright-area .col-xl-6,
  .copyright-area .col-lg-6,
  .copyright-area .col-md-12 {
    width: 100%;
    padding: 0;
  }

  .copyright-text {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
  }

  .copyright-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.8;
  }

  /* Ocultar separadores en mobile */
  .copyright-separator {
    display: none;
  }

  /* Ajustar el año, derechos y nombre */
  .copyright-year,
  .copyright-rights,
  .sds-name {
    display: block;
    margin: 0;
  }

  /* Footer menu responsive */
  .footer-menu {
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  .footer-menu nav {
    width: 100%;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .footer-nav-item {
    width: 100%;
    max-width: 280px;
    list-style: none;
  }

  .footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .footer-link:hover,
  .footer-link:active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .footer-link span {
    font-size: 0.9rem;
  }

  .footer-link-icon {
    font-size: 0.85rem;
  }
}

/* Tablets y Desktop pequeño (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  @keyframes titleAnim2 {
    0% {
      opacity: 0;
      transform: translateY(0);
      transform: translateX(0%);
    }

    50% {
      opacity: 0.75;
      transform: translateY(35px); /* Ajustado para pantallas grandes */
      transform: translateX(50%); /* Ajustado para pantallas grandes */
    }

    100% {
      opacity: 1;
      transform: translateX(65%); /* Ajustado para pantallas grandes */
    }
  }
}

/* Animación para pantallas mayores a 991px (opcional) */
@media (min-width: 992px) {
  @keyframes titleAnim2 {
    0% {
      opacity: 0;
      transform: translateY(0);
      transform: translateX(0%);
    }

    50% {
      opacity: 0.75;
      transform: translateY(40px); /* Original para pantallas grandes */
      transform: translateX(60%); /* Original para pantallas grandes */
    }

    100% {
      opacity: 1;
      font-size: 2.5vw; /* Original para pantallas grandes */
      transform: translateX(7.3vw); /* Original para pantallas grandes */
    }
  }
}

/* Animación para pantallas mayores a 991px (opcional) */
@media (min-width: 1800px) {
  @keyframes titleAnim2 {
    0% {
      opacity: 0;
      transform: translateY(0);
      transform: translateX(0%);
    }

    50% {
      opacity: 0.75;
      transform: translateY(40px); /* Original para pantallas grandes */
      transform: translateX(60%); /* Original para pantallas grandes */
    }

    100% {
      opacity: 1;
      font-size: 2.5vw; /* Original para pantallas grandes */
      transform: translateX(6.8vw); /* Original para pantallas grandes */
    }
  }
}

/* Animation for my name (h1) */
@keyframes topSideAni {
  /* Initial styles */
  0% {
    transform: translateY(-100px); /* Start animation from 100px above */
    opacity: 0; /* Start with opacity 0 */
  }

  /* Final styles */
  100% {
    transform: translateY(0); /* End animation at original position */
    opacity: 1; /* Fade in to full opacity */
  }
}

/* Animation for social media icons */
@keyframes logoAni {
  /* Initial styles */
  0% {
    transform: translateX(-100px); /* Start animation from 100px to the left */
    opacity: 0; /* Start with opacity 0 */
  }

  /* Final styles */
  100% {
    transform: translateX(0); /* End animation at original position */
    opacity: 1; /* Fade in to full opacity */
  }
}

/* Keyframes for fadeIn animation */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-20px); /* Start slightly lower */
  }
  100% {
    opacity: 1;
    transform: translateY(0); /* End at original position */
  }
}

@keyframes fireAnimation {
  0% {
    transform: scaleY(1) translateY(0);
    opacity: 1;
    background-position: 0% 50%;
  }
  25% {
    transform: scaleY(1.1) translateY(-5px);
    opacity: 0.8;
    background-position: 50% 50%;
  }
  50% {
    transform: scaleY(1.5) translateY(-10px);
    opacity: 0.6;
    background-position: 100% 50%;
  }
  75% {
    transform: scaleY(1.1) translateY(-5px);
    opacity: 0.8;
    background-position: 50% 50%;
  }
  100% {
    transform: scaleY(1) translateY(0);
    opacity: 1;
    background-position: 0% 50%;
  }
}

@keyframes waterDropAnimation {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes spin {
  0% {
    --rotate: 0deg;
  }
  100% {
    --rotate: 360deg;
  }
}
/*---------------------------------------------------------------------------------------------*/
/* Styles for all elements */

* {
  margin: 0; /* Remove default margins */
  padding: 0; /* Remove default padding */
  scroll-behavior: smooth; /* Smooth scrolling behavior */
  box-sizing: border-box;
}

/* Global Box Sizing */
*,
*:before,
*:after {
  box-sizing: border-box; /* Ensures box-sizing includes borders and padding in the element's total width and height */
}

/* Styles for HTML */
html {
  overflow-x: hidden; /* Hides horizontal scrollbar */
  cursor: none; /* Hides the cursor */
}

body#home {
  background-color: var(
    --color-background
  ); /* Sets background color for the home page */
}

/* Styles for BODY */
body {
  font-family: var(--primary-font); /* Apply primary font to all elements */
  padding: 0; /* 0 padding */
  margin: 0; /* 0 margin */
  font-size: 15px; /* Base font size */
  cursor: none; /* Hides the cursor */
  transition: background-color 0.5s ease, color 0.5s ease;
}
/*---------------------------------------------------------------------------------------------*/
/* CURSOR */

/* Cursor Dot Styles */
.cursor-dot,
.cursor-dot-outline {
  pointer-events: none; /* Disable pointer events */
  position: fixed; /* Fixed position */
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  border-radius: 50%; /* Circle shape */
  opacity: 0; /* Initially hidden */
  transform: translate(-50%, -50%); /* Centering using translate */
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out; /* Transition effects */
  z-index: 99999; /* Higher z-index for visibility */
}

/* Cursor Dot Styles - Inner Dot */
.cursor-dot {
  width: 8px; /* Width of the inner dot */
  height: 8px; /* Height of the inner dot */
  background-color: #ffffff; /* Background color of the inner dot (white) */
}

/* Cursor Dot Styles - Outer Dot */
.cursor-dot-outline {
  width: 40px; /* Width of the outer dot */
  height: 40px; /* Height of the outer dot */
  background-color: rgba(
    255,
    255,
    255,
    0.5
  ); /* Background color of the outer dot (white with 50% opacity) */
}

.star {
  position: fixed; /* Fixed position */
  transform-style: preserve-3d; /* Preserve 3D transformations */
  width: 1px; /* Width */
  height: 1px; /* Height */
  color: red; /* Color of the star */
  z-index: 99999; /* Higher z-index for visibility */
  user-select: none; /* Disable text selection */
  pointer-events: none; /* Disable pointer events */
}

.star:before {
  position: absolute; /* Absolute position for star */
  content: "\2726"; /* Star character */
  color: inherit; /* Inherit color */
  inset: 0; /* Position to fill parent */
  box-shadow: 0 0 1em 0.5em #a3c2; /* Box shadow */
  filter: drop-shadow(0 0 0.5em white); /* Drop shadow */
  text-shadow: 0 0 0.8em #fff5; /* Text shadow */
  user-select: none; /* Disable text selection */
  pointer-events: none; /* Disable pointer events */
}

.water-drop {
  position: fixed;
  width: 100px;
  height: 100px;
  background-color: lightgreen;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0.8;
  animation: waterDropAnimation 1s ease-out;
  z-index: 99999;
}
/*---------------------------------------------------------------------------------------------*/
/* - Cookies - */

.cookie-consent-banner {
  z-index: 9999;
  position: fixed;
  bottom: 20px; /* Espacio desde el borde inferior */
  left: 50%;
  transform: translateX(-50%); /* Centrar horizontalmente */
  width: 100%; /* Ancho del banner */
  max-width: 1400px; /* Ancho máximo */
  background: #f5f5f5; /* Color de fondo claro */
  color: #333; /* Color del texto */
  text-align: left; /* Alinear texto a la izquierda */
  padding: 20px;
  border-radius: 8px; /* Bordes redondeados */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Sombra para mayor visibilidad */
  display: none; /* Cambiar a 'block' cuando se necesite mostrar el banner */
  font-family: Arial, sans-serif; /* Tipografía moderna */
  font-size: 14px; /* Tamaño de fuente adecuado */
}

.cookie-content {
  max-width: 100%; /* Asegura que el contenido no exceda el contenedor */
}

.cookie-consent-banner h4 {
  font-weight: bold; /* Negrita */
  margin: 0 0 10px 0; /* Espaciado */
}

.cookie-consent-banner span {
  display: block;
  margin-bottom: 20px; /* Espaciado entre el texto y los botones */
}

.cookie-consent-banner .cookie-link {
  color: #0073e6; /* Color del enlace */
  text-decoration: none; /* Sin subrayado */
}

.cookie-consent-banner .cookie-link:hover {
  text-decoration: underline; /* Subrayar en hover */
}

.cookie-consent-banner .btn-consent {
  border: none;
  padding: 10px 15px; /* Ajustar el tamaño del padding */
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px; /* Bordes redondeados para un estilo moderno */
}

.btn-accept {
  background-color: #28a745; /* Color verde para el botón de aceptar */
  color: #fff;
}

.btn-reject {
  background-color: var(
    --color-background
  ); /* Color marrón para el botón de rechazar */
  color: #fff;
}
/*---------------------------------------------------------------------------------------------*/
/* - Scroll Down - */

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  margin-left: -16px;
  display: block;
  width: 45px;
  height: 45px;
  border: 2px solid var(--color-white);
  background-size: 14px auto;
  border-radius: 50%;
  z-index: 100;
  animation: bounce 2s infinite 2s;
  transition: all 0.2s ease-in;
  transform: scale(1);
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  color: var(--color-white);
}

.scroll-down:before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 6px);
  transform: rotate(-45deg);
  display: block;
  width: 12px;
  height: 12px;
  border: 2px solid var(--color-white);
  border-width: 0px 0 2px 2px;
}

.scroll-down:hover {
  background-color: var(--color-dark-orange);
  color: var(--color-background);
}
/*---------------------------------------------------------------------------------------------*/
/* - Back to Top - */

#backToTopBtn {
  display: none; /* Oculto por defecto */
  position: fixed; /* Fijo en la pantalla */
  bottom: 20px; /* Espaciado desde el fondo */
  right: 20px; /* Espaciado desde la derecha */
  z-index: 100; /* Asegurarse de que esté por encima de otros elementos */
  width: 45px; /* Ancho */
  height: 45px; /* Altura */
  border: 2px solid var(--color-white); /* Borde */
  background-size: 14px auto; /* Tamaño del fondo */
  border-radius: 50%; /* Bordes redondeados */
  animation: bounce 2s infinite 2s; /* Animación */
  transition: all 0.2s ease-in; /* Transición */
  transform: scale(1); /* Escala */
  background-color: rgba(0, 0, 0, 0.5); /* Color de fondo */
  text-align: center; /* Centrar el texto */
  color: var(--color-white); /* Color del texto */
  text-decoration: none; /* Sin subrayado */
}

#backToTopBtn:before {
  content: ""; /* Contenido vacío */
  position: absolute; /* Posición absoluta */
  top: calc(60% - 8px); /* Posición desde arriba */
  left: calc(50% - 6px); /* Posición desde la izquierda */
  transform: rotate(135deg); /* Rotación */
  display: block; /* Mostrar como bloque */
  width: 12px; /* Ancho */
  height: 12px; /* Altura */
  border: 2px solid var(--color-white); /* Borde */
  border-width: 0px 0 2px 2px; /* Ancho del borde */
}

#backToTopBtn:hover {
  background-color: var(
    --color-dark-orange
  ); /* Color de fondo al pasar el ratón */
  color: var(--color-background); /* Color del texto al pasar el ratón */
  transform: scale(1.1); /* Escalar al pasar el ratón */
}

#backToTopBtn.show {
  display: block; /* Mostrar el botón */
  opacity: 1; /* Opacidad */
}

#backToTopBtn.hide {
  opacity: 0; /* Ocultar el botón */
}
/*---------------------------------------------------------------------------------------------*/
/* HEADER */

/* Styles for the header */
#container {
  position: sticky; /* Sticky header */
  top: 0;
  z-index: 1000;
  padding: 0 5rem; /* Padding for the general container */
  background-color: #ffaf1b;
  transition: background-color 1s ease; /* Smooth transition for background color */
}

/* Styles for the header when scrolled */
#container.scrolled {
  background-color: var(--primary-dark); /* Background color when scrolled */
}

/* Styles for the page header */
.page-header {
  display: flex; /* Flexbox layout */
  justify-content: space-between; /* Space between items */
  align-items: center; /* Center alignment */
  box-shadow: none; /* No box shadow */
  opacity: 0; /* Initially hidden */
}

/* Styles for the page header when scrolled */
#container.scrolled .page-header {
  opacity: 1; /* Show header when scrolled */
}

/* Styles for the logo image */
.logo {
  max-width: 100%;
  height: auto;
  width: 100%; /* Logo width */
  transition: opacity 0.5s ease; /* Smooth transition for opacity */
  opacity: 0; /* Initially hidden */
}

/* Styles for the logo image when scrolled */
#container.scrolled .logo {
  opacity: 1; /* Show logo when scrolled */
}

/* Styles for the styled logo link */
.style-logo {
  display: flex; /* Flexbox layout */
  align-items: center; /* Center alignment */
  justify-content: center;
  width: 100px;
  height: auto;
  cursor: pointer;
  color: var(--color-white); /* Text color */
  font-size: 2rem; /* Font size */
  text-align: center;
  font-family: var(--logo-font); /* Font family */
  line-height: 1; /* Line height */
  font-style: italic; /* Italic font style */
  text-decoration: none; /* No underline */
  font-weight: var(--font-weight); /* Font weight */
}

.scrolled .style-logo {
  animation: logoAni 2s ease forwards; /* Animation */
  -webkit-animation: logoAni 2s ease forwards; /* WebKit animation for compatibility */
}

#container:not(.scrolled) .style-logo,
#container:not(.scrolled) .nav-link {
  pointer-events: none;
  cursor: default;
}
/*---------------------------------------------------------------------------------------------*/
/* NAVBAR */

/* Styles for the navigation menu list */
ul {
  display: flex; /* Display list items inline */
  list-style-type: none; /* Remove list bullets */
  background-color: transparent; /* Transparent background */
  overflow: hidden; /* Hide overflow */
  margin: 0; /* Remove margin */
  padding: 0; /* Remove padding */
}

/* Styles for each navigation menu list item */
li {
  margin: 0 1.5rem; /* Margin around each item */
}

/* Styles for each navigation menu link */
li a {
  display: inline-block; /* Display as inline block */
  padding: 0.3rem 1rem; /* Padding around the link */
  color: var(--color-white); /* Text color */
  text-decoration: none; /* No underline */
  font-size: 1.2rem; /* Font size */
  font-weight: var(--font-weight); /* Font weight */
  margin-top: 0.5rem; /* Margin top for the link */
  position: relative; /* Position relative for the underline */
}

/* Styles for the underline effect on hover */
ul li a::before {
  position: absolute; /* Absolute position */
  content: ""; /* Empty content */
  bottom: 0; /* Bottom aligned */
  width: calc(100% - 2rem); /* Full width minus padding */
  height: 2.5px; /* Underline height */
  background-image: var(--gradient-color); /* Gradient background */
  transform: scale(0, 1); /* Initial scale */
  transition: transform 0.3s ease; /* Transition effect */
}

/* Styles for the underline effect on hover */
ul li a:hover::before {
  transform: scale(1, 1); /* Scale to show underline */
}

/* Styles for hover and active states */
li a.active,
li a:hover {
  -webkit-background-clip: text; /* Clip text to background */
  -webkit-text-fill-color: transparent; /* Transparent text where background is applied */
  color: var(--primary-dark); /* Text color */
  background-image: var(--gradient-color); /* Gradient background */
  background-clip: text; /* Clip background to text */
}

.nav-link.gradient-link,
.fields-title {
  background: var(--gradient-color-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  position: relative;
  background-clip: text; /* Clip background to text */
}

.nav-link.gradient-link::before {
  position: absolute; /* Posición absoluta */
  content: ""; /* Contenido vacío */
  bottom: 0; /* Alineado al fondo */
  left: 0; /* Alineado a la izquierda */
  width: 100%; /* Ancho completo */
  height: 2.5px; /* Altura del subrayado */
  background-image: var(--gradient-color-green);
  transform: scale(0, 1); /* Escala inicial */
  transition: transform 0.3s ease; /* Efecto de transición */
}

.nav-link.gradient-link:hover::before {
  transform: scale(1, 1); /* Escalar para mostrar el subrayado */
}

.fields-title::before {
  position: absolute; /* Posición absoluta */
  content: ""; /* Contenido vacío */
  bottom: 0; /* Alineado al fondo */
  left: 0; /* Alineado a la izquierda */
  width: 100%; /* Ancho completo */
  height: 1.5px; /* Altura del subrayado */
  background-image: var(--gradient-color-green);
  transform: scale(0, 1); /* Escala inicial */
  transition: transform 0.3s ease; /* Efecto de transición */
}

.fields-title:hover::before {
  transform: scale(1, 1); /* Escalar para mostrar el subrayado */
}

/* Styles for the hamburger menu toggle */
.menu-toggle {
  display: none; /* Hide by default on larger screens */
  cursor: pointer;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--color-white);
  margin: 4px 0;
  transition: 0.4s;
}

#progressBarContainer {
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 5px; /* Height of the progress bar */
  background: var(--primary-dark); /* Background color of the container */
  z-index: 9999; /* Ensure it's on top */
  box-shadow: 0 0 10px 2px rgba(29, 28, 28, 0.8); /* Adding a glow effect */
}

#progressBar {
  width: 0;
  height: 100%;
  background: var(--color-dark-orange); /* Color of the progress bar */
  box-shadow: 0 0 10px 2px rgba(255, 165, 0, 0.8); /* Adding a glow effect */
}

.scrolled li a {
  opacity: 0; /* Initially invisible */
  animation: fadeIn 1s ease forwards; /* Apply the fadeIn animation */
}

/* Apply staggered delays to each navigation link */
.scrolled li:nth-child(1) a {
  animation-delay: 0.3s;
}

.scrolled li:nth-child(2) a {
  animation-delay: 0.45s;
}

.scrolled li:nth-child(3) a {
  animation-delay: 0.6s;
}

.scrolled li:nth-child(4) a {
  animation-delay: 0.75s;
}

.scrolled li:nth-child(5) a {
  animation-delay: 0.9s;
}

/*---------------------------------------------------------------------------------------------*/
/* MODE */

/*---------------------------------------------------------------------------------------------*/
/* Styles for the navigation alert section */

.nav-alert {
  background: var(--color-background);
  text-align: center;
  color: var(--color-white);
  padding: 1rem;
  font-family: var(--secondary-font);
  animation: topSideAni 2s ease forwards;
  -webkit-animation: topSideAni 2s ease forwards;
}

.nav-alert a {
  text-decoration: underline;
  color: var(--color-white);
}

.our-projects:not(.our-projects:hover) {
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.our-projects:hover,
.our-projects:active {
  background-image: var(--sunset-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/*---------------------------------------------------------------------------------------------*/
/* Styles for the banner section */

.sds-title-sandbox {
  position: absolute;
  z-index: 999;
  top: 33%;
  left: 51%;
  overflow: visible;
}

.sds-title-box {
  position: absolute;
  z-index: 999;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Old Standard TT", serif;
  border-bottom: 0.15vw solid var(--color-background);
  border-radius: 5%;
  overflow: hidden;
  background: transparent;
  animation: titleAnim 3s linear forwards;
  filter: drop-shadow(0 0 0.06em #fff);
  height: auto; /* Cambiado de 150% a auto */
  width: 80vw;
}

.sds-title {
  font-size: 5.6vw;
  text-align: center;
  color: var(--color-background);
  border-radius: 5%;
  letter-spacing: 9px;
  text-shadow: 5px 10px 5px rgba(255, 165, 0, 0.2),
    6px 10px 14px rgba(27, 1, 4, 0.55);
}

/* Estilos específicos para Firefox */
@-moz-document url-prefix() {
  .sds-title {
    margin-top: 5px; /* Ajusta este valor según sea necesario */
  }
}

.sds-title-span {
  z-index: 2983298382923983289;
  font-size: 2.5vw;
  color: #fff;
  border-radius: 5%;
  position: absolute;
  left: 0;
  margin-top: 1.3em;
  margin-left: 0.5%;
  animation: titleAnim2 1.5s linear forwards 2.5s;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  opacity: 0;
  text-shadow: 5px 5px 5px var(--color-orange),
    10px 10px 10px var(--color-dark-orange);
}

.banner {
  height: 100vh; /* Full viewport height */
  position: relative; /* Relative positioning for absolute child elements */
  overflow: hidden; /* Hides any overflowing content */
}

.banner .bg {
  position: absolute; /* Absolute positioning within the banner */
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover; /* Responsive background size */
  background-position: center bottom; /* Background position */
  transition: transform 0.3s; /* Smooth transition */
}

/* Background images for parallax effect */
.banner .bg-1 {
  background-image: url("../images/parallax0.avif");
  z-index: 10;
}

.banner .bg-2 {
  background-image: url("../images/parallax1.png");
  z-index: 10;
}

.banner .bg-3 {
  background-image: url("../images/parallax2.avif");
  z-index: 10;
}

.banner .bg-4 {
  background-image: url("../images/parallax3.avif");
  z-index: 10;
}

.banner .bg-5 {
  background-image: url("../images/parallax4.avif");
  z-index: 10;
}

.banner .bg-6 {
  background-image: url("../images/parallax5.avif");
  z-index: 10;
}

.banner .bg-7 {
  background-image: url("../images/parallax6.avif");
  z-index: 10;
}

.banner .bg-8 {
  background-image: url("../images/parallax7.avif");
  z-index: 10;
}

.banner .bg-9 {
  background-image: url("../images/parallax8.avif");
}

@property --rotate {
  syntax: "<angle>";
  initial-value: 132deg;
  inherits: false;
}

.card {
  position: relative;
  border-radius: 10%;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 3%;
  display: flex;
  cursor: pointer;
  background-color: var(--color-bg-footer) !important;
  margin: 0 auto;
}

.card::before {
  content: "";
  width: 80%;
  height: 102%;
  border-radius: 8px;
  background-image: linear-gradient(
    var(--rotate),
    #ff7f50,
    #ffd900 43%,
    #ff4500
  );
  position: absolute;
  z-index: -1;
  animation: spin 2.5s linear infinite;
  box-shadow: 0px 1px 15px var(--color-orange);
}

.card::after {
  position: absolute;
  content: "";
  top: calc(var(--card-height) / 6);
  left: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  box-shadow: 0px 1px 15px var(--color-orange);
}

.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100vh;
}

/* Heading styles */
.banner h1 {
  opacity: 0;
}

/* Intro section styles */
.intro {
  min-height: 50vh; /* Minimum height of 50% viewport height */
  color: #eee; /* Text color */
  display: flex; /* Flexbox container */
  flex-direction: column; /* Vertical stacking of elements */
  justify-content: center; /* Center content vertically */
  align-items: center; /* Center content horizontally */
}

.intro img {
  width: 130px; /* Image width */
  height: 130px; /* Image height */
  border-radius: 50%; /* Circular border radius */
}

.intro p {
  width: 700px; /* Paragraph width */
  max-width: 100%; /* Maximum width */
  text-align: center; /* Center-aligned text */
}

/* Animation for showing elements */
.animation-show {
  transform: translateY(50px); /* Initial translateY */
  opacity: 0; /* Initial opacity */
  transition: 0.7s; /* Transition duration */
}

.tab h2 {
  -webkit-background-clip: text; /* Clip text to background */
  -webkit-text-fill-color: transparent; /* Transparent text where background is applied */
  color: var(--primary-dark); /* Text color */
  background-image: var(--gradient-splash); /* Gradient background */
  background-clip: text; /* Clip background to text */
}

.active .animation-show {
  transform: translateY(0); /* TranslateY reset for active state */
  opacity: 1; /* Opacity reset for active state */
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animation-show:nth-child(2) {
  transition-delay: 0.3s; /* Delay for second child */
}

.animation-show:nth-child(3) {
  transition-delay: 0.6s; /* Delay for third child */
}

.animation-show:nth-child(4) {
  transition-delay: 0.9s; /* Delay for fourth child */
}
/*---------------------------------------------------------------------------------------------*/
/* Clients Section */

/*---------------------------------------------------------------------------------------------*/
/* Support Us Section */

.support-us-section .section-title {
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--color-white);
  font-size: 20px;
}

.supporter-title {
  font-style: italic;
}

.coffee-text {
  color: #707070;
  text-align: left;
  margin: 0;
  font-size: 15px;
}

.support-us-section {
  margin-top: 2%;
  border-bottom: 1px solid var(--color-border-footer);
}

.support-us-section .support-us-card:hover {
  box-shadow: 0px 1px 15px var(--color-orange);
  text-decoration: none;
  color: inherit;
}

.support-us-section .support-us-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f4ded7;
  padding: 20px;
  border-radius: 10px;
  color: inherit;
  text-decoration: none;
  max-width: 13%;
  border-radius: 60%;
  margin-left: 5%;
}

.support-us-section .support-us-card .text-support-us {
  flex: 1;
  color: black;
}

.support-us-section .col-md-12 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 2%;
}

.support-us-section .text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Alinea el texto a la izquierda */
  margin-bottom: 2%;
}

.img-support-us {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(to right, #f3eeee, #f4b292);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: inherit;
  text-decoration: none;
  margin-bottom: 2%;
  margin-left: 5%;
}

.support-us-link:hover {
  text-decoration: none;
}
/*---------------------------------------------------------------------------------------------*/
/* Team Section */

.section-team {
  font-family: "Arial", sans-serif;
  padding: 80px 0;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 5px 15px rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}

.section-team .header-section {
  margin-bottom: 50px;
}

.section-team .header-section {
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
}

.section-team .header-section .title {
  font-weight: 700;
  color: var(--color-white);
}

.section-team .single-person {
  margin-top: 30px;
  padding: 30px;
  background: linear-gradient(to right, #f3eeee, #ffa970);
  border-radius: 15px;
}

.section-team .single-person:hover {
  background: linear-gradient(to right, #016cec, #00b5f7);
  box-shadow: 0px 1px 15px var(--color-orange);
}

.section-team .single-person .person-image {
  position: relative;
  margin-bottom: 50px;
  border-radius: 50%;
  border: 4px dashed transparent;
  transition: padding 0.3s;
}

.section-team .single-person:hover .person-image {
  padding: 12px;
  border: 4px dashed var(--color-white);
}

.section-team .single-person .person-image img {
  width: 100%;
  border-radius: 50%;
}

.section-team .single-person .person-image .icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background: linear-gradient(to right, #016cec, #00b5f7);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 24px;
}

.section-team .single-person:hover .person-image .icon {
  background: none;
  background-color: var(--color-white);
  color: #016cec;
}

.section-team .single-person .person-info .full-name {
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 700;
}

.section-team .single-person .person-info .speciality {
  text-transform: uppercase;
  font-size: 14px;
  color: #016cec;
}

.section-team .single-person:hover .full-name,
.section-team .single-person:hover .speciality {
  color: var(--color-white);
}
/*---------------------------------------------------------------------------------------------*/
/* Projects Section */

/*---------------------------------------------------------------------------------------------*/
/* FOOTER */

.footer-section {
  position: relative;
  background: var(--color-bg-footer);
}

.footer-cta {
  border-bottom: 1px solid var(--color-border-footer);
}

.single-cta i {
  float: none;
  margin-left: 0;
  margin-bottom: 10px;
  color: var(--color-icon-footer);
}

/* Styles for the text from icon */
.cta-text {
  display: block;
  padding-left: 0;
  text-align: center;
}

/* Styles for the heading text */
.cta-text h4 {
  color: var(--color-white); /* Text color set to white */
  font-size: 20px; /* Font size of the heading */
  font-weight: 600; /* Font weight of the heading */
  margin-bottom: 2px; /* Bottom margin of the heading */
}

/* Styles for the span text */
.cta-text span {
  color: var(--color-span-footer); /* Color of the span text */
  font-size: 15px; /* Font size of the span text */
}

/* Styles for the footer content section */
.footer-content {
  position: relative; /* Positioning set to relative */
}

/* Styles for the footer logo section */
.footer-logo {
  text-align: center; /* Aligns the logo to the center */
}

/* Styles for the logo image within the footer */
.footer-logo img {
  max-width: 150px; /* Maximum width of the logo image */
}

/* Styles for the paragraphs within the footer text */
.footer-text p {
  font-size: 14px; /* Font size of paragraphs */
  color: var(--color-description-footer); /* Text color set to light gray */
  line-height: 28px; /* Line height of paragraphs */
}

/* Styles for the footer social icon section */
.footer-social-icon {
  text-align: center; /* Aligns "Follow us" text and social icons to the center */
}

/* Styles for the text within the footer social icon section */
.footer-social-icon span {
  display: block; /* Displayed as block element */
  color: var(--color-white); /* Text color set to white */
  font-size: 18px; /* Font size of the span text */
  font-weight: var(--font-weight); /* Font weight of the span text */
  font-family: var(--secondary-font); /* Font family for the span text */
  margin-bottom: 20px; /* Bottom margin of the span */
}

/* Styles for the social links within the footer */
.footer-social-icon a {
  color: var(--color-white); /* Text color set to white */
  font-size: 16px; /* Font size of the social links */
  text-align: center; /* Text alignment set to center */
  margin-inline: 10px; /* Horizontal margin of the social links */
  text-decoration: none; /* No underline */
}

/* Styles for the icons within the footer social icon section */
.footer-social-icon i {
  height: 40px; /* Height of the social icons */
  width: 40px; /* Width of the social icons */
  text-align: center; /* Text alignment set to center */
  line-height: 38px; /* Line height of the icons */
  border-radius: 50%; /* Border radius of the icons */
}

/* Removing hover effect for social icons */
.footer-social-icon a:hover,
.footer-social-icon a:active,
.footer-social-icon a:focus {
  color: var(--color-white); /* Ensure the color remains the same */
  background-color: var(
    --color-background
  ); /* Ensure the background remains the same */
  text-decoration: none; /* Ensure no underline or other decoration */
  outline: none; /* Remove outline on focus */
}

/* Styles for the heading within each footer widget */
.footer-widget-heading h3 {
  position: relative; /* Positioning set to relative */
  color: var(--color-white); /* Text color set to white */
  font-size: 20px; /* Font size of the heading */
  font-weight: 600; /* Font weight of the heading */
  margin-bottom: 30px; /* Bottom margin of the heading */
}

/* Styles for the pseudo element before the heading within each footer widget */
.footer-widget-heading h3::before {
  content: ""; /* Empty content */
  position: absolute; /* Positioning set to absolute */
  left: 0; /* Positioned at the left */
  top: 150%; /* Positioned 150% below the heading */
  width: 15%; /* Width of the pseudo element */
  height: 2px; /* Height of the pseudo element */
  background: var(
    --color-icon-footer
  ); /* Background color of the pseudo element */
}

/* Styles for the subscribe form within the footer */
.subscribe-form {
  position: relative; /* Positioning set to relative */
  overflow: hidden; /* Overflow set to hidden */
}

/* Styles for the input field within the subscribe form */
.subscribe-form input {
  width: 100%; /* Width set to 100% */
  padding: 14px 28px; /* Padding of the input field */
  background: var(
    --color-input-footer
  ); /* Background color of the input field */
  border: 1px solid var(--color-input-footer); /* Border of the input field */
  color: var(--color-white); /* Text color set to white */
}

/* Styles for the button within the subscribe form */
.subscribe-form button {
  position: absolute; /* Positioning set to absolute */
  right: 0; /* Positioned at the right */
  top: 0; /* Positioned at the top */
  background: var(--color-icon-footer); /* Background color of the button */
  border: 1px solid var(--color-icon-footer); /* Border of the button */
}

/* Styles for the copyright area at the bottom of the footer */
.copyright-area {
  background: linear-gradient(
    135deg,
    var(--color-background-copyright) 0%,
    rgba(40, 40, 40, 0.95) 100%
  );
  padding: 2rem 0;
  border-top: 1px solid var(--color-border-copyright);
  position: relative;
  overflow: hidden;
}

.copyright-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-color);
  opacity: 0.3;
}

/* Styles for the copyright text within the copyright area */
.copyright-text p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin: 0;
}

.copyright-year,
.copyright-rights {
  color: var(--color-white);
  font-weight: 500;
}
.copyright-separator {
  color: var(--color-orange);
  opacity: 0.7;
  font-weight: 300;
}

.copyright-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-text-copyright);
  line-height: 1.5;
  font-weight: 400;
}

.footer-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.footer-nav-item {
  margin: 0;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-copyright);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  position: relative;
  background: transparent;
  border: 1px solid transparent;

  -webkit-text-fill-color: var(--color-text-copyright);
  background-clip: initial;
  -webkit-background-clip: initial;
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-link::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.5px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff5e14 70%, #ff8807 100%);
  opacity: 0;
  transition: opacity 0.18s;
}

.footer-link:hover::after,
.footer-link:focus::after {
  opacity: 1;
}

.footer-link-icon {
  font-size: 0.8rem;
  color: var(--color-orange);
  transition: var(--transition-smooth);
}

.footer-link:hover,
.footer-link:focus {
  color: var(--color-white);
  -webkit-text-fill-color: var(--color-white); /* Añadir esta línea */
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background-clip: initial; /* Añadir esta línea */
  -webkit-background-clip: initial; /* Añadir esta línea */
}

.footer-link:hover .footer-link-icon,
.footer-link:focus .footer-link-icon {
  color: var(--color-dark-orange);
  transform: scale(1.1);
}

.footer-link:focus {
  outline: 2px solid var(--color-orange);
  outline-offset: 2px;
}

/* Styles for the social icon links */
.social-icon {
  display: inline-block; /* Displayed as inline block */
  color: var(--color-white); /* Text color set to white */
  border-radius: 50%; /* Border radius of the icon */
  text-decoration: none; /* Text decoration removed */
}

.linkedin-bg,
.instagram-bg,
.tiktok-bg {
  border: 0.5px solid #393636;
}

/* Styles for the LinkedIn social icon */
.linkedin-bg {
  background-color: var(--linkedin); /* Background color set to dark blue */
}

.instagram-bg {
  background-color: var(--instagram); /* Background color set to pink */
}

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

/* Styles for the SDS name text within the footer */
.sds-name {
  background-image: var(--gradient-color);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--font-weight);
  font-size: 1rem;
  position: relative;
  transition: var(--transition-smooth);
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-sm);
}

.sds-name:hover {
  transform: translateY(-1px);
  background: var(--gradient-color);
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: initial;
  color: var(--primary-dark);
}
/*---------------------------------------------------------------------------------------------*/
/* Media Queries */

/* Extra Small Devices, Phones (hasta 576px) */
@media screen and (max-width: 576px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 2.5rem;
    right: 1.5rem;
    z-index: 1000;
  }

  .sds-title {
    margin-top: 0.5%;
    font-size: 5vw;
    letter-spacing: 4px;
  }

  .sds-title-box {
    border: none;
  }

  .sds-title-box:before {
    content: "";
    width: 100%;
    height: 6%;
    border-radius: 5%;
    background: linear-gradient(270deg, #ff7f50, #ffd900, #ff4500);
    background-size: 600% 600%;
    position: absolute;
    bottom: 0;
    animation: gradient 2.5s linear infinite;
    box-shadow: 0px 1px 15px var(--color-orange);
  }

  .sds-title-span {
    font-size: 2.5vw;
    transform: translateX(55%);
  }

  .single-person {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50%;
  }

  nav ul {
    display: none;
    position: absolute;
    top: 5rem;
    right: 0;
    background-color: var(--color-hamburguer);
    border: 2px solid var(--primary-dark);
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .style-logo {
    pointer-events: none;
  }

  .menu-toggle.active + nav ul {
    display: block;
  }

  nav ul li {
    margin: 1rem 0;
  }

  .style-logo .logo {
    width: 70%;
    height: auto;
  }

  .support-us-section .support-us-card {
    background: transparent;
    width: auto;
    margin-left: 10%;
  }

  .support-us-section .support-us-card:hover {
    box-shadow: none;
  }

  .card {
    width: 90%;
    padding: 2%;
  }

  .intro p {
    width: 100%;
    font-size: 12px;
  }

  .tab h2 {
    font-size: 18px;
  }

  .intro img {
    width: 120px;
    height: 120px;
  }

  /* Footer CTA */
  .single-cta {
    text-align: center;
    margin-bottom: 2rem;
  }

  .footer-content .col-xl-4,
  .footer-content .col-lg-4,
  .footer-content .col-md-12 {
    margin-bottom: 2.5rem;
  }

  /* Copyright Area */
  .copyright-area {
    padding: 1.5rem 0.75rem;
  }

  .copyright-area .container {
    padding: 0 0.75rem;
  }

  .copyright-area .row {
    flex-direction: column;
    text-align: center;
    margin: 0;
  }

  .copyright-area .col-xl-6,
  .copyright-area .col-lg-6,
  .copyright-area .col-md-12 {
    width: 100%;
    padding: 0;
  }

  .copyright-text {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
  }

  .copyright-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    line-height: 1.8;
  }

  .copyright-separator {
    display: none;
  }

  .copyright-year,
  .copyright-rights,
  .sds-name {
    display: block;
    margin: 0;
  }

  /* Footer Menu */
  .footer-menu {
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  .footer-menu nav {
    width: 100%;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .footer-nav-item {
    width: 100%;
    max-width: 280px;
    list-style: none;
    display: flex;
    justify-content: center;
  }

  .footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .footer-link:hover,
  .footer-link:active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .footer-link span {
    font-size: 0.9rem;
  }

  .footer-link-icon {
    font-size: 0.85rem;
  }
}

/* Mobile muy pequeño (max-width: 360px) - DEBE IR DESPUÉS de 576px */
@media screen and (max-width: 360px) {
  .copyright-area {
    padding: 1.25rem 0.5rem;
  }

  .copyright-content {
    font-size: 0.7rem;
    gap: 0.4rem;
  }

  .footer-link {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .footer-nav-item {
    max-width: 240px;
  }
}

/* Small Devices, Tablets (577px - 767px) */
@media screen and (min-width: 577px) and (max-width: 767px) {
  .menu-toggle {
    display: block;
    position: absolute;
    top: 2.5rem;
    right: 1.5rem;
    z-index: 1000;
  }

  .sds-title {
    margin-top: 0.5%;
    font-size: 5vw;
    letter-spacing: 4px;
  }

  .sds-title-box {
    border: none;
  }

  .sds-title-box:before {
    content: "";
    width: 100%;
    height: 6%;
    border-radius: 5%;
    background: linear-gradient(270deg, #ff7f50, #ffd900, #ff4500);
    background-size: 600% 600%;
    position: absolute;
    bottom: 0;
    animation: gradient 2.5s linear infinite;
    box-shadow: 0px 1px 15px var(--color-orange);
  }

  .sds-title-span {
    font-size: 2.5vw;
    transform: translateX(55%);
  }

  nav ul {
    display: none;
    position: absolute;
    top: 5rem;
    right: 0;
    background-color: var(--color-hamburguer);
    border: 2px solid var(--primary-dark);
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }

  .menu-toggle.active + nav ul {
    display: block;
  }

  nav ul li {
    margin: 1rem 0;
  }

  .style-logo {
    pointer-events: none;
  }

  .footer-section {
    text-align: left;
  }

  .single-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
  }

  .support-us-section .support-us-card {
    background: transparent;
    width: auto;
    box-shadow: none;
    margin-left: 10%;
  }

  .support-us-section .support-us-card:hover {
    box-shadow: none;
  }

  .card {
    width: 90%;
    padding: 2%;
  }

  .intro p {
    width: 100%;
  }

  /* Copyright responsive para tablets */
  .copyright-area {
    padding: 1.75rem 1rem;
  }

  .copyright-area .row {
    flex-direction: column;
    text-align: center;
  }

  .copyright-text {
    margin-bottom: 1.5rem;
  }

  .copyright-content {
    font-size: 0.85rem;
    gap: 0.65rem;
    justify-content: center;
  }

  .footer-menu {
    justify-content: center;
    width: 100%;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .footer-nav-item {
    width: auto;
    min-width: 140px;
    flex: 0 1 calc(50% - 0.5rem);
  }

  .footer-link {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
}

/****************************    701 a 753 px    ****************************/
/* Medium Devices, Desktops and Larger */
@media screen and (min-width: 701px) and (max-width: 753px) {
  .menu-toggle {
    display: none;
  }

  .sds-title {
    margin-top: 0.5%;
    font-size: 5vw;
    letter-spacing: 4px;
  }

  .sds-title-box {
    border: none;
  }

  .sds-title-box:before {
    content: "";
    width: 100%;
    height: 6%;
    border-radius: 5%;
    background: linear-gradient(270deg, #ff7f50, #ffd900, #ff4500);
    background-size: 600% 600%;
    position: absolute;
    bottom: 0;
    animation: gradient 2.5s linear infinite;
    box-shadow: 0px 1px 15px var(--color-orange);
  }

  .sds-title-span {
    font-size: 2.5vw;
    transform: translateX(55%);
  }

  nav ul {
    display: flex;
    position: static;
    background-color: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  nav ul li a {
    font-size: 14px;
  }

  .style-logo {
    pointer-events: none;
  }

  nav ul li {
    margin: 0 1rem;
  }

  .footer-section {
    text-align: left;
  }

  .single-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .single-cta i {
    margin-right: 1rem;
  }

  .footer-section .single-cta,
  .footer-section .footer-logo,
  .footer-section .footer-social-icon,
  .footer-section .footer-text,
  .footer-section .footer-widget-heading,
  .footer-section .subscribe-form {
    margin-bottom: 0;
  }

  .footer-section .row {
    display: flex;
    flex-wrap: wrap;
  }

  .footer-section .col-xl-4,
  .footer-section .col-lg-4,
  .footer-section .col-md-4,
  .footer-section .col-md-12 {
    width: auto;
    flex: 1;
  }

  .footer-section .footer-logo {
    margin-bottom: 2rem;
  }

  .footer-section .footer-social-icon {
    margin-bottom: 2rem;
  }

  .footer-section .footer-text {
    margin-bottom: 2rem;
  }

  .footer-section .footer-widget-heading {
    margin-bottom: 1rem;
  }

  .footer-section .subscribe-form {
    display: flex;
    align-items: center;
  }

  .footer-section .subscribe-form form {
    display: flex;
    width: 100%;
  }

  .footer-section .subscribe-form input {
    flex: 1;
  }

  /* COPYRIGHT AREA - CORREGIDO */
  .copyright-area {
    padding: 1.75rem 1rem;
    /* NO usar display: flex aquí */
  }

  .copyright-area .container {
    width: 100%;
    padding: 0 1rem;
  }

  .copyright-area .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 0;
  }

  .copyright-area .col-xl-6,
  .copyright-area .col-lg-6,
  .copyright-area .col-md-12 {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .copyright-text {
    margin-bottom: 1.5rem;
    width: 100%;
  }

  .copyright-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.85rem;
    width: 100%;
  }

  span.sds-name {
    position: relative;
    display: inline-block;
    margin: 0;
  }

  /* FOOTER MENU - ASEGURAR VISIBILIDAD */
  .footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
    padding: 0;
  }

  .footer-menu nav {
    display: block;
    width: 100%;
  }

  .footer-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .footer-nav-item {
    display: flex;
    list-style: none;
    margin: 0;
  }

  .footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    font-size: 0.85rem;
    min-width: 110px;
    white-space: nowrap;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .footer-link:hover,
  .footer-link:active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .footer-link span {
    display: inline-block;
    font-size: 0.85rem;
  }

  .footer-link-icon {
    display: inline-block;
    font-size: 0.75rem;
  }

  .style-logo .logo {
    width: 55%;
    height: auto;
  }

  .support-us-section .support-us-card {
    background: transparent;
    width: auto;
    box-shadow: none;
    margin-left: 10%;
  }

  .support-us-section .support-us-card:hover {
    box-shadow: none;
  }

  .card {
    width: 80%;
    padding: 2%;
  }

  .intro p {
    width: 100%;
  }
}

/* Medium Devices (754px - 851px) */
@media screen and (min-width: 754px) and (max-width: 851px) {
  .menu-toggle {
    display: none;
  }

  .sds-title {
    margin-top: 0.5%;
    font-size: 5vw;
    letter-spacing: 4px;
  }

  .sds-title-box {
    border: none;
  }

  .sds-title-box:before {
    content: "";
    width: 100%;
    height: 6%;
    border-radius: 5%;
    background: linear-gradient(270deg, #ff7f50, #ffd900, #ff4500);
    background-size: 600% 600%;
    position: absolute;
    bottom: 0;
    animation: gradient 2.5s linear infinite;
    box-shadow: 0px 1px 15px var(--color-orange);
  }

  .sds-title-span {
    font-size: 2.5vw;
    transform: translateX(55%);
  }

  nav ul {
    display: flex;
    position: static;
    background-color: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  nav ul li a {
    font-size: 14px;
  }

  .style-logo {
    pointer-events: none;
  }

  nav ul li {
    margin: 0 1rem;
  }

  .single-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .single-cta i {
    margin-right: 1rem;
  }

  .style-logo .logo {
    width: 70%;
    height: auto;
  }

  .support-us-section .support-us-card {
    background: transparent;
    width: auto;
    box-shadow: none;
    margin-left: 5%;
  }

  .support-us-section .support-us-card:hover {
    box-shadow: none;
  }

  .card {
    width: 80%;
    padding: 2%;
  }

  .intro p {
    width: 100%;
  }

  .copyright-area {
    padding: 1.75rem 1rem;
  }

  .copyright-area .row {
    flex-direction: column;
    text-align: center;
  }

  .copyright-text {
    margin-bottom: 1.25rem;
  }

  .copyright-content {
    font-size: 0.875rem;
    gap: 0.7rem;
  }

  .footer-menu {
    justify-content: center;
    width: 100%;
  }

  .footer-nav {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  .footer-link {
    padding: 0.55rem 0.75rem;
    font-size: 0.875rem;
  }
}

/* Medium-Large Devices (852px - 991px) */
@media screen and (min-width: 852px) and (max-width: 991px) {
  .menu-toggle {
    display: none;
  }

  .sds-title {
    margin-top: 0.5%;
    font-size: 5vw;
    letter-spacing: 4px;
  }

  .sds-title-box {
    border: none;
  }

  .sds-title-box:before {
    content: "";
    width: 100%;
    height: 6%;
    border-radius: 5%;
    background: linear-gradient(270deg, #ff7f50, #ffd900, #ff4500);
    background-size: 600% 600%;
    position: absolute;
    bottom: 0;
    animation: gradient 2.5s linear infinite;
    box-shadow: 0px 1px 15px var(--color-orange);
  }

  .sds-title-span {
    font-size: 2.5vw;
    transform: translateX(55%);
  }

  nav ul {
    display: flex;
    position: static;
    background-color: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .style-logo {
    pointer-events: none;
  }

  nav ul li {
    margin: 0 1rem;
  }

  .single-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .single-cta i {
    margin-right: 1rem;
  }

  .copyright-area {
    padding: 1.75rem 0;
  }

  .copyright-content {
    font-size: 0.9rem;
    gap: 0.75rem;
  }

  .footer-nav {
    gap: 1.5rem;
  }

  .footer-link {
    padding: 0.4rem 0.65rem;
    font-size: 0.875rem;
  }

  .support-us-section .support-us-card {
    background: transparent;
    width: auto;
    box-shadow: none;
  }

  .support-us-section .support-us-card:hover {
    box-shadow: none;
  }
}

/* Large Devices (992px - 1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
  .section-team .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .section-team .single-person {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 250px;
    max-width: calc(33.333% - 20px);
    margin: 10px;
    box-sizing: border-box;
  }

  .copyright-area {
    padding: 1.5rem 0;
  }

  .copyright-content {
    font-size: 0.85rem;
    gap: 0.5rem;
    justify-content: flex-start;
  }

  .footer-nav {
    gap: 1rem;
  }

  .footer-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }
}

/* Tablets (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .copyright-area .row {
    flex-direction: column;
    text-align: center;
  }

  .copyright-text {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .footer-menu {
    justify-content: center;
    width: 100%;
  }

  .footer-nav {
    justify-content: center;
    gap: 1rem;
  }

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

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */

/* High contrast mode support */
@media (prefers-contrast: high) {
  .copyright-content {
    color: var(--color-white);
  }

  .footer-link {
    color: var(--color-white);
    border-color: var(--color-white);
  }

  .footer-link:hover,
  .footer-link:focus {
    background: var(--color-white);
    color: var(--primary-dark);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .sds-name,
  .footer-link {
    transition: none;
  }

  .sds-name:hover,
  .footer-link:hover {
    transform: none;
  }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .copyright-area {
    background: linear-gradient(
      135deg,
      rgba(20, 20, 20, 0.95) 0%,
      rgba(30, 30, 30, 0.9) 100%
    );
  }
}

@media screen and (max-width: 700px) {
  .copyright-area .footer-menu,
  .copyright-area .footer-menu nav,
  .copyright-area .footer-nav {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
    border: none;
    overflow: visible;
    position: static;
  }
  .copyright-area .footer-nav {
    list-style: none;
    overflow: visible;
    padding: 0;
    margin: 0;
  }
  .copyright-area .footer-nav-item {
    display: block;
    width: 92vw;
    max-width: 320px;
    margin: 0.5rem auto;
    text-align: center;
    background: rgba(20, 20, 20, 0.13);
    border-radius: 9px;
    border: 1.5px solid #ff5e14;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
    position: static;
    overflow: visible;
  }
  .copyright-area .footer-link {
    display: block;
    width: 100%;
    padding: 1rem 0.5rem;
    font-size: 1rem;
    color: #fafafa;
    font-family: var(--secondary-font, inherit);
    font-weight: 500;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    text-decoration: none;
    margin: 0;
    position: static;
    overflow: visible;
  }
  .copyright-area .footer-link-icon {
    display: inline-block;
    margin-right: 0.5em;
    font-size: 1.15em;
    color: #ff5e14;
    vertical-align: middle;
  }
  .copyright-area .footer-link:hover,
  .copyright-area .footer-link:focus {
    color: #fff;
    background: #ff5e14;
    outline: none;
  }
  .copyright-area .footer-link:hover .footer-link-icon,
  .copyright-area .footer-link:focus .footer-link-icon {
    color: #fff;
    filter: drop-shadow(0 0 2px #ff5e14);
  }

  .footer-link,
  .footer-nav-item {
    border-bottom: none;
    box-shadow: none;
  }
  .footer-link:active,
  .footer-link:hover,
  .footer-link:focus {
    border-bottom: none;
    box-shadow: 0 2px 13px rgba(255, 75, 20, 0.13);
  }
  /* Si existe algún pseudo-elemento */
  .footer-link::after,
  .footer-link::before {
    border-bottom: none;
    background: none;
    box-shadow: none;
    display: none;
    opacity: 0;
    height: 0;
    content: none;
  }
}
