/* CSS Variables */
:root {
  --primary-color: #05caf2;
  --primary-gradient: linear-gradient(45deg, #05caf2, #1093B1);
  --title-gradient: linear-gradient(45deg, #1093B1, #05caf2);
  --secondary-color: #00e6c3;
  --text-color: #ffffff;
  --text-color-muted: rgba(255, 255, 255, 0.8);
  --bg-dark: linear-gradient(180deg, rgb(22, 35, 63) 0%, rgb(9, 14, 30) 100%);
  --bg-transparent: rgba(9, 14, 30, 0.89);
  --transition-speed: 0.3s;
  --border-radius: 20px;
  --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);

  --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;
}

/* General reset and base styles */
.body {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgb(22, 35, 63) 0%, rgb(9, 14, 30) 100%);
  color: white;
  overflow-x: hidden;
  box-sizing: border-box;
  font-family: 'Roboto Condensed', sans-serif;
}
.poli{
  color: #ffffff;
  text-decoration: none;
}
/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Roboto', sans-serif;
  margin-bottom: 1rem;
  line-height: 1.2;
}

p,
li,
span {
  font-weight: 400;
  color: var(--text-color-muted);
}
.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;
}

.menu2 {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.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;
}


/* Main Content Styling */
.subpage-empresas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 4rem 2rem;
  margin-top: 60px;
}


.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin-top: 3rem;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding-top: 1.7rem;
  padding-left: 2rem;
  padding-right: 1.5rem;
  padding-bottom: 1.5rem;
  transition: transform var(--transition-speed);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.title_div {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-color);
  text-align: center;
  margin: 0rem 0 5rem 1.5rem;
  letter-spacing: 0.1rem;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 1s ease-out;
}

.text-wrapper-2,
.text-wrapper-7,
.text-wrapper-10,
.text-wrapper-13 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 2.7rem;
  color: white;
  font-weight: 600;
}

.text-wrapper-8,
.text-wrapper-11,
.text-wrapper-14 {
  font-size: 3rem;
  color: #f8f4f880;
}

.experience-clients-container {
  display: flex;
  justify-content: space-between;
  gap: 8rem;
  margin-top: 5rem;
  margin-bottom: 2rem;
  width: 100%;
  max-width: 1200px;
}

.text-wrapper-4,
.text-wrapper-5 {
  font-size: 3rem;
  font-weight: 500;
  color: #2ad6cad6;
  padding-left: 7rem;
}

.text-wrapper-6,
.text-wrapper-9,
.text-wrapper-12,
.text-wrapper-15 {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.5;
}

.text-wrapper-16 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1;
  margin: 0;
}

.text-wrapper-17 {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  color: #313131;
  margin: 0;
  transition: color 0.3s ease;
}

.text-wrapper-17:hover {
  color: #ffffff;
}

.text-wrapper-18 {
  color: #ffffff;
  margin-top: .2rem;
  text-decoration: none;

}

.min_titles {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  margin-top: 3rem;
  width: 100%;
  max-width: 1400px;
}

.overlap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2rem;

}

.info {
  padding-top: 1rem;
}


/* CTA Section */
.cta-section {
  padding-right: 2rem;
  padding-left: 2rem;
  padding-bottom: 6rem;
  padding-top: 2rem;
  background: radial-gradient(rgba(5, 202, 242, 0.15) 0%, transparent 70%);

}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.cta-button:hover {
  transform: translateY(-2px);
  color: var(--text-color);
  box-shadow: 0 8px 16px rgba(5, 202, 242, 0.2);
}

.cta-button i {
  transition: transform 0.3s ease;
}

.overlap-3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #19294E;
  padding: 0 1rem;
}
.footer{
  margin: 0;
  padding: 0;
}

.mail {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.text-wrapper-18 {
  color: #ffffff;
}


.redes {
  display: flex;
  gap: 1rem;
}

.zt-mail-icons {
  width: 5vw;
  height: auto;
  max-width: 25px;
  min-width: 15px;
}
.navbar .nav-link {
  font-size: 1rem;
}



@media (max-width: 1200px) {

  body {
    font-size: 1.5rem;
  }

  .menu2 {
    gap: 2.5rem;
  }

  .navbar .nav-link {
    font-size: 1rem;
  }

  .text-wrapper-4,
  .text-wrapper-5 {
    font-size: 2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    text-align: center;
  }

  .experience-clients-container {
    justify-content: center;
    gap: 12rem;
  }
}

@media (max-width: 991px) {
  .overlap-3 {
		display: flex;
		justify-content: center;
	}
  .experience-clients-container {
    gap: 4rem;
  }
  .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;
}

}

@media (max-width: 768px) {

  .redes {
    display: none;
  }

  .info {
    padding-right: 0;
  }

  .mail {
    font-size: 1rem;
  }

  .text-wrapper-18 {
    font-size: 1rem;
  }

  .zt-mail-icons {
    width: 8vw;
  }

  .div4 {
    margin-top: 4rem;
  }

  .div5 {
    margin-top: 1rem;
  }

  .div4,
  .div5 {
    flex-direction: column;
    gap: 2rem;

  }

  .div6,
  .div7,
  .div8,
  .div9 {
    width: 100%;
  }

  .rectangle {
    width: 90%;
  }

  .p_rec {
    flex-direction: column;
  }

  .text-wrapper-2,
  .text-wrapper-10,
  .text-wrapper-13,
  .text-wrapper-16 {
    font-size: 1.5rem;
  }

  h2,
  .text-wrapper-8,
  .text-wrapper-11,
  .text-wrapper-14 {
    font-size: 2.5rem;
  }

  .experience-clients-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-top: 3rem;
  }

  .subpage-empresas {
    padding-bottom: 1rem;
  }

  .text-wrapper-4,
  .text-wrapper-5 {
    padding-left: 0rem;
    padding-right: 0rem;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 2.5rem;
    /* Ajusta el tamaño de la fuente para pantallas pequeñas */
    margin: 0.5rem 0;
    /* Espacio entre elementos en columna */
  }

  .menu {
    display: none;
    /* Oculta el menú horizontal en dispositivos pequeños */
  }

  .menu2 {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nav-link {
    text-align: center;
    width: 100%;
    padding: 0.5rem 0;
  }

  .experience-clients-container {
    gap: 2rem;
  }

}

@media(max-width:660px) {
  .card h2 {
    font-size: 1.5rem;
  }

  .text-wrapper-6,
  .text-wrapper-9,
  .text-wrapper-12,
  .text-wrapper-15 {
    font-size: 1rem;
  }
  .title_div{
    font-size: 2.2rem;
    margin-left: 0;
    margin-bottom: 1rem;
  }
  .grid{
    grid-template-columns: 1fr;
  }
  .grid {
    gap: 1rem;
  }
}
