@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  display: flex;
  flex-direction: column;
}
header.main-header {
  display: none;
}

.fondo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center; /* Centra horizontalmente todo el contenido */
  background-image: url(../img/fondo_farma.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100%;
}

.container {
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0 auto; /* Centra container si se establece ancho */
}

.row {
  margin: 0;
}

.columna-izquierda {
  padding: 0;
}

.contenedor-titular {
  text-align: center; /* Centra texto, imágenes y botón */
  /*padding: 50px 0;*/
}

.contenedor-titular h1,
.contenedor-titular h2 {
  display: block;
  width: 100%;
}

h1 {
  font-weight: 700;
  padding-bottom: 10px;
  color: #001c71;
}

h2 {
  color: #001c71;
  font-size: 19pt;
  font-weight: 900;
  padding: 10% 0 0 0 ;
}

.contenedor-imagenes-boton {
  text-align: center;
  margin-top: 20px;
}

.contenedor-imagenes-boton img {
  display: inline-block;
  margin: 10px;
  max-width: 90%;
}

.circle, .circle1 {
  display: inline-block; /* Elimina float y permite centrado */
  float: none;
  margin: 10px 5px;
  max-width: 90%;
}
.circle1 {
  width: 70%;
  height: auto;
  display: inline-block;
  margin: 10px 5px;
}


.btn-form {
  display: inline-block;
  margin-top: 15px;
  font-weight: 800;
  text-align: center;
  border: 1px solid transparent;
  padding: 15px 48px;
  font-size: 25px;
  border-radius: 15px;
  color: #fff;
  background-color: #ff0005;
  transition: 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-form:hover {
  background-color: #00ab47;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1500px) {
  .logo-plm {
    width: 600px;
    margin-left: 50px;
    float: right;
    padding-top: 40px;
    display: inherit;
  }
}

@media (max-width: 991px) {
  .logo-pie-plm, .logo-pie-pg { }
}

@media (max-width: 768px) {
  .fondo {
    background-image: url(../img/fondo-movil.png);
  }
.circle{
  display: none; /* Elimina float y permite centrado */
  float: none;
  margin: 10px 5px;
  max-width: 90%;
}


  .contenedor-titular {
    padding: 60px 0 30px 0;
  }

  

  h1 {
    font-size: 30pt;
  }

  h2 {
    font-size: 16pt;
  }
  }
