html,
body{
    margin:0;
    padding:0;
    overflow-x:hidden;
}

.seccion-contacto{
    margin:0;
    padding:0;
}

.intro h3{
   color:#35434C;
   font-family: montserrat;
	font-size:22px;
	text-align: left;
	margin-left:305px;
}


.intro h4{
   color:#35434C;
   font-family: montserrat;
	font-size:12px;
	text-align: right;
	margin-right:25px;
}

.intro p{
   color:#35434C;
   font-family: montserrat;
	text-align: justify;
	justify-content:center;
	margin-left:305px;
}

footer{
    margin-bottom:0;
}

.footer-inner{
    margin-bottom:0;
}

.indice-planest{
   background: linear-gradient(#e53257, #e9a3b0);
   text-align:center;
   margin: 0;
	margin-top: -10px;
	margin-bottom: -40px;
   padding: 70px 20px 80px;
   overflow: hidden;
}

.indice-planest h1{
    margin-top: 0;
	 color:#fff;
    font-family:Montserrat;
    font-size:48px;
    font-weight:700;
    margin-bottom:40px;
}

.indice-planest h2{
    color:#006B4B;
    font-family:Montserrat;
    font-size:58px;
    font-weight:700;
    margin-bottom:15px;
}

.indice-planest hr{
    width:80%;
    margin:0 auto 45px;
    border:1px solid rgba(255,255,255,.7);
}

.planest-card h4{
    color:#fff;
    font-family:Montserrat;
    font-size:22px;
    font-weight:600;
    text-align:center;
}

.planest-grid{
   width:92%;
   max-width:1400px;
   margin:auto;
   font-family:Montserrat;
   display:grid;
   grid-template-columns:repeat(4,1fr);
   gap:5px;
}

.planest-msg{
    max-width:1200px;
	 color:#fff;
    margin:auto;
    display:grid;
	 align-items:center;
    font-family:Montserrat !important;
	 grid-template-columns:repeat(1,1fr);
    gap:25px;
	 text-align:center;
    justify-items:center;
}

.planest-card1{
    background:#e9a3b0;
    border-radius:12px;
    padding:12px 15px;
    display:flex;
    align-items:center;
	 justify-content:center;
    text-decoration:none;
    transition:.25s;
}

.planest-card1:hover{
    transform:translateY(-3px);
    background:#e9a3b0;
}

.planest-card1 img{
   width:65%;
   display:block;
	margin-bottom:10px;
   transition:.25s;
}

.planest-card1:hover img{
   transform:scale(1.04);
}

.planest-card1 span{
    color:#fff;
    font-family:Montserrat;
    font-size:22px;
    font-weight:600;
    text-align:justify;
}

.planest-card{
    background:#e9a3b0;
    border-radius:12px;
    padding:12px 18px;
    display:flex;
    align-items:center;
    text-decoration:none;
    transition:.25s;
}

.planest-card span{
   text-align:justify !important;
   align-items:center;
   justify-content:center !important;
}

.planest-card:hover{
    transform:translateY(-3px);
    background:#e9a3b0;
}

.planest-card img{
    width:32px;
    margin-right:15px;
}

.planest-card span{
   color:#fff;
   font-family:Montserrat;
   font-size:22px;
   font-weight:600;
   text-align:center !important;
   justify-content:center !important;
}


.sidem-hero{
   margin-top:-80px !important;
   padding-top:0 !important;
	min-height:100vh;
   display:flex;
   flex-direction:column;
   background: linear-gradient(#e53257, #e9a3b0);
   overflow:hidden;
	justify-content:space-between;
}

/* Las 3 zonas */
.hero-top,
.hero-bottom{
   flex:0.3;
}

.hero-center{
   display:flex;
   flex-direction:column;
   align-items:center;
   text-align:center;
}

.hero-center img{
   width:100%;
   height:650px;          
   object-fit:cover;      
   object-position:center;
	display:block;
   border-radius:8px;
}

/* =========================================================
   TARJETAS GIRATORIAS
   ========================================================= */

.cards{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:30px 20px 50px;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
    justify-items:center;
}


/* TARJETA EXTERIOR */

.card{
    position:relative;
    width:280px;
    height:340px;
    perspective:1200px;
    background:transparent;
    border:none;
    border-radius:20px;
    padding:0;
    margin:0;
    overflow:visible;
    transition:transform .3s ease;
}

/* EFECTO AL PASAR EL MOUSE */

.card:hover{
    transform:translateY(-6px);
}

/* CONTENEDOR QUE GIRA */

.card-inner{
    position:relative;
    width:100%;
    height:100%;
    transition:transform .7s ease;
    transform-style:preserve-3d;
}

/* GIRO */

.card:hover .card-inner{
    transform:rotateY(180deg);
}

/* =========================================================
   CARAS
   ========================================================= */

.card-front,
.card-back{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    box-sizing:border-box;
    border-radius:20px;
    backface-visibility:hidden;
    -webkit-backface-visibility:hidden;
    overflow:hidden;
}


/* =========================================================
   FRENTE
   ========================================================= */

.card-front{
    background:#e9a3b0;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0;
}

/* IMAGEN DEL FRENTE */

.card-front img{
    width:100%;
    height:95%;
    object-fit:contain;
    object-position:center;
    display:block;
    border-radius:20px;
    transition:transform .4s ease;
}

/* pequeño zoom de la imagen */

.card:hover .card-front img{
    transform:scale(1.00);
}


/* =========================================================
   REVERSO
   ========================================================= */

.card-back{
    transform:rotateY(180deg);
    background:#e9a3b0;
    color:#fff;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    padding:30px 25px;
}


/* ICONO DEL REVERSO */

.card-back img{
    width:40px;
    height:40px;
    object-fit:contain;
    margin-bottom:20px;
}


/* TITULO / DESCRIPCIÓN */

.card-back h4{
    margin:0 0 12px;
    color:#fff;
    font-family:Montserrat;
    font-size:20px;
    font-weight:700;
    line-height:1.25;
}


/* TEXTO BREVE */

.card-back p{
    margin:0;
    color:#fff;
    font-family:Montserrat;
    font-size:14px;
    font-weight:400;
    line-height:1.5;
    max-width:220px;
}


/* BOTÓN / ENLACE DEL REVERSO */

.card-back a{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    width:100%;
    height:100%;
    color:#fff;
    text-decoration:none;
}

.footer-custom{
    background:#29284A;
    margin:20px 0 0;
    padding:25px 0;
    min-height:auto;
    max-height:none;
    height:auto;
}

.fb-icon img{
    width:24px;
    height:24px;
}

.logo-col img{
    width:130px;
    height:auto;
}

.privacidad-col{
    border-left:1px solid rgba(255,255,255,.25);
    padding-left:20px;
    margin-left:0;
}

.privacidad-col h4{
    margin:0 0 15px;
    text-align:center;
}

.privacidad-col div{
    text-align:center !important;
}

@media(max-width:992px){
   .grid-planest{
      grid-template-columns:repeat(2,1fr);
   }
}

@media(max-width:768px){

   .intro h3{
      margin-left:0;
      text-align:center;
   }

   .intro h4{
      margin-right:0;
      text-align:center;
   }

   .intro p{
      margin-left:0;
      width:95%;
      margin:20px auto;
      padding:0;
      text-align:justify;
   }

   .grid-planest{
      width:95%;
      margin:auto;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:10px;
   }

   .cardcon img{
      width:100%;
   }

}

@media(max-width:480px){

   .intro h3{
      margin-left:0;
      text-align:center;
   }

   .intro h4{
      margin-right:0;
      text-align:center;
   }

   .intro p{
      margin-left:0;
      width:95%;
      margin:20px auto;
      padding:0;
      text-align:justify;
   }

   .grid-planest{
      width:95%;
      margin:auto;
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:10px;
   }

   .cardcon img{
      width:100%;
   }

}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1200px){

    .cards{
        grid-template-columns:repeat(2, 280px);
        justify-content:center;
    }

}


/* =========================================================
   MÓVIL
   ========================================================= */

@media(max-width:650px){

    .cards{
        grid-template-columns:1fr;

        width:100%;
        padding:25px 15px 40px;
    }

    .card{
        width:280px;
        height:340px;
    }

}


/* =========================================================
   MÓVIL PEQUEÑO
   ========================================================= */

@media(max-width:360px){

    .card{
        width:250px;
        height:310px;
    }

    .card-back{
        padding:25px 20px;
    }

}
