:root {
    --pink-primary: #e06c9f;
    --pink-secondary: #f283b6;
    --background: #edbfb7;
    --green-primary: #6e9887;
    --green-secondary: #b5bfa1;
    --black-background88: #00000088;
    --black-background: #000000;
}

.bg-pink-primary{
    background-color: var(--pink-primary);
    transition: 0.5s;
}

.bg-pink-secondary{
    background-color: var(--pink-secondary);
}

.btn-pink-primary:hover{
    background-color: var(--pink-secondary);
}

html{
    background-color: var(--black-background);
    scroll-behavior: smooth;
}

/* body{
    margin: 10px auto 0 auto;
    padding: 0;
    width: 90%;
} */


/*-------------------Estilos header----------------------*/


.main-header{
    width: 100%;
    background: rgba(0,0,0,.85);
}

.logo{
    color: rgb(216, 43, 207);
    padding: 10px;
    font-family: 'Pacifico', cursive;
    font-weight: 100;
}

.main-header__contactInfo__phone{
    /* background: rgb(216, 43, 207); */
    color: white;
    margin: 0 auto;
    padding: 10px;
}

.main-header__contactInfo__address{
    padding: 10px;
    margin: 0;
    color: white;
}

.main-header [class*="icon-"]:before {
    position: relative;
    top:2px;
    right: 5px;
}

/*-------------------Estilos menu----------------------*/

.main-nav{
    width: 100%;
    position: sticky;
    top: 0px;
    z-index: 2000;
    padding: 10px;
    background: rgba(0,0,0,.85);
}
.icon-menu{
    display: block;
    color: white;
    border: 1px solid white;
    border-radius: 3px;
    width: 40px;
    height: 40px;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    font-size: 1.5em;
}

.social-icon{
    display: flex;
    justify-content: space-between;
}

.social-icon [class*="icon-"]{
    color: black;
    margin-left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3em;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
}

.social-icon__link{
    text-decoration: none;
}

.menu {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
    height: 0;
    overflow: hidden;
    transition: height .3s linear;
}

.menu__link{
    display: block;
    padding: 15px;
    color: white !important;
    text-decoration: none !important;
}

/* .menu__link:hover{
    /* background: rgb(216, 43, 207); */
    /* background-image: linear-gradient(to center, rgba(255,0,0,0), rgb(216, 43, 207)); */
/* } */ 

.nav-link:hover{
    background-image: radial-gradient(rgb(216, 43, 207) 40%, rgba(0,0,0,0)70%);
}

.nav-link {
    text-align: center;
    text-decoration: none;
    color: white;
    padding: 1rem 2rem !important;
}

.menu__link--select{
    background: rgb(216, 43, 207);
}





.mostrar{
    height: 196px;
}

.carousel-caption-background{
    width: 100%;
    left: 0;
    right: 0;
    background-color: var(--black-background88)
}

.card-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.scroll-margin-top{
    scroll-margin-top: 4rem;
}

.padding-t-section{
    padding-top: 4rem;
}

#map { height: 180px; }

/* CONTACTO */
.contact-box{
    border: 1px solid #f1f1f1;
    border-radius: 1rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 1.5rem;
    margin: 1rem;
}
.contact-text{
    margin: 1rem;
}

.circle-align{
    display: flex;
    justify-content: center;
    align-items: center;
}

.dot-big {
    height: 5rem;
    width: 5rem;
    background-color: var(--pink-secondary);
    border-radius: 50%;
    transition: 0.5s;
}
.contact-box:hover .dot-big{
    background-color: white;
}

.dot-medium {
    height: 4.5rem;
    width: 4.5rem;
    background-color: white;
    border-radius: 50%;
    transition: 0.5s;
}
.contact-box:hover .dot-medium{
    background-color: var(--pink-primary);
}

.dot-small {
    height: 4rem;
    width: 4rem;
    background-color: var(--pink-secondary);
    border-radius: 50%;
    transition: 0.5s;
}
.contact-box:hover .dot-small{
    background-color: white;
}

.contact-icon{
    font-size: 2.5rem; 
    color: white;
    transition: 0.5s;
}
.contact-box:hover .contact-icon{
    color: var(--pink-primary);
}

/* FOOTER */
footer{
    /* height: 15rem; */
    background-color: var(--pink-primary);
    color: white;
}


/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
    background-color: transparent;
    /* width: 48%; */
    height: 20rem;
    padding: 0.3rem;
    /* border: 1px solid #f1f1f1; */
    border-radius: 1rem;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
}

/* This container is needed to position the front and back side */
.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
    background-color: #bbb;
    color: black;
}

/* Style the back side */
.flip-card-back {
    background-color: var(--pink-secondary);
    color: white;
    padding: 1.5rem;
    transform: rotateY(180deg);
}


/* -------------------Estilos Responsive----------------------*/

@media screen and (min-width:480px) {
    .logo{
        color: white;
    }

    .main-header__contactInfo {
        text-align: right;
    }

    .main {
        padding-bottom: 20px;
    }

    .main-header__contactInfo__phone {
        background: none;
    }

    .main-header__contactInfo__address {
        color: white;
    }


}

@media screen and (min-width:1024px) {
    
    .icon-menu{
        display: none;
    }
    .menu{
        position: static;
        display: flex;
        height: auto;
        width: auto;
    }
    .menu__link{
        padding: 20px;
    }

}


