
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
    --verde: #009d46;
	--verdeClaro: #e8f5e7;
	--gris:#CCC;
}

html{
	font-size: 16px;
}

body{ 
	font-size: 1rem;
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
}


#header{
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: var(--verde);
}

#sectionPaso1 h1, .tituloPaso{
	font-size: 1.4rem;
	font-weight: 700;
	text-align: center;
}


.cuadroPaso1{
	background-color: var(--verdeClaro);
	border: 1px solid var(--gris);
	padding: 25px;
	cursor: pointer;
	margin-top:2rem;
	text-align:center; 
}

#sectionPaso1 {
   position: absolute;
    top: 80px;
    width: 100%;
	z-index: 999999;
}

#titulo{
	margin-bottom: 2rem;
}

.cuadroPaso, .cuadroPaso2,.cuadroPaso3,.cuadroPaso4,.cuadroPaso5,.cuadroPaso6,.cuadroPaso7{
	/*margin-bottom: 1rem;*/
}


.opacidad {
    opacity: 0 !important; /* Hidden */
}

.opacidad2 {
	transition: opacity 0.5s ease; /* Smooth transition */
    opacity: 0 !important; /* Hidden */
}

.visible {
    opacity: 1; /* Fully visible */
}

.oculto2 {
    opacity: 0; /* Hidden */
    transition: opacity 0.5s ease;
}

.visible2 {
    opacity: 1 !important; /* Fully visible */
    transition: opacity 1s ease; /* Smooth transition */
}


.oculto {
    display: none !important; /* Remove from the flow */
}

#sectionPaso,#sectionPaso2,#sectionPaso3,#sectionPaso4,#sectionPaso5,#sectionPaso6,#sectionPaso7{
	text-align: center;
	margin-left: 5%;
	margin-right: 5%;
}

#paso,#paso2, #paso3, #paso4, #paso5, #paso6, #paso7{
		background-color: var(--verdeClaro);
	border: 1px solid var(--gris);
	border-bottom: 0;
	padding: 25px;
	box-shadow: 0 0px 3px var(--verde);
	padding-bottom: 5px;

}

#opcionesPaso{
		background-color: var(--verdeClaro);
	border: 1px solid var(--gris);
	border-top: 0;
	padding: 25px;
	    box-shadow: 0 0px 3px var(--verde);
	padding-top: 5px;
	

}

input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}

label {
    display: inline-block;
    width: fit-content;
	min-width: 50px;;
    border: 1px solid var(--verde);
    background-color: #FFF;
    padding: 10px 6px 7px 6px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    border-radius: .3rem;
    box-shadow: 0 2px 4px #000;
    position: relative;
    transition: all .3s ease !important;
	text-align: center;
	margin-left:0.5rem;
	margin-right:0.5rem;
    top: 0;
	margin-top:15px;
}

input[type="radio"]:checked+label {
    background-color: var(--verde);
    color: white;
}




.listadoMigas li {
    background-image: url(../images/flecha.png);
    font-size: 1rem;
    margin-bottom: 15px;
    background-repeat: no-repeat;
    background-position: 0 2px;
    padding-left: 30px;
    background-size: 20px;
}

.listadoMigas {
    list-style-type: none;
    margin-top: 25px;
}

.left-position {
  transform: translateX(-100%); /* Move 100% to the left */
  transition: transform 0.5s ease; /* Transition effect with a duration of 0.5 seconds and an ease timing function */
	position: absolute;
	width: 100%;
}

.return-position {
  transform: translateX(0); /* Move back to the original position */
  transition: transform 0.5s ease-in-out;
}


.fade-in{
	opacity: 1;
	transition: opacity 700ms ease;
}

.fade-out{
	opacity: 0;
	transition: opacity 700ms ease;
}


#producto h1 {
    font-size: 1rem;
    text-transform: none;
    color: #444444;
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    border-bottom: 1px solid #434343;
    line-height: 1.33333;
}

#producto h2 {
    font-size: 1.5rem;
    /* border-bottom: 1px solid #434343; */
}

#producto p {
    font-size: 0.9rem;
    margin-top: 5px;
}

.btnMasInfo {
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    border: 1px solid var(--verde);
    padding: 5px 20px 5px 20px !important;
    font-weight: 400 !important;
    background-color: #FFF;
}

.btnMasInfo:hover {
    color: #FFF !important;
	background-color:  var(--verde) !important;
}


#splash{
	    display: grid;
    /* display: none; */
    /* flex-direction: column; */
    place-items: center;
    position: absolute;
    top: 0;
    z-index: 200;
    width: 100vw;
    height: 100%;
    background: var(--verdeClaro);
    /* background: var(--headerBG); */
    /* background: linear-gradient(45deg, #e52a2aff, rgb(255, 161, 106)); */
    /* background: linear-gradient(45deg, #e52a2aff, #e52a2aff); */
    transition: 3s;
	z-index: 99999999999999;
}



#splashContent{
    display: flex;
    /* display: none; */
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    top: 0;
    z-index: 200;
    width: min(100vw, 600px);
    height: 100%;

}
