@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-padding-top: 15vh;
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;

}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 10vh;
    padding: 0 5%;
    background-color: #d4a91e;
    width: 100%;
    max-width: 100vw;
    color: white;
    position: fixed;
    box-sizing: border-box;
    left: 0;
    right: 0;
    top: 0;
    left: 0;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: 50%;
}

.logo h1 {
    font-size: 20px;
}

.links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #d4a91e;
    flex-direction: column;
    padding: 20px 0;
}

.links.active {
    display: flex;
}

.links a {
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    color: white;
    transition: 0.5s;
}

.links a:hover {
    color: rgb(255, 92, 33);
}

.cta a {
    background-color: rgb(255, 92, 33);
    padding: 10px 20px;
    text-align: center;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.5s;
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: inline-block;
}

.cta a:hover {
    background-color: rgb(251, 182, 147);
    color: orangered;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

main {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.background-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('./assets/lanchonete.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.3;
    transition: 0.5s;
}

.background-main {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
}

.bg1 { opacity: 1; }
.bg2 { opacity: 0; }

.content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    flex-direction: column;
    margin-top: 70px;
    opacity: 0;
    transform: translateY(30px);
    animation: aparecer 1.5s ease forwards;
}

@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.destaque-top i {
    color: rgb(249, 115, 48);
}

.destaque-top {
    background-color: rgba(255, 255, 255, 0.251);
    backdrop-filter: blur(2px);
    border-radius: 10px;
    display: inline-block;
    padding: 10px;
    box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
    width: auto;
    margin-top: 20px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.811);

}

.destaque-bottom {
    display: flex;
    gap: 50px;
}

.destaque-bottom i {
    color: rgb(249, 115, 48);
}

.text {
    text-align: center;
    font-size: 36px;
}


.text h1 {

    color: rgb(43, 51, 99);
    line-height: 1.1;
    font-weight: 1000;
    margin-top: 20px;

}

.text p {
    margin-top: 20px;
    font-size: 18px;
    color: rgb(43, 51, 99);
}

.text span {
    color: rgb(249, 115, 48);
}

.buttons-main {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}


.buttons-main a {
    text-decoration: none;
    color: white;
    background-color: rgb(249, 115, 48);
    padding: 15px 50px;
    border-radius: 10px;
    transition: 0.5s;
}

.buttons-main a:hover {
    background-color: rgb(255, 92, 33);
    transform: scale(1.1);
    transition: 0.3s;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* ESSENCIAL */
   object-position: center center; /* padrão */
  z-index: -1;
  opacity: 0.3;
}

.about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: auto;
    padding: 40px 300px;
    background-image: rgb(240, 239, 239);

}

.text-about-us {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
    align-items: center;
}

.text-about-us h1 {
    font-size: 53px;
    color: rgb(43, 51, 99);
    line-height: 1.1;
    width: 451px;
}

.text-about-us span {
    color: rgb(249, 115, 48);
}



.text-services {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 50px;
}

.text-services h1 {
    font-size: 62px;
    color: rgb(43, 51, 99);
    line-height: 1.1;
    margin-bottom: 10px;
}

.text-services span {
    color: rgb(249, 115, 48);
}

.title,
.title-contact {
    background-color: rgb(249, 115, 48);
    border: 1px solid rgba(255, 255, 255, 0.811);
    padding: 7px;
    border-radius: 20px;
    color: rgb(255, 255, 255);
    font-size: 13px;
    width: fit-content;
}

.wrapper-services {
    display: grid;
    grid-template-columns: repeat(2, 30%);
    gap: 30px;
    place-items: center;
    justify-content: center;
}

.box-services {
    background-color: rgb(249, 115, 48);
    width: 90%;
    border-radius: 20px;
    padding: 18px;
    box-shadow: rgba(100, 100, 111, 0.5) 0px 7px 29px 0px;
    color: white;
    transition: 0.5s;
    overflow: hidden;
    position: relative;
}

.box-services:hover {
    transform: translateY(-6px);
}

.services-img {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
    height: 200px;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: 0.3s;
    overflow: hidden;
}

.services-img img {
    height: 200px;
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: 0.3s;
    overflow: hidden;
}

.services-img img:hover {
    transform: scale(1.05);
}

.box-services h2 {
    margin-top: 15px;
    font-size: 24px;

}


