body {
    font-family: 'Roboto', sans-serif;
    background: #09090C;
}

h1.principal {
  font-size: 1em;
  font-family: revert;
  color: #fff;
  margin: 10px auto;
}

h1.principal a {
    color: #e1e1e1;
}

p{ margin:auto;}


/*  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
*/
section#paises-destacados {
  transition: transform 0.3s ease-in-out; /* Animar la escala */
  margin: auto;
}

@media (max-width: 320px) {
  section#paises-destacados .pais{
    width: 90%;
    margin: 5%;
    display: inline-grid;
  }
}

@media (min-width:320px) and (max-width: 650px) {
  section#paises-destacados .pais{
    width: 47%;
    margin: 1%;
    display: inline-grid;
  }
}

@media (min-width:650px) and (max-width: 1300px) {
  section#paises-destacados .pais{
    width: 22%;
    margin: 1%;
    display: inline-grid;
  }
}

@media (min-width:1300px) {
    section#paises-destacados {
        width: 1300px;
    }
  section#paises-destacados .pais{
    width: 300px;
    margin: 4px;
    display: inline-grid;
  }
}

.pais {
  max-width: 300px;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  margin: auto;
  transition: transform 0.3s ease-in-out; /* Animar la escala */
  height: 100%;
  vertical-align: top;
}

.pais:hover {
  transform: scale(1.05); /* Aumentar ligeramente el tamaño al pasar el mouse */
}

.pais a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 100%;
  color: #FFF;
}

.pais a .central {
  text-align: center;
  background-color: #00000080;
  height: 100px;
}

.pais a .central p {
    font-size: 12px
}

#separador {
  margin: 20px;
  text-align: left;
  font-weight: bold;
}

@media (max-width: 320px) {
    #otros-paises .otro_pais {
          font-size: 1em;
          width: 90%;
          margin: 10px;
    }
}

@media (min-width: 320px) and (max-width: 450px) {
    #otros-paises .otro_pais {
          font-size: 0.8em;
          width: 47%;
          margin: 1%;
    }
}

@media (min-width: 450px) {
    #otros-paises .otro_pais {
          font-size: 1em;
          width: 200px;
          margin: 10px;
    }
}

#otros-paises .otro_pais {
  display: inline-block;
  text-align: left;
  background-color: #e1e1e1;
  line-height: 20px;
  vertical-align: top;
  border-radius: 2px;
  transition: transform 0.3s ease-in-out;
}

#otros-paises .otro_pais:hover {
  transform: scale(1.05);
}

#otros-paises .otro_pais a {
  display: flex;
  color: #333;
  margin: 4px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  justify-content: left;
  height: 100%;
  line-height: 34px;
}

#otros-paises .otro_pais a:hover {
    color: #000;
}

#otros-paises .otro_pais a img {
  border-radius: 2px;
  margin-right: 4px;
}


#slogan {
  margin: 10px auto;
  max-width: 90%;
}

#slogan .arg_link {
  color: #999;
}

#slogan .logouno{

}

#slogan .logouno a {

}

#slogan .logouno a .logo_web {
    max-width: 100%;
}

.terminos{

}

.terminos .url_term{
    color: #666;
}


#acceso_paises_prim {
}

#acceso_paises_prim .region {
  display: inline-block;
  text-align: left;
  margin: 10px;
  text-decoration: underline;
  font-size: 1.2em;
  line-height: 16px;
  color: #FFF;
}

#acceso_paises_prim .region img {
  height: 20px;
  vertical-align: top;
  margin-right: 10px;
}

#acceso_paises_prim .region a {
    color: #FFF;
}

#acceso_paises_prim .esctruc {
  text-align: left;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  border-bottom: solid 1px #2d2d2d;
}

#acceso_paises_prim .esctruc .provincia {
  display: inline-table;
  margin: 10px;
  background: #464646;
  height: 30px;
  line-height: 30px;
  border-radius: 4px;
}

.provincia a {
  display: block;
  margin: 0;
  padding: 2px 12px;
  transition: transform 0.3s ease-in-out;
  color: hotpink;
  text-decoration: none;
}

.provincia a:hover {
  transform: scale(1.05);
  color: #FFF;
}





