/*------------------------ LAYOUT ------------------------ */
body {
  margin:  0;
  padding: 0;
  height: 100vh;
  width:  100vw;
  overflow: hidden;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top; /* Asegura que se recorte desde abajo */
  background-repeat: no-repeat;
}

header{
	min-height:40vh;
}

main{
	height: 20vh;
	margin: 4vh auto;	
}

#steps {
	padding-left:60%;
	padding-top:   10vh;
	padding-right: 10vw;
	font-family: Arial, sans-serif;
	font-size: 1em;
	color: white;
	text-indent: -3em;
	text-align: justify;
	line-height: 1.2em;
}
.circulo {
	display: inline-block;
	border-radius: 50%;
	background: gold;
	color: black;
	text-align: center;
	text-indent: 0;
	padding: 0.5em;
	min-width: 1em;
	line-height: 1em;
	box-sizing: content-box;
	margin-right: 0.75em;
}
#steps div{
	margin-bottom: 0.8em
}

#legal{
	font-family: sans-serif;
	font-size:8pt;
	color: white;	
	text-align: justify;
	padding: 1vh 10%;
}

/* Imagen para orientación vertical (altura > anchura) */
@media (orientation: portrait) {
  .background { 
    background-image: url('../img/fondo-v3.jpg');
  }
  
  header{
  	font-size: 1.6vh;
  	min-height: 55vw;
  }
  
  #steps{
  	padding-top:   30vw;
  	padding-left:  20vw;
  	padding-right: 15vw;
  }
  #legal {
  	font-size: 7pt;
  	padding: 1vh 5%;
  }
}

/* Imagen para orientación horizontal (anchura > altura) */
@media (orientation: landscape) {
  .background {
    background-image: url('../img/fondo-h3.jpg');
  }
}

footer{
	text-align:center;
	color: white;
}


/*------------------------ FORM ------------------------ */
.row{
	text-align: center;	
	width: 70vh;		
	max-width: 90vw;
	padding: 0.8em;
	margin:  0 auto;
	line-height: 1.1;
	color: white;	
}
.resp {
	color: yellow;
}
label{
	font-family: Arial, sans-serif;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.2;
}

input[type="text"] {
  border: 0;
  border-radius: 0.5em; 
  padding: 0.6em 1em;
  margin: 0.2em;
  font-size: 1em;
  text-align: center;
  color: #0040a0;
}

input[type="text"]:disabled{
  background-color: #e0e0e0;
  padding: 4pt 10pt;
  color: #002040;
}

input[type="text"]:focus {
   box-shadow: 0.1em;
   outline: 0.1em solid rgba(255,128,0,0.3);
}

::placeholder, ::-ms-input-placeholder {
	color: orange;	
}
	
.narrow{
	padding: 0.3em;
}

.input-rdo{
	font-size:1em;
	box-sizing: border-box;
	width: 90pt;
}
.input-main{
	font-size:1.8em !important;
	font-weight: bold;
	box-sizing: border-box;
	width: 90pt;
}

button  {
  display: inline-block;
  padding: 0.6em 1em;
  font-size: 1em;
  background-color: orange;
  border: none; 
  border-radius: 0.5em; 
  color: #303030; 
  transition: background-color 0.3s ease; /* Smooth transition on hover */
}

button:hover {
  background-color: #d46a00; 
}


.links {
	padding: 0.8em;	
}
a {
	text-decoration: none;
	margin: 3vw;	
}

.hide{
	display:none;
}

.show{
	display:'';
}