.box-details p {
    display: inline-block;
    margin: 15px;
    margin-left: 0;
    background-color: rgba(187, 182, 182, 0.411);
    padding: 10px;
    border-radius: 20px;
    font-size: 10px;
}

.diferenciais {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-direction: column;
    margin-top: 100px;
    height: 80vh;
    padding: 15px;
}

.diferenciais i {
    height: 10px;
}

.text-diferenciais {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 50px;
}

.text-diferenciais h1 {
    font-size: 62px;
    color: rgb(43, 51, 99);
    line-height: 1.1;
    margin-bottom: 10px;
}

.text-diferenciais span {
    color: rgb(249, 115, 48);
}

.wrapper-info {
    display: grid;
    grid-template-columns: repeat(4, 300px);
    margin-bottom: 50px;
    gap: 50px;
}

.box-info {
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.3) 0px 7px 29px 0px;
    transition: 0.5s ease;
}

.box-info:hover {
    background-color: rgb(249, 115, 48);
    color: rgb(255, 255, 255);
}

.wrapper-class {
    margin-top: 70px;
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
}

.plans {
    background-color: rgb(240, 239, 239);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 50px;

}

.plans h1 {
    font-size: 62px;
    color: rgb(43, 51, 99);
    line-height: 1.1;
    margin-bottom: 10px;
    text-align: center;
}

.plans span {
    color: rgb(249, 115, 48);
}

.wrapper-plans {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    margin: 70px;
    position: relative;
}

.box-plans {
    background-color: rgb(249, 115, 48);
    color: white;
    border-radius: 20px;
    width: 300px;
    height: 60vh;
    box-shadow: rgba(172, 114, 6, 0.3) 0px 7px 29px 0px;
    position: relative;
    transition: 0.5s ease;
}

.box-plans:hover {
    box-shadow: rgba(241, 66, 2, 0.849) 0px 7px 29px 0px;
    transform: translateY(-6px);
}

.box-plans img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.box-plans h2 {
    margin-bottom: 20px;
    font-size: 28px;
    text-align: center;
}

.price-plans {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.price-plans a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px;
    background-color: rgb(43, 51, 99);
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 12px;
    width: 200px;
    font-weight: bold;
    transition: 0.5s;
}

.price-plans a:hover {
    background-color: rgb(77, 89, 153);
}

.location {
    background-color: rgba(240, 239, 239);
    margin: 50px 0;
    padding: 50px;
}

.location-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.location h1 {
    font-size: 62px;
    color: rgb(43, 51, 99);
    line-height: 1.1;
    margin-bottom: 10px;
}

.location span {
    color: rgb(249, 115, 48);
}

.location nav {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px 20px;
}

iframe {
    width: 70%;
    height: 500px;
    box-shadow: rgba(145, 69, 25, 0.514) 0px 7px 29px 0px;
    border-radius: 12px;
}


.wrapper-hour {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.schedule {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 50px 0;
}

.schedule-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.schedule-description h1 {
    font-size: 62px;
    color: rgb(43, 51, 99);
    line-height: 1.1;
    margin-bottom: 10px;
}

.schedule-description span {
    color: rgb(249, 115, 48);
}


.wrapper-hour {
    gap: 50px;
}

.card-image {
    width: 300px;
    height: 600px;
    transition: 0.4s ease;
    border-radius: 12px;
}

.card-image:hover {
    box-shadow: rgba(241, 66, 2, 0.849) 0px 7px 29px 0px;
    transform: translateY(-6px);
}

.card-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.contact {
    height: auto;
    background-color: rgba(240, 239, 239);
}

.wrapper-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px 300px;
    height: 100vh;
}

.left-content {
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    height: 80vh;
}

.left-content span {
    color: rgb(249, 115, 48);
}

.left-content h1 {
    font-size: 48px;
    color: rgb(43, 51, 99);
    line-height: 1.1;
}

.card-info {
    display: flex;
    align-items: center;
    margin: 20px 5px;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(249, 115, 48);
    padding: 10px;
    border-radius: 8px;
    width: 50px;
    height: 50px;
}

.icon i {
    color: white;
    font-size: 20px;
}

.text-contact {
    display: flex;
    flex-direction: column;
    margin-left: 15px;
    font-weight: 500;
}

.right-content {
    width: 50%;
    background-color: rgb(251, 139, 82);
    height: 65%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: white;
    margin-left: 50px;
    padding: 20px;
}

