/* Header morado estilo Axity */
.axity-header {
    background-color: #3C1053;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    width: 100%;
}

.right-content {
  display: flex;
  align-items: center;
  gap: 20px; /* reduce este valor para acercarlos más */
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a:hover {
  color: #FF9900;
}

.social-icons a {
  color: white;
  font-size: 20px;
  text-decoration: none;
}

.axity-header .nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-weight: normal;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
}

.nav-links .login-btn {
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid white;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.axity-header .nav-links a:hover {
    text-decoration: underline;
    background-color: white;
    color: #1C016B;
}

.logo img {
    height: 50px; /* Ajusta el tamaño del logo aquí */
}

.nav-links {
    display: flex;
    align-items: center;
}

/* Carousel */
.carousel-item img {
    height: 60vh;
    object-fit: cover;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 10px;
}

.presence-section {
  padding: 60px 30px;
  background-color: #f5f5f5;
  text-align: center;
}

.presence-subtitle {
  color: #a00060;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 1rem;
}

.presence-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3d005e;
}

.presence-title span {
  color: #3d005e;
}

.presence-container {
  max-width: 1200px;
  margin: 0 auto;
}

.presence-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.presence-item {
  position: relative;
  flex: 1 1 150px;
  max-width: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.presence-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.presence-item:hover img {
  transform: scale(1.05);
}

.overlay-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: white;
  font-weight: bold;
  font-size: 1.1rem;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .presence-row {
    flex-direction: column;
    align-items: center;
  }

  .presence-item {
    max-width: 80%;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }
}

.footer_web {
    margin-top: 50px;
    bottom:0;
    padding:20px calc(1.5rem / 2);
    position:absolute;
    right:0;
    text-align:center;
    color:var(--bs-footer-color);
    left:0;
    height:60px;
    background-color:var(--bs-footer-bg)
}
