@charset "utf-8";

.nojs-wrapper {
    max-width: 800px;
    margin: 20px auto 20px auto;   /* ← margen inferior aumentado */
    padding: 20px 25px 100px 25px;
    background: #233;
    color: #fff;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    line-height: 1.5;
}

.nojs-wrapper h1,
.nojs-wrapper h2 {
    color: #ffcc66;
    margin-bottom: 10px;
}

.nojs-wrapper ul {
    text-align: left;
    margin: 20px auto;
    max-width: 500px;
}





/* ------------- */

html {
	height:100%;
	background:#366;
}
body {
	height:100%;
	font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
	margin:0;
}
#zoneMiddle{
    position:absolute;
    top:0;
    bottom:60px;
    left:0;
    right:300px;
    overflow:hidden;
    /* -------- */
    user-select: none;
	-webkit-user-select: none;
}

#zoneMiddle2{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    width:300px;
	overflow:hidden;
    z-index:10;
}

#zoneBottom{
    position:fixed;
    bottom:0;
    width:100%;
    height:60px;
    overflow:hidden;
}
/* ------------------------------- FOOTER ----------------------------------- */
	
#footer {
    position:relative;
    width:100%;
    height:100%;
    background-color:#333;
    font-family:Helvetica, Verdana, Arial, sans-serif;
    font-size:14px;
    color:#FFF;
}
#footer a:link,
#footer a:visited,
#footer a:active {
    color: #FFF;
    text-decoration: none;
}
#footer a:hover{
    color:#FFF;
    text-decoration:underline;
}

#footer .footerLine{
	position:relative;
	clear:both;
	margin:2px;
	width:100%;
	height:30px;
	max-height:30px;
	overflow:hidden;
	white-space:nowrap;
}


#footer #zone1{
	position:relative;
	float:left;
	width:330px;
	min-width:330px;
	text-align:center;
	margin-top:4px;
}

#footer #zone1 img{
	width:150px;
	height:auto;
}

#footer #zone2{
    position:relative;
	float:left;
	width:300px;
	text-align:center;
	margin-top:4px;
}

#footer #zone2 img{
	width:25px;
    height:25px;
	margin:0 4px;
}

#footer #zone3{
    position:relative;
	float:left;
	width:320px;
	text-align:center;
	margin-top:2px;
}

#footer #zone4{
	position:relative;
	float:left;
	width:480px;
}

#footer .badgeButton{
    margin:3px;
}
/* --------------------------------------------------- */

#mobileContent{
	display:none;
	width:100%;
	text-align:center;
	font-weight:bold;
	color:#FFF;
	margin:0;
	position:absolute;
	top:50%;
	-ms-transform:translateY(-50%);
	transform:translateY(-50%);
}
#mobileContent #title{
	width:100%;
	margin-bottom:6px;
	font-size:22px;
}
#mobileContent img{
	width:100%;
	max-width:220px;
	height:auto;
}

@media only screen and (max-width:700px)  {
	#zoneMiddle{
		right:0;
		bottom:120px;
		width:100%;
	}
	#zoneMiddle2{
		display:none;
	}
	#zoneBottom{
		height:120px;
	}
	#footer #zone1,#footer #zone2,#footer #zone3{
		width:100%;
	}
}

/* Modal */

.divOverlay {
	display:none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.divModal {
	display:none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	width:80%;
	max-width:80%;
	max-height:80%;
	z-index: 2;
}

.content {
	padding: 10px;
	margin: 10px;
	overflow:auto;
	max-height:400px;
}

.content h2 {
	margin-top: 30px;
    font-size: 20px;
}

.divModal .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background: #699;
	border-radius: 6px;
}

.divModal .title h2 {
    margin: 0;
    font-size: 20px;
	color:#FFF;
}

.close-x {
    cursor: pointer;
    font-size: 20px;
    color: #FFF;
}
