body {
    flex-direction: column;
    margin:0;
    background-color: #5a1a1a !important;
}
.banner {
    display: flex;
    background-color: #5a1a1a;
    padding: 0;
    margin: 0;
}

.banner-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 20px;
}

.izquierda img {
    max-width: 100%;
    height: auto;
}

.contenido {
    background-color: #fff;
    padding: 40px;
    max-width: 1100px;
    margin: 2rem auto;
    border-radius: 1px;
    box-shadow: none;
    align-items: center;
}
.contenido h2{
    font-family: 'MediumBold', sans-serif;
    font-size: 2.5rem;
    text-align: center;
}
.contenido h3{
    font-family: 'MediumBold', sans-serif;
    font-size: 1rem;
    text-align: right;
}
.contenido p{
    font-family: 'FuturaMedium', sans-serif;
    font-size: 1rem;
    text-align: justify;
}
.boton-form{
    text-align: center;
}
.contenido ul{
    font-family: 'FuturaMedium', sans-serif;
    font-size: 1rem;
    text-align: justify;
}
.contenido a{
    text-decoration: none;
    color: #CE1225;
}
.afi-imagen{
    text-align: center;
}
.lista-cuadrada {
    list-style-type: square;
    padding-left: 20px;
}
.btn-afiliacion {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 18px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
    font-family: 'MediumBold', sans-serif;
    background-color: #FFFFFF;
    color: #CE1225;
    font-size: 0.8rem;
}
.btn-afiliacion:hover {
    background-color: #CE1225;
    color: white;
}
/*Barra de navegacion*/
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    margin-top: 0;
    /**background-color: #FFFFFF;**/
    padding-top: 1rem;
    padding-bottom: 1rem;
    z-index: 1000;
}

.navbar-container {
    min-width: 1280px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.navbar-logo {
  height: 50px;
  gap: 2rem;
}

.navbar-texto {
  font-family: 'MediumBold', sans-serif;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: bold;
  color: white;
  /*gap: 1rem;*/
}

.navbar-menu {
  font-family: 'MediumBold', sans-serif;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 1rem;
}

.navbar-menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
  transition: color 0.3s;
}

.navbar-menu a:hover {
  color: #CE1225;
}

/*Fuentes*/
@font-face {
    font-family: 'FuturaMedium';
    src: url('/fonts/futura\ light\ bt.ttf') format('woff2');
}
@font-face{
    font-family: 'MediumBold';
    src: url('/fonts/Futura\ Heavy\ font.ttf') format('woff2');
}