.right-content a {
    margin: 10px;
    padding: 10px;
    background-color: rgb(43, 51, 99);
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 20px;
    width: 100%;
}

footer {
    background-color: rgb(43, 51, 99);
    color: white;
    text-align: center;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.footer-content {
    display: flex;
    justify-content:center;
    align-items: center;
    width: 90%;
    gap: 40px;
}

.footer-info {
    flex: 1;
    text-align: center;
}

.footer-info p {
    margin: 10px 0;
}

.footer-sociais {
    flex: 1;
    text-align: center;
}

.footer-sociais h3 {
    margin-bottom: 15px;
    color: rgb(249, 115, 48);
}

.sociais-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.sociais-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(249, 115, 48, 0.2);
    border-radius: 50%;
    transition: 0.3s ease;
}

.sociais-icons a:hover {
    background-color: rgb(249, 115, 48);
    color: white;
    transform: scale(1.1);
}

.sociais-icons i {
    font-size: 20px;
}

footer a {
    color: rgb(249, 115, 48);
    text-decoration: none;
    transition: 0.3s ease;
}

footer a:hover {
    color: white;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 3s ease;
}

.reveal.ativo {
    opacity: 1;
    transform: translateY(0);
}

.btn-whatsapp {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 70px;
    height: 70px;
    background-color: green;
    border-radius: 50%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: rgba(24, 168, 5, 0.555) 0px 7px 29px 0px;
    ;
    transition: 0.3s ease;
}

.btn-whatsapp i {
    color: white;
    font-size: 50px;
    text-align: center;
    padding: 10px;
}

.btn-whatsapp:hover {
    box-shadow: rgba(27, 201, 4, 0.925) 0px 7px 29px 0px;
    ;
}

.btn-whatsapp:active {
    background-color: rgb(14, 59, 14);
}

