:root {
  --primary-color: #007BFF;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: Verdana, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100vh;
}

.navbar {
  width: 100%;
  display: flex;                /* Usa flexbox */
  justify-content: space-between; /* Acomoda los elementos: uno a la izquierda y otro a la derecha */
  align-items: center;          /* Alinea los elementos verticalmente en el centro */
}

.nav-right {
  margin-right: 20px;
}

.flags {
  display: flex;
  gap: 10px;
}
.btn-flag {
  background-color: rgba(108, 108, 108, 0.2);
  padding: 3px;
  border-radius: 6px;
  border: 0;
}

.btn-flag img {
  margin-top: 2px;
}

.btn-flag:hover {
  background-color: rgba(108, 108, 108, .4);
}

.btn-flag.selected {
  background-color: var(--primary-color);
  padding: 4px;
}

.hero {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem;
  width: 100%;
}

.container {
  padding: 2rem;
  max-width: 1200px;
  width: 100%;
}

.columns {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  align-items: center;
  flex-wrap: wrap;
}

.column {
  padding: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Estilo de la columna izquierda */
.column.left {
  background-color: var(--primary-color);
  color: white;
  width: 150px; /* Ajustado a 150px */
  height: 150px; /* Altura igual al ancho para que sea un círculo */
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.column.left img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ajusta la imagen dentro del círculo sin distorsión */
}

.column.right {
  background-color: white;
  color: var(--primary-color);
  text-align: left;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta {
  margin: 0 0 3rem 0; /* Aumentamos el margen para mayor espacio debajo del botón */
}

.cta a {
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  display: inline-block;
}

.cta a:hover {
  background-color: #0056b3;
}

footer {
  padding: 1rem;
  background: #f4f4f4;
  width: 100%;
}

@media (max-width: 768px) {
  .columns {
      flex-direction: column;
      align-items: center;
  }

  .column {
      max-width: 90%;
  }

  .column.left {
      width: 150px; /* Mantiene el mismo tamaño en móviles */
      height: 150px; /* Mantiene la proporción de círculo */
  }

  .column.right {
      width: 90%;
  }
}