* {
    box-sizing: border-box;
}

body {
    margin: 0%;
    padding: 0%;
}

img {

    width: 100%;
}

a {
    text-decoration: none;


}

.grelha {

    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

#entrada {
    min-height: 80vh;

    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(imagens/pirucas_park.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff;


}

#titi {
    grid-column: 4/10;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Open Sans';
    font-weight: bold;
    font-size: 20px;
}

.titulo {
    grid-column: 1/13;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Open Sans';
    font-size: 32px;
    margin-bottom: 0%;
}

.subtitulo {
    grid-column: 1/13;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Open Sans';
    font-size: 24px;
    font-weight: 400;
    margin-top: 0%;
    margin-bottom: 2%;
}


.diver {

    grid-column: span 4;
    background-color: #FFC53F;
    border: 20px solid #FFD166;
    border-radius: 50px;

}

.fala {
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, Roboto;
    font-weight: 700;
    font-size: 18px;
}

.help {
    border-radius: 30px 30px 0 0;
}



.esquerda {
    grid-column: 2/6;
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}

.direita {

    grid-column: 8/12;
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}

#rosa {
    background: linear-gradient(to right, #FF6589, #FFB7C8);
    ;
    
}

#lanche {
    color: #E32855;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Open Sans';
}

#bob {
    border-radius: 50px;
    border: 10px solid #FF8BA6;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-top: 5%;
    margin-bottom: 5%;
}

#azul {
    background: linear-gradient(to right, #60D7FF, #0AA3D5);
}

#kit {
    color: #118AB2;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Open Sans';
}

#bobo {
    border-radius: 50px;
    border: 10px solid #15B4E9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-top: 5%;
    margin-bottom: 5%;
}

#verde {
    background: linear-gradient(to right, #00E5AA, #97FFE4);

}

#cov {
    color: #00BD8C;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Open Sans';
}

#bobla {
    border-radius: 50px;
    border: 10px solid #03E3A9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-top: 5%;
    margin-bottom: 5%;
}

#amarelo {
    background: linear-gradient(to right, #FFE097, #FFC53F);

}

#ex {
    color: #F2A900;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Open Sans';
    
}

#bobu {
    border-radius: 50px;
    border: 10px solid #EEC462;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    margin-top: 5%;
    margin-bottom: 5%;
}

#seguranca {
    align-items: center;
}

#segu {
    grid-column: 6/13;
    text-align: justify;
}

#segura {
    grid-column: 2/6;
    margin-top: auto;
    margin-bottom: auto;
}

.boba {
    border-radius: 50px;
}



.res {
    background-color: #EF476F;
    color: #ffffff;
    text-align: center;
    grid-column: 6/8;
    padding-top: 5%;
    padding-bottom: 5%;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10%;

    display: block;
    width: 180px;
}

.massa {
    font-size: 16px;
    font-weight: 400;
}


.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: #fff;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.logo img {
    height: 50px;
}

.menu {
    list-style: none;
    display: flex;
    gap: 40px;
    padding: 0;
    margin: 0;
    
    

}


.btn_pink {
    background: linear-gradient(to bottom, #ffffff, #EF476F);
    padding: 14px 38px;
    border-radius: 0 0 20px 20px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.btn_blue {
    background: linear-gradient(to bottom, #ffffff, #118AB2);
    padding: 14px 38px;
    border-radius: 0 0 20px 20px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.btn_green {
    background: linear-gradient(to bottom, #ffffff, #06D6A0);
    padding: 14px 38px;
    border-radius: 0 0 20px 20px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}


.hamburger {
    width: 30px;
    height: 22px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.section {
    background: #b3e59f;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;


}

.left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-left: 10%;
    margin-right: 10%;
}

.logo {
    width: 200px;
}

.btn-reservar {
    background: #e84a64;
    color: white;
    padding: 12px 40px;
    border-radius: 8px;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
}

.center {
    max-width: 280px;
    line-height: 1.5;
}

.center a {
    text-decoration: underline;
    color: black;
}

.right .mapa {
    width: 220px;
    height: 220px;
    border-radius: 5px;
}


#dias {
    grid-column: 3/7;
    text-align: center;

}

#fins {
    grid-column: 7/11;
    text-align: center;
}

#rel {
    width: 50%;
}

.back {
    background-color: #FF98B1;
    border-radius: 20px;
}

.dollib {
    background-color: #82BCCF;
    border-radius: 20px;
    grid-column: span 4;
    text-align: center;
    padding-bottom: 10%;

}

.pink {
    color: #DA0034;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Open Sans';
    font-size: 24px;
    font-weight: 400;
}

.blue {
    color: #006181;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Open Sans';
    font-size: 24px;
    font-weight: 400;


}

#fotos {
    background-color: #FFD166;
}

.lol {
    grid-column: span 2;
    margin-top: 10%;
    margin-bottom: 10%;
}

#horarios {
    margin-bottom: 5%;
}

#precos{
    margin-bottom: 5%;
}


@media screen and (max-width:500px) {
    .grelha {
        display: block;
        width: 95%;
    }

    .section {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
        padding: 20px;
    }

    .center {
        max-width: 100%;
    }

    .right .mapa {
        width: 90%;
        max-width: 300px;
    }

    .logo {
        width: 180px;
    }

    .btn-reservar {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .right iframe {
        width: 90%;
        max-width: 300px;
        height: 250px;
    }

    .hamburger {
        display: flex;
    }

    .menu {
        position: absolute;
        top: 70px;
        right: 20px;
        background: white;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
width: 100%;

        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;


        transition: opacity 0.25s ease, transform 0.25s ease;
    }


    .menu.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .res {
        background: #e84a64;
        color: white;
        padding: 12px 40px;
        border-radius: 8px;
        font-size: 18px;
        text-decoration: none;
        font-weight: bold;


    }
#rosa {
    padding-bottom: 5%;
}
 #azul{
    padding-top: 5%;
 }
 #verde {
    padding-bottom: 5%;
 }

 #amarelo {
    padding-top: 5%;

 }
 .diver {
    margin-bottom: 5%;
 }
}