/* Media Queries */
@media (min-width:300px) and (max-width:499px) {
    header {
        width: 100vw;
        min-height: 60px;
        padding: 10px 15px;
        font-size: 15px;
        justify-content: space-between;
        box-sizing: border-box;
    }

    .logo img {
        height: 40px;
    }

    .logo h1 {
        font-size: 15px;
    }

    .links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #d4a91e;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 9;
    }

    .links.active {
        display: flex;
    }

    .links a {
        padding: 10px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hamburger {
        display: flex;
    }

    .cta a {
        padding: 8px 12px;
        font-size: 14px;
        display: inline-block;
    }

    .text {
        font-size: 24px;
        padding: 10px;
    }

    .text h1 {
        font-size: 45px;
    }

    .buttons-main {
        flex-direction: column;
        text-align: center;
    }

    .destaque-bottom {
        gap: 0px;
        width: 100%;
        text-align: center;
        align-items: center;
        gap: 10px;
    }

    .content {
        padding: 20px;
    }

    .about-us {
        padding: 20px;
        height: auto;
    }

    .text-about-us {
        margin-top: 50px;
        width: 100%;
    }

    .text-about-us h1 {
        font-size: 30px;
    }

    .text-about-us span {
        font-size: 40px;
    }

    .wrapper-services {
        grid-template-columns: 100%;
    }

    .text-services {
        gap: 10px;
    }

    .box-details {
        display: flex;
        text-align: center;
        justify-content: center;
    }

    .diferenciais {
        height: auto;
    }

    .wrapper-info {
        grid-template-columns: 100%;
    }



    .plans h1 {
        font-size: 50px;
        text-align: center;
    }

    .wrapper-plans {
        flex-direction: column;
    }

    iframe {
        width: 100%;
    }

    .schedule-description {
        padding: 20px;
    }

    .wrapper-hour {
        grid-template-columns: auto;
    }

    .card-image {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .contact {
        height: auto;
    }

    .wrapper-content {
        flex-direction: column;
        align-items: center;
        margin: 0;
        padding: 20px;
        gap: 20px;
        height: auto;
    }

    .left-content {
        width: 100%;
        height: auto;
        margin-top: 50px;
        text-align: center;
        align-items: center;
    }

    .contact-info {
        justify-content: center;
        text-align: left;
    }

    .right-content {
        flex-direction: column;
        align-items: center;
        margin: 20px 0;
        width: auto;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        width: auto;
    }

    .footer-info {
        text-align: center;
    }

    .footer-sociais {
        text-align: center;
    }

    .sociais-icons {
        justify-content: center;
    }
}

@media (min-width:500px) and (max-width:1099px) {

    /* ajustes para tablets (entre mobile e desktop) */
    header {
        padding: 20px 3%;
        height: 11vh;
        justify-content: center;
        gap: 20px;
    }

    .logo img {
        height: 30px;
    }

    .logo h1 {
        font-size: 18px;
    }

    .links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #d4a91e;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 9;
        
    }

    .links.active {
        display: flex;
        
    }

    .hamburger {
        display: flex;
    }

    .links a {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    }

    .text {
        font-size: 30px;
        padding: 0 20px;
    }

    .buttons-main {
        flex-wrap: wrap;
        gap: 15px;
    }

    .about-us {
        padding: 30px 200px;
    }

    .text-about-us {
        width: auto;
    }

    .text-about-us h1 {
        font-size: 45px;
    }

    .text-about-us p {
        font-size: 15px;
        line-height: 1.6;
    }

    .wrapper-services {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .box-services {
        width: 90%;
        height: 500px;
    }

    .wrapper-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .diferenciais {
        height: auto;
    }

    .plans h1,
    .text-services h1,
    .text-diferenciais h1 {
        font-size: 55px;
        text-align: center;
    }

    .wrapper-plans {
        flex-direction: column;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    iframe {
        width: 100%;
    }

    .wrapper-hour {
        grid-template-columns: repeat(2, 1fr);
    }

    .wrapper-content {
        margin: 0 30px;
    }

    .left-content,
    .right-content {
        width: 100%;
        margin: 20px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-info {
        text-align: center;
    }

    .footer-sociais {
        text-align: center;
    }

    .sociais-icons {
        justify-content: center;
    }
}

@media (min-width:1100px) and (max-width:1399px) {
    /* Ajustes para telas grandes de notebooks/monitores pequenos (1100px até 1399px) */
    /* Mantendo proporção da view de 1080px */

    .logo img {
        height: 35px;
    }

    .links {
        display: flex;          /* 🔥 volta a aparecer */
        position: static;       /* 🔥 volta pro fluxo do header */
        flex-direction: row;    /* 🔥 horizontal */
        background: none;
        box-shadow: none;
        padding: 0;
    }

    .hamburger {
        display: none;          /* 🔥 some no desktop */
    }


    .about-us {
        padding: 30px 250px;
    }

    .text-about-us {
        width: auto;
    }

    .text-about-us h1 {
        font-size: 50px;
    }

    .text-about-us p {
        font-size: 16px;
        line-height: 1.6;
    }

    .wrapper-services {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .box-services {
        width: 90%;
        height: 500px;
    }

    .wrapper-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .diferenciais {
        height: auto;
    }

    .box-info {
        gap: 10px;
    }

    .box-info i {
        font-size: 20px;
    }

    .plans h1,
    .text-services h1,
    .text-diferenciais h1 {
        font-size: 58px;
        text-align: center;
    }

    .wrapper-plans {
        flex-direction: column;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    iframe {
        width: 100%;
    }

    .wrapper-hour {
        grid-template-columns: repeat(2, 1fr);
    }

    .wrapper-content {
        margin: 0 80px;
        height: auto;
    }

    .left-content,
    .right-content {
        width: 48%;
        margin: 20px 0;
        height: 600px;
    }

    .left-content{
        height: auto;

    }

    .footer-content {
        flex-direction: row;
        text-align: center;
        gap: 40px;
    }

    .footer-info {
        text-align: left;
        flex: 1;
    }

    .footer-sociais {
        text-align: right;
        flex: 1;
    }

    .sociais-icons {
        justify-content: flex-end;
    }
}

@media (min-width:1400px) and (max-width:1600px) {
    .logo img {
        height: 30px;
    }


    .diferenciais {
        height: auto;
    }

    .box-services {
        width: 362px;
        height: 500px;
    }

    .wrapper-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .wrapper-plans {
        flex-direction: column;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    .wrapper-content {
        margin: 0 119px;
    }
}

@media (min-width:1100px) {
    .links {
        display: flex;
        position: static;        /* 🔥 VOLTA PRO HEADER */
        flex-direction: row;     /* 🔥 HORIZONTAL */
        width: auto;             /* 🔥 NÃO ocupa tudo */
        gap: 20px;               /* 🔥 ESPAÇAMENTO ENTRE LINKS */
        padding: 0;
        background: none;
        box-shadow: none;
    }

    .hamburger {
        display: none;
    }
}