* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(17, 16, 16);
    color: white;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
}

.decel {
    color: rgb(255, 128, 0);
    font-family: 'Oswald';
    font-weight: 900;
    font-size: 30px;
}

header nav a {
    font-family: 'Roboto';
    font-weight: 500;
    color: rgb(170, 163, 163);
    text-decoration: none;
    font-size: 18px;
    padding: 0 15px;
    transition: 0.3s;
}

header nav a:hover {
    color: white;
}

.order {
    padding: 10px 20px;
    color: white !important;
    font-weight: 900;
    border-radius: 20px;
    background-color: rgb(255, 128, 0);
}

.hero {
    padding: 90px 70px;
    position: relative;
    min-height: 600px;
}

.est {
    color: rgb(255, 128, 0);
    font-family: 'Oswald';
    letter-spacing: 2px;
    font-size: 20px;
    margin-bottom: 10px;
}

h1 {
    font-family: 'Oswald';
    font-size: 80px;
    font-weight: 900;
    width: 40%;
    line-height: 1;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: subir 1.2s ease-out forwards;
}

.orange-text {
    color: rgb(255, 128, 0);
}

.gradient-text {
    background: linear-gradient(to right, #c87100, #c84300);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slogan {
    color: gray;
    font-size: 20px;
    width: 35%;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.view {
    color: white;
    background-color: rgb(238, 119, 0);
    padding: 18px 35px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.view:hover {
    transform: translateY(-5px);
}

.pimg {
    position: absolute;
    right: 10%;
    top: 100px;
}

.hamburguer {
    width: 480px;
    border-radius: 50px;
    transform: rotate(10deg);
    animation: subir 1.5s ease-out forwards;
}

.menu {
    text-align: center;
    padding: 80px 20px;
}

.pmenu {
    font-family: 'Oswald';
    font-weight: 900;
    font-size: 60px;
    letter-spacing: 2px;
}

.underline {
    width: 80px;
    height: 6px;
    background-color: rgb(255, 128, 0);
    margin: 10px auto 50px;
    border-radius: 10px;
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background-color: #1a1a1a;
    color: #888;
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Roboto';
    font-size: 16px;
    transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #ff8000;
    color: white;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.menu-card {
    background-color: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: 0.3s;
}

.menu-card:hover {
    transform: translateY(-10px);
}

.card-image {
    position: relative;
    height: 220px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff8000;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 900;
    font-family: 'Oswald';
}

.card-content {
    padding: 25px;
    flex-grow: 1;
}

.card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.card-title-row h3 {
    font-family: 'Oswald';
    font-size: 22px;
}

.price {
    color: #ff8000;
    font-weight: bold;
    font-size: 18px;
}

.card-desc {
    color: #888;
    font-size: 14px;
    line-height: 1.5;
}

.about {
    display: flex;
    gap: 60px;
    padding: 60px;
    align-items: center;
}

.about-img img {
    width: 600px;
    border-radius: 30px;
    margin-left: 30px;
    animation: aparecerE 1.5s ease-out forwards;
}

.about-content {
    max-width: 400px;
    margin-left: 200px;
    animation: aparecerD 1.5s ease-out forwards;
}

.about-tit {
    font-family: Oswald;
    font-weight: 900;
    font-size: 60px;
    width: 100%;
    color: white;
    line-height: 1;
    margin-bottom: 20px;
}

.about-p {
    color: #ccc;
    font-family: Roboto;
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-features {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background-color: #1c1c1c;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    flex: 1;
}

.img_feature {
    width: 90px;
}

.feature-title {
    color: white;
    font-weight: 700;
    font-family: Oswald;
    width: 30%;
    padding: 10px 0px 10px 20px;
}

.feature-sub {
    color: gray;
    font-family: Roboto;
    font-size: 11px;
}

.loc-tit {
    text-align: center;
    font-family: Oswald;
    font-weight: 900;
    font-size: 60px;
    margin-bottom: 6px;
    color: white;
    letter-spacing: 2px;
}

.loc-p {
    text-align: center;
    color: #a1a1a1;
    font-family: Roboto;
    margin-bottom: 30px;
}

.loc {
    background: #111;
    padding: 80px 20px;
    text-align: center;
}

.loc-card {
    display: flex;
    max-width: 900px;
    margin: 40px auto;
    background-color: #1a1a1a;
    border-radius: 24px;
    overflow: hidden;
    text-align: left;
}

.loc-image-container {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.loc-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 128, 0, 0.2);
    border: 2px solid rgb(255, 128, 0);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.loc-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-main-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    color: white;
    margin-bottom: 10px;
}

.info-divider {
    width: 100%;
    height: 1px;
    background: #333;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    background: #262626;
    padding: 10px;
    border-radius: 12px;
    color: rgb(255, 128, 0);
    min-width: 45px;
    text-align: center;
}

.info-label {
    font-family: 'Oswald', sans-serif;
    color: white;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
}

.info-text {
    font-family: 'Roboto', sans-serif;
    color: #a1a1a1;
    font-size: 14px;
    line-height: 1.5;
}


.main-footer {
    background-color: #0a0a0a;
    color: #888;
    padding-top: 60px;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 40px 60px 40px;
    gap: 40px;
}

.footer-column {
    flex: 1;
}

.footer-column:nth-child(2) {
    text-align: center;
    /* Centraliza o título e os links */
}

.footer-logo {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 32px;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.orange-text {
    color: #ff8000;
}

.footer-tagline {
    line-height: 1.6;
    max-width: 300px;
    font-size: 14px;
    color: #888;
}

.footer-title {
    font-family: 'Oswald', sans-serif;
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-nav {
    display: flex;
    padding-left: 20px;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-column:nth-child(3) {
    text-align: right;
}

.footer-nav a {
    color: #888;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.icon-circle {
    width: 50px;
    height: 50px;
    padding: 20px;
    background-color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    border: 1px solid #333;
}

.icon-circle:hover {
    background-color: #ff8000;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding: 30px 40px;
}

.bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: white;
}


@keyframes subir {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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


@media (max-width: 768px) {

    /* Header e Navegação */
    header {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    header nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    header nav a {
        font-size: 14px;
        padding: 5px 10px;
    }

    /* Hero Section */
    .hero {
        padding: 40px 20px;
        text-align: center;
        min-height: auto;
    }

    h1 {
        font-size: 45px;
        width: 100%;
    }

    .slogan {
        width: 100%;
        font-size: 16px;
    }

    .pimg {
        position: static;
        margin-top: 40px;
        display: block;
    }

    .hamburguer {
        width: 100%;
        max-width: 300px;
        transform: rotate(0deg);
    }

    .pmenu {
        font-size: 40px;
    }

    .menu-filters {
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }

    .about-img {
        margin-left: 0;
    }

    .about-img img {
        width: 100%;
        margin-left: 0;
    }

    .about-content {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }

    .about-tit {
        font-size: 35px;
    }

    .about-features {
        flex-direction: column;
    }

    .feature-title {
        width: 100%;
        padding: 10px 0;
    }

    /* Locations Section */
    .loc-tit {
        font-size: 40px;
    }

    .loc-card {
        flex-direction: column;
    }

    .loc-image-container {
        min-height: 250px;
    }

    .loc-info {
        padding: 30px 20px;
    }

    /* Footer Section */
    .footer-container {
        flex-direction: column;
        text-align: center;
        padding: 0 20px 40px 20px;
    }

    .footer-column:nth-child(2),
    .footer-column:nth-child(3) {
        text-align: center;
    }

    .footer-tagline {
        margin: 0 auto;
    }

    .footer-nav {
        padding-left: 0;
    }

    .social-icons {
        justify-content: center;
        margin-top: 20px;
    }

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