:root {
  --primary-color: #05caf2;
  --secondary-color: #00e6c3;
  --dark-blue: #16233f;
  --light-blue: rgba(5, 202, 242, 0.1);
  --text-color: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.8);
  --gradient-primary: linear-gradient(135deg, #05caf2, #1093B1);
  --gradient-secondary: linear-gradient(135deg, #00e6c3, #05caf2);
  --card-bg: rgba(255, 255, 255, 0.05);
  --card-border: rgba(255, 255, 255, 0.1);
  --transition: all 0.3s ease;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: .5rem .5rem;
  background: linear-gradient(180deg, rgba(9, 14, 30, 0.89) 0%, rgba(9, 14, 30, 0.28) 100%);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar-brand {
  position: absolute;
  left: 1rem;
}

.poli {
  color: #ffffff;
  text-decoration: none;
}

.menu2 {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.info {
  padding-top: 1rem;
}

.menu {
  display: flex;
  justify-content: center;
  flex-grow: 1;
}

.navbar .nav-link {
  color: #ffffff;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar .nav-link:hover,
.navbar .nav-link:active {
  color: #05caf2;
}

.navbar .nav-item:last-child {
  margin-right: 0;
}




.overlap-3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #19294E;
  padding: 0 1rem;
  font-weight: 400;

}

.mail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.redes {
  display: flex;
  gap: 1rem;
}

.zt-mail-icons {
  width: 5vw;
  height: auto;
  max-width: 25px;
  min-width: 15px;
}

#mobile-current-lang {
  color: white;
}

.text-wrapper-18 {
  color: #ffffff;
  margin-top: .2rem;
  text-decoration: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(to bottom, rgba(5, 202, 242, 0.05), transparent);
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Sections */
.content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding-right: 2rem;
  padding-left: 2rem;
  padding-top: 4rem;
}

.case-section {
  margin-bottom: 5rem;
  animation: fadeInUp 0.8s ease-out;
}

.section-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.section-icon {
  font-size: 2rem;
  margin-right: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 0;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-content {
  color: var(--text-muted);
}

.section-intro {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* Findings List */
.findings-list {
  display: grid;
  gap: 1.5rem;
}

.finding-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.finding-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.finding-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.finding-item p {
  margin-top: .3rem;
  margin-bottom: 0rem;
}

/* Solution Cards */
.solution-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.solution-card {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  text-align: center;
  transition: var(--transition);
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solution-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

/* Training Highlights */
.training-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: var(--transition);
}

.highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.highlight-item i {
  font-size: 2rem;
  color: var(--primary-color);
}

.highlight-item p {
  margin-bottom: 0;
}

/* Results Section */
.results-section {
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.result-card {
  padding: 2rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  transition: var(--transition);
}

.result-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.result-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.result-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}


/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ajustes responsive de la Navbar */

/* Dispositivos pequeños: Móvil (hasta 720px) */
@media (max-width: 720px) {
  .navbar-collapse {
    display: flex;
    justify-content: center;
    width: 100%;
    background-color: rgba(9, 14, 30, 0.9);
    padding: 1rem;
  }

  .menu {
    display: none;
    /* Oculta el menú horizontal en dispositivos pequeños */
  }

  .menu2 {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .navbar-toggler {
    display: flex;
    /* Muestra el botón hamburguesa en pantallas pequeñas */
    align-items: center;
    border: none;
    background: none;
  }

  .nav-link {
    text-align: center;
    width: 100%;
    padding: 0.5rem 0;
  }
}


/* Tablets y Ordenadores Portátiles Medianos (hasta 1366px) */
@media (max-width: 1366px) {
  .menu2 {
    gap: 2rem;
  }

  .navbar .nav-link {
    font-size: 1rem;
  }
}

/* Ordenadores de Escritorio Grandes (1440px en adelante) */
@media (min-width: 1440px) {
  .menu2 {
    gap: 2.5rem;
  }

  .navbar .nav-link {
    font-size: 1rem;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto Condensed', sans-serif;
  background: linear-gradient(180deg, rgb(22, 35, 63) 0%, rgb(9, 14, 30) 100%);
  box-sizing: border-box;
  min-height: 100vh;
  padding-top: 58px;
  /* Espacio para el navbar */
}

.content {

  margin-left: 12rem;
  margin-right: 12rem;


}

.as {
  align-items: center;
}

.titulo {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  font-family: 'Roboto', sans-serif !important;
  font-weight: 700;
  font-size: 3rem;
  text-align: center;
  /* Condensed Light */
}

.head {
  background-color: rgb(21, 42, 87);
  background-color: linear-gradient(100deg, rgb(21, 42, 87) 0%, rgb(14, 90, 255));
  text-align: center;
}

.container {
  max-width: 130rem;
  margin: 0 auto;
  /* Centra horizontalmente */
  padding-top: 0;
  padding-bottom: 30px;
  padding-left: 0px;
  padding-right: 0px;
  box-shadow: none;
  border-radius: 8px;
}

.img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.imgOBJ {
  height: 600px;
  border-radius: 5px;

}

.section {
  padding-top: 1.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 1rem;
  background-color: #05cbf20c;
  border-radius: 1rem;
  border: 1px solid #05cbf29d;
  ;
  /* Borde ligero */
  margin-bottom: 27px;
  /* Espaciado entre secciones */

}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1.4rem;
  border-color: #ffffff;
  font-family: 'Roboto', sans-serif;
  /* Establecer la fuente a Roboto */
  font-weight: 700;
  /* Asegurarte de usar el peso bold */
}

.arrows {
  color: #05caf2;
  border-color: yellow;
  font-size: 2.3rem;
}

.section p {
  margin-bottom: 15px;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding-left: 2.5rem;
}

.subarrows {
  color: #05caf2;
  font-size: 1.3rem;
  padding-left: .8rem;
}

.section ul,
.section ol {
  margin: 10px 0 20px 20px;
}

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

.imp {
  color: #1c68f5;
  font-weight: 1900;
}

@media (max-width: 991px) {
  .overlap-3 {
		display: flex;
		justify-content: center;
	}
  .navbar {
    padding-bottom: 2rem;
    padding-top: 2rem;
  }
  .privacidad{
    display: none;
  }
  
  .privacidad-cel{
    display: flex;
    justify-content: center;
  }
  .nav-lang {
    display: flex;
    font-size: 1.6rem;
  }
  .principal {
    padding-right: 1rem;
    padding-left: 2rem;
  }

  .menu {
    display: none;
    /* Oculta el menú horizontal en dispositivos pequeños */
  }

  .menu2 {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
  }

  .container2 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .img {
    padding-bottom: 1rem;
  }

  .imgOBJ {
    width: 100%;
    height: auto;
    padding: 1rem;
  }

  .navbar-toggler {
    background: none;
    font-size: 2.5rem;
    color: #ffffff;
    position: absolute;
    right: 1rem;
    display: flex;
  }

  .nav-link {
    text-align: center;
    width: 100%;
    padding: 0.5rem 0;
  }

  .content {
    margin-left: 4rem;
    margin-right: 4rem;
  }

  .redes {
    display: none;
  }

  .info {
    padding-right: 0;
  }
}

@media (max-width: 768px) {

  header h1 {
    font-size: 1.5rem;
  }

  .content {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .section {
    padding: 1.5rem;
  }

  .section p {
    padding-left: 1.5rem;
  }

  .imgOBJ {
    width: 100%;
    height: auto;
    padding: 0.5rem;
  }
}

@media (max-width: 500px) {
  .imgOBJ {
    width: 100%;
    height: auto;
    padding: 0.25rem;
  }

  .section-icon {
    margin-right: 0;
  }

  .hero-section {
    padding: 2rem 0rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-header {
    gap: 1rem;
  }

  .section-header h2 {
    text-align: left;
  }
}