/* Variables */
:root {
  --primary-color: #003f5e;
  --secondary-color: #edb700;
  --third-color: #727272;
}
/* Variables end */

body {
  font-size: 16px;
  color: var(--third-color);
}

p {
  font-size: 16px;
  margin-bottom: 16px;
}

h1 {
  font-family: "Sofia Pro";
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
}

h2 {
  font-family: "Sofia Pro";
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  border-bottom: solid 5px var(--secondary-color);
  padding-bottom: 10px;
  margin-bottom: 15px;
}

h3 {
  text-align: center;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 5px;
}

.subtitle {
  color: var(--third-color);
  font-weight: 700;
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 30px;
}

.p-0 {
  padding: 0;
}

.text-primary {
  color: var(--primary-color);
}

.text-secondary {
  color: var(--secondary-color);
}

.text-third {
  color: var(--third-color);
}

.cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: white !important;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--secondary-color);
  color: var(--primary-color) !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* Navbar */
.navbar {
  border-right: none;
}
/* Navbar end */

/* Bienvenidos */
.bienvenidos {
  margin: 60px auto;
}

.bienvenidos .content {
  padding: 60px 30px;
  background: var(--secondary-color);
  border-radius: 10px;
}

.bienvenidos h1 {
  margin-bottom: 30px;
}

.bienvenidos h4 {
  color: white;
}
/* Bienvenidos end */

/* Aniversarios */
.aniversarios {
  margin-bottom: 60px;
}

.aniversarios .content {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.aniversarios .col-md-3:last-child .content {
  margin-bottom: 0;
}

.aniversarios .content:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

.aniversarios .content p {
  margin-bottom: 0;
}
/* Aniversarios end */

/* Aniversarios de Miembros */
.anivMiembros {
  margin-bottom: 60px;
}

.anivMiembros table {
  border: none;
  margin: 0 auto;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.anivMiembros thead th {
  background: var(--primary-color);
  color: white;
  padding: 15px !important;
  text-align: left;
  font-weight: 700 !important;
}

.anivMiembros td {
  padding: 12px 15px !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

/* Aniversarios de Miembros end */

/* Comunidad */
.comunidad {
  margin-bottom: 30px;
}

.comunidad .content {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  min-height: 162px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.comunidad .content:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}

.comunidad .min-height {
  min-height: 130px;
}
/* Comunidad end */

/* Testimonios */
.testimonios {
  margin-bottom: 60px;
}

.testimonios .parrafo {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: var(--primary-color);
}

.testimonios img {
  margin: 0 auto 30px auto;
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.8);
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -ms-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
}

.testimonios .col-md-4:last-child img {
  margin-bottom: 0;
}

.testimonios img:hover {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
}
/* Testimonios end */

/* Novedades */
.novedades {
  margin-bottom: 60px;
}

.novedades .beneficios {
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  transition: opacity 0.3s ease;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  opacity: 1;
  margin-bottom: 16px;
}

.novedades .beneficios:hover {
  opacity: 0.8;
}

.novedades .content {
  text-align: center;
  margin-bottom: 16px;
}

.novedades .content a {
  margin-bottom: 5px;
}

.novedades p {
  margin-bottom: 16px;
}

.novedades p:last-child {
  margin-bottom: 0;
}

.novedades .content p {
  font-size: 14px;
  margin-bottom: 0;
}
/* Novedades end */

/* Directorio */
.directorio {
  margin-bottom: 60px;
}

.directorio img {
  margin-bottom: 16px;
}

.directorio .content {
  margin-top: 30px;
  text-align: center;
}
/* Directorio end */

/* My Vistage */
.myVistage {
  margin-bottom: 60px;
}

.myVistage img {
  margin-bottom: 16px;
}

.myVistage .content {
  text-align: center;
}
/* My Vistage end */

/* Expositores */
.expositores {
  margin-bottom: 60px;
}

.expositores img {
  margin-bottom: 16px;
}

.expositores .content {
  text-align: center;
}

.expositores .content a {
  margin-bottom: 5px;
}

.expositores .content p {
  margin-bottom: 0;
}
/* Expositores end */

/* Vistage en la prensa */
.vistageEnLaPrensa {
  margin-bottom: 60px;
}

.vistageEnLaPrensa img {
  margin-bottom: 5px;
}

.vistageEnLaPrensa .fuente {
  font-size: 14px;
  color: var(--primary-color);
}

.vistageEnLaPrensa .content {
  text-align: center;
}
/* Vistage en la prensa end */

/* Eventos */
.eventos {
  margin-bottom: 60px;
}

.eventos .eventCard {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.eventos .eventContent {
  padding: 16px;
}

.eventos .eventContent h3 {
  margin-bottom: 10px;
}

.eventos .eventContent h4 {
  margin-bottom: 5px;
  font-weight: 700;
}

.eventos .eventContent p span {
  font-weight: 700;
}

.eventos .eventContent p:last-child {
  margin-bottom: 0;
}

.eventos .content {
  text-align: center;
  margin-bottom: 30px;
}
/* Eventos end */

/* MEDIA QUERIES */
@media (min-width: 576px) {
  /* Comunidad */
  .comunidad .content {
    min-height: 190px;
  }
  /* Comunidad end */

  /* Testimonios */
  .testimonios img {
    max-width: 400px;
  }
  /* Testimonios end */
}

@media (min-width: 768px) {
  h2 {
    font-size: 36px;
  }

  .subtitle {
    font-size: 2rem;
  }

  /* Bienvenidos */
  .bienvenidos h4 {
    font-size: 20px;
    font-weight: 700;
    max-width: 500px;
    margin: auto;
  }
  /* Bienvenidos end */
}

@media (min-width: 992px) {
  h3 {
    text-align: left;
  }

  /* Testimonios */
  .testimonios img {
    max-width: 100%;
    margin-bottom: 0;
  }
  /* Testimonios end */

  /* Novedades */
  .novedades .content {
    margin-bottom: 0;
    width: 100%;
  }

  .novedades img {
    margin-bottom: 0;
  }

  .novedades .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 392px;
  }
  /* Novedades end */

  /* Directorio */
  .directorio img {
    margin-bottom: 0;
  }

  .directorio .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 190px;
  }

  .directorio .content {
    margin-top: 0;
    width: 100%;
  }
  /* Directorio end */

  /* My Vistage */
  .myVistage img {
    margin-bottom: 0;
  }

  .myVistage .content {
    margin-bottom: 0;
    width: 100%;
  }

  .myVistage .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 292px;
  }
  /* My Vistage end */

  /* Expositores */
  .expositores img {
    margin-bottom: 0;
  }

  .expositores .content {
    margin-bottom: 0;
    width: 100%;
  }

  .expositores .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 188px;
  }
  /* Expositores end */

  /* Vistage en la prensa */

  .vistageEnLaPrensa img {
    margin-bottom: 0;
  }

  .vistageEnLaPrensa .content {
    margin-bottom: 0;
    width: 100%;
  }

  .vistageEnLaPrensa .col-md-6 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 302px;
  }
  /* Vistage en la prensa end */

  /* Eventos */
  .eventos img {
    height: 270px;
    object-fit: cover;
    overflow: hidden;
  }
  /* Eventos end */
}

