/* Estilo general y tipografía */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
}

/* Contenedor principal para centrar el contenido */


.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    line-height: 1.6;
}

.terminos-container h1,
.terminos-container h2 {
    color: #333;
}

.terminos-container p {
    margin-bottom: 1em;
}

/* Estilo del logo y el encabezado */
.logo-header {
    width: 100%;
    text-align: center;
    padding: 3rem 0 2rem;
}

.logo {
    width: 150px;
    height: auto;
}

/* Títulos y texto */
h1,
h2 {
    font-weight: 300;
    text-align: center;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 1.8rem;
    border-bottom: 2px solid #ccc;
    padding-bottom: 0.5rem;
    margin-top: 2rem;
}

.tagline {
    font-style: italic;
    text-align: center;
    margin-top: 0;
    color: #666;
}

p {
    text-align: justify;
}

/* Secciones de información */
.section-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.contact-item .icon {
    font-size: 1.5rem;
}


/* Listas y enlaces */
ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

li {
    margin-bottom: 0.5rem;
}

a {
    color: #333;
    text-decoration: underline;
    font-weight: 400;
}

a:hover {
    color: #000;
}
.form-embed {
  width: 100%;
  min-height: 900px;     /* altura cómoda en desktop */
  height: 80vh;          /* intenta ocupar 80% del alto de la ventana */
  max-height: 1200px;    /* evita alturas excesivas */
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

/* Ajustes para pantallas chicas */
@media (max-width: 768px) {
  .form-embed {
    min-height: 700px;   /* un poco más compacto en mobile */
    height: 75vh;
  }
}

/* Pie de página */
.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* si tenés varios elementos */
    padding: 1rem 0;
    color: #888;
    border-top: 1px solid #eee;
    margin-top: auto;
    text-align: center;
    /* por si también tenés texto */
}
