@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(255, 228, 108, 0.514), transparent, rgb(255, 255, 255)) rgb(255, 255, 255);
}

.navbar-brand img {
    width: 200px;
}

.navbar-toggler {
    background: #ffffff;
}

.nav-link {
    font-size: 24px;
    width: 200px;
    color: #000000;
    border: 1px solid #000;
}

.nav-link:hover {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000;
}

.cards-info {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.info {
    margin-top: 6rem;
}

.titulo {
    font-weight: 800;
}

@media only screen and (max-width: 768px) {
    .navbar-brand img {
        width: 200px;
    }
}

@media only screen and (max-width: 991px) {
    .nav-link {
        border: 0;
    }
    body{
        height: 100%;
    }
}

.card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border-radius: 24px;
    line-height: 1.6;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
    border: 0;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 36px;
    border-radius: 22px;
    color: #000000;
    overflow: hidden;
    height: 100%;
    background: #ffb451;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
   
   
}

.content::before {
    position: absolute;
    content: "";
    top: -4%;
    left: 50%;
    width: 100%;
    height: 90%;
    transform: translate(-50%);
    background: #ffdc3ec0;
    
    z-index: -1;
    transform-origin: bottom;

    border-radius: inherit;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content::after {
    position: absolute;
    content: "";
    top: -8%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%);
    background: #ffdc3e3d;
    z-index: -2;
    transform-origin: bottom;
    border-radius: inherit;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

.content .para {
    z-index: 1;
    opacity: 1;
    font-size: 18px;
    transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}

 .content-img{
    padding: 0px 0px 0px 0px;
}
.para-img img{
    object-fit: cover;
}
.card:hover {
    transform: translate(0px, -16px);
}

.card:hover .content::before {
    rotate: -8deg;
    top: 0;
    width: 100%;
    height: 90%;
}

.card:hover .content::after {
    rotate: 8deg;
    top: 0;
    width: 100%;
    height: 100%;
}