/* === VARIABLES === */
:root {
  --naranja-eventti: #EE5600;
  --turquesa-deep: #0C616D;
  --beige-soft: #EDDEBC;
}

/* === BASE === */
body {
  font-family: 'PT Serif', serif;
  margin: 0;
  background-color: var(--beige-soft);
  color: #111;
}

/* === NAVEGACIÓN === */
.nav-link {
  margin-left: 20px;
  color: #492800;
  font-weight: bold;
  text-decoration: none;
}

.nav-link:hover {
  color: var(--naranja-eventti) !important ;
}

/* === BOTONES === */
.btn-teal {
  background-color: var(--turquesa-deep) !important;
  color: white !important;
  border: none;
  border-radius: 20px;
  padding: 10px 24px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn-teal:hover {
  background-color: #074650 !important;
  color: white !important;
}

/* === COMPONENTES === */
.text-orange, .text-warning {
  color: var(--naranja-eventti) !important;
}

.icono-svg {
  width: 36px;
  height: 36px;
  fill: var(--naranja-eventti);
  transition: transform 0.3s ease;
}

.icono-svg:hover {
  transform: scale(1.1);
}

/* === SECCIONES === */
.sobre-nosotros {
  font-family: 'PT Serif', serif;
  text-align: left;
  padding: 80px 0;
}

.sobre-nosotros .titulo-seccion {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.sobre-nosotros p {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.sobre-nosotros .estadistica {
  font-size: 2.5rem;
  font-weight: bold;
  color: black;
}

.seccion-contacto {
  background:url('../img/fondos/contacto.png') no-repeat center center;
  background-size: cover;
  color: white;
  padding: 100px 0;
}

.seccion-contacto h3, .seccion-contacto h4, .seccion-contacto p {
  color: white;
}

.seccion-contacto h3 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.seccion-contacto h4 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.seccion-contacto p {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.seccion-contacto svg {
  width: 48px;
  height: 48px;
  fill: var(--naranja-eventti);
  margin-top: 20px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}

.seccion-contacto svg:hover {
  transform: scale(1.15);
}

.seccion-mision {
  background: url('../img/fondos/mision.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 100px 0;
  font-family: 'PT Serif', serif;
}

.seccion-mision h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  margin-bottom: 40px;
}

.seccion-mision p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 20px;
}

.mision-eventti {
  color: var(--naranja-eventti);
}

.mision-excelencia, .mision-compromiso, .mision-innovacion {
  color: var(--turquesa-deep);
}

.seccion-servicios h2 {
  font-weight: bold;
  margin-bottom: 20px;
}

.seccion-servicios p {
  font-size: 1.05rem;
}

/* === SERVICIOS === */
.servicio-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

/* === CLIENTES === */
.seccion-clientes {
  background: url('../img/fondos/clientes.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 60px 0;
}

.cliente-logo {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.cliente-logo:hover {
  transform: scale(1.05);
  filter: grayscale(0%);
  opacity: 1;
}

/* === SWIPER === */
.socios-swiper {
  padding: 30px 0;
}

.socios-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.socios-swiper .swiper-slide:hover {
  background-color: white;
}

.socios-swiper .swiper-slide img {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.socios-swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .bg-cuadro {
    max-width: 90%;
    min-height: auto;
    padding: 24px 20px;
  }

  .sobre-nosotros {
    padding: 60px 15px;
  }

  .sobre-nosotros .titulo-seccion {
    font-size: 2rem;
  }

  .sobre-nosotros p {
    font-size: 1rem;
  }

  .sobre-nosotros .estadistica {
    font-size: 2rem;
  }

  .seccion-mision {
    padding: 80px 20px;
    text-align: center;
    background-size: cover;
  }

  .seccion-contacto h3 {
    font-size: 1.8rem;
  }

  .seccion-contacto h4 {
    font-size: 1.5rem;
  }

  .seccion-contacto p {
    font-size: 1rem;
  }

  .seccion-contacto svg {
    width: 36px;
    height: 36px;
  }

  .btn-teal {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
  }

  .servicio-img {
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }

  .clientes-logos {
    flex-direction: column;
    gap: 20px;
  }

  .clientes-logos img {
    max-width: 80%;
    height: auto;
  }

  iframe {
    max-width: 100%;
    height: auto;
  }

  .logo-eventti {
    height: 120px;
  }

  .contenedor-cuadros {
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
  }

  .socios-swiper .swiper-slide img {
    max-width: 100px;
  }
}

/* === UTILIDADES === */
.subtitulo {
  font-size: 1.5rem;
  color: var(--naranja-eventti);
  font-weight: 500;
}

.estadistica {
  font-size: 3rem;
  color: #000;
  font-family: 'PT Serif', serif;
}

.icono-estadistica {
  font-size: 3rem;
  color: var(--naranja-eventti);
  margin-bottom: 10px;
}

.text-eventti {
  color: var(--naranja-eventti) !important;
}
.bg-cuadro {
  background-color: var(--turquesa-deep);
  border-radius: 24px;
  padding: 40px 32px;
  width: 100%;
  max-width: 350px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
  text-align: center;
  color: white;
}

.bg-cuadro:hover {
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .bg-cuadro {
    max-width: 90%;
    min-height: auto;
    padding: 24px 20px;
  }
}
.cuadro-link {
  text-decoration: none;
  color: inherit;
}
.cuadro-link:hover {
  color: inherit;
  text-decoration: none;
}
header .d-flex.flex-wrap {
  justify-content: center;
  gap: 24px;
  padding: 20px;
}

@media (max-width: 576px) {
  .socios-swiper .swiper-slide {
    padding: 10px 10px;
    height: 100px;
  }

  .socios-swiper .swiper-slide img {
    max-width: 1000px;
    max-height: 600px;
  }
}