* {
	box-sizing: border-box
}
body {
	min-height: 100vh;
	max-width: 100%;

	margin: 0 auto;
	font-family: Arial Rounded MT Bold, Arial,sans-serif;
}
a {
    text-decoration: none;
    color: black;
}
header { 
    width: 100%;
    height: 130px;
    
    z-index: 10000;
    background: #ffffffff;
    display: flex;
    justify-content: space-around;
    padding: 20px;
}
#logoimg {
    width: 300px
}

#headerLeft {
    display: flex;
    align-items: center;
    
}

nav ul {
    display: flex;
    gap: 20px;
    list-style-type: none;
    
}
#main {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    position: relative;
    top: -200px;
    margin-bottom: -200px;
}
.botonSom {
    background-color: color(srgb 0.9043 0.2716 0.195);
    width: max-content;
    padding: 10px;
    color: #ffffff;
    border-radius: 30px;
    box-shadow: 0px 0px 5px rgb(208, 208, 208);
    font-size: 24px;
}
.boton {
    background-color: color(srgb 0.9043 0.2716 0.195);
    color: #ffffff;
    padding: 10px;
    border-radius: 15px;
    text-align: center;
}
#cuadroizq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0px 0px 5px rgb(190, 190, 190);
}
#cuadroizq h2 {
    margin: 0;
    text-align: center;
    color: color(srgb 0.3851 0.7657 0.7654);
}
#cuadroder img {
    border-radius: 30px;
    width: 600px;
}
.banner-image{
    width: 100%;
}
.banner {
    margin-bottom: -5px;
}
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    top: 20px;
}
.slider-container {
    width: 400px;
    margin: auto;
}
.slider {
    width: 100%;
    -webkit-appearance: none;  /* Override default CSS styles */
    appearance: none;
    width: 100%; /* Full-width */
    height: 5px; /* Specified height */
    background: #d3d3d3; /* Grey background */
    outline: none; /* Remove outline */
    opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
    -webkit-transition: .2s; /* 0.2 seconds transition on hover */
    transition: opacity .2s;
    
}
/* Mouse-over effects */
.slider:hover {
  opacity: 1; /* Fully shown on mouse-over */
}
/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.slider::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #e74532; /* Green background */
  cursor: pointer; /* Cursor on hover */
  border-radius: 50%;
}
.slider::-moz-range-thumb {
  width: 25px; /* Set a specific slider handle width */
  height: 25px; /* Slider handle height */
  background: #e74532; /* Green background */
  cursor: pointer; /* Cursor on hover */
  border-radius: 50%;
}
.slider-label {
    text-align: center;
    margin-top: 10px;
    font-size: 24px;
    font-weight: 700;
}
.pagoEstimado {
    background-color: color(srgb 0.234 0.72 0.72 / 0.84);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 10px;
    width: max-content;
    border-radius: 15px;
}
.pagoEstimado p {
    margin: 0;
}
#pagoQuincenal, #pagoTotal {
    font-size: 20px;
    padding: 4px;
}
#second {
    display: flex;
    justify-content: center;
    align-items: center;
    
}
#noBatalles {
    width: 500px;
    border-radius: 30px;
    overflow: hidden;
}
#noBatalles img {
    width: 100%;
}
.hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.visible {
    max-height: 200px; /* Ajusta este valor según la altura de tu contenido */
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.5s ease-in;
}

.clickable {
    cursor: pointer;
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#requisitos {
    margin: 20px;
    padding: 40px;
    box-shadow: 0px 0px 10px rgb(172, 172, 172);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#requisitos h2 {
    color: rgb(29, 29, 29);
}
.reqElement {
    background-color: rgb(237, 236, 236);
    padding: 5px 15px;
    border-radius: 10px;
}
.flecha {
    font-size: 35px;
    margin-top: -22px;
    color: rgb(87, 87, 87);
}
.text {
    color: rgb(68, 68, 68);
    
}
@media only screen and (max-width: 1024px) {
    
    header { 
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border: none;
        padding-bottom: 0;
        padding-top: 5px;
    }
    #main {
        position: static;
    }
    #headerLeft {
        display: flex;
        flex-direction: column;
    }
    #cuadroder img {
        width: 100%;
    }
    #cuadroizq {
        padding: 0px 20px;
        box-shadow: none;
        width: 100%;
    }
    #cuadroder img {
        border-radius: 0;
    }
    #logoimg {
        position: relative;
        right: 0px;
        top: 0px;
    }
    header nav {
        
        position: relative;
        bottom: 0px;
        margin-top: 0px;
    }
    
    #botones-login  {
        position: relative;
        top: 0px;
        right: 0px;
        float: center;
        
    }	
    #main {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 0;
        margin-bottom: -5px;    
    }
    ul {
        padding-inline-start: 0;
    }
    #logoimg {
        width: 300px
    }
    footer {
        margin-top: 0px !important;
    }
    .slider-container {
        width: 90%;
    }
    #noBatalles {
        width: 100%;
        border-radius: 0;
        margin-bottom: -5px;
    }
    #second {
        flex-direction: column;
    }
}