@media (min-width: 1200px) {
  h1 {
    font-size: 46px;
    font-weight: 700;
  }

  h2 {
    font-size: 40px;
  }

  /* Bienvenidos */
  .bienvenidos h4 {
    font-size: 26px;
    max-width: 700px;
  }
  /* Bienvenidos end */

  /* Testimonios */

  .testimonios .parrafo {
    font-size: 20px;
  }

  /* Aniversarios */
  .aniversarios .content p {
    font-size: 18px;
  }
  /* Aniversarios end */

  /* Novedades */
  .novedades .col-md-6 {
    min-height: 442px;
  }

  .novedades p {
    font-size: 18px;
  }
  /* Novedades end */

  /* Directorio */
  .directorio .col-md-6 {
    min-height: 228px;
  }

  .directorio p {
    font-size: 18px;
  }
  /* Directorio end */

  /* My Vistage */
  .myVistage .col-md-6 {
    min-height: 312px;
  }

  .myVistage p {
    font-size: 18px;
  }
  /* My Vistage end */

  /* Expositores */
  .expositores .col-md-6 {
    min-height: 228px;
  }

  .expositores p {
    font-size: 18px;
  }

  .expositores .content p {
    font-size: 14px;
  }
  /* Expositores end */

  /* Vistage en la prensa */
  .vistageEnLaPrensa p {
    font-size: 18px;
  }
  /* Vistage en la prensa end*/

  /* Eventos */
  .eventos img {
    height: 332px;
  }
  /* Eventos end */
}

@media (min-width: 1400px) {
}

@media (min-width: 1600px) {
}

@media (min-width: 1800px) {
}
