* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

h1 {
    font-size: 48px;
    font-weight: bold;
    color: #7da23f;
}

h2 {
    font-size: 32px;
    font-weight: bold;
    color: #6E8F3D;
}

h3 {
    font-size: 24px;
    font-weight: medium;
    color: var(--dark-green);
}

p {
    font-size: 16px;
}

button {
    color: #fff;
    background-color: #7da23f;
    border-radius: 5px;
    border: 0;
    width: 200px;
    height: 38px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #678a33;
}

header {
    display: flex;
    position: fixed;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    background-color: #fff;
    padding: 10px;
    width: 100%;
    box-shadow: 0 1px 20px #33333380;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 120px;
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.navigation {
    cursor: pointer;
    height: auto;
    display: none;
}

.dropdown {
    display: none;
    position: absolute;
    right: 2rem;
    top: 90px;
    width: 300px;
    height: 0;
    background-color: #0a0a0a90;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow-x: hidden;
    overflow-y: auto;
    transition: height 0.2s;
}

.dropdown ul {
    margin: 0.1rem;
}

.dropdown.open {
    height: 280px;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dropdown li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

ul a {
    color: black;
    font-size: 24px;
    text-decoration: none;
    background-image: linear-gradient(green, green);
    background-size: 0% 2px;
    background-position: 50% 100%;
    background-repeat: no-repeat;
    padding-bottom: 6px;
    transition: background-size 0.3s ease;
}

ul a:hover {
    background-size: 100% 2px;
}

li {
    list-style: none;
}

.space {
    height: 100px;
}

.hero {
    position: relative;
    height: 85vh;
    min-height: 420px;
    background-image: url("../img/banner-panda.jpg");
    background-size: cover;
    background-position: bottom;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-margin-top: 120px;
}

.hero-bamboo {
    position: absolute;
    bottom: -85px;
    left: -60px;
    width: 600px;
    height: auto;
    z-index: 10;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 2px;
    opacity: 0.85;
    margin-bottom: 12px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 16px;
    color: white;
}

.hero-tags {
    font-size: 0.95rem;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-content {
    animation: fadeUp 0.8s ease forwards;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    margin: 100px;
}

.about p {
    font-size: 24px;
    text-align: center;
}

:root {
    --primary-green: #6E8F3D;
    --dark-green: #3d4b2b;
    --light-bg: #f9fbf7;
    --border-color: rgba(0, 0, 0, 0.08);
}

.restaurant-menu {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    padding: 50px;
    margin: 100px auto;
    font-family: 'Inter', sans-serif;
    background-color: #6e8f3d;
    scroll-margin-top: 120px;
}

.restaurant-menu h1 {
    color: #f9fbf7;
}

.horario-menu {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.horario {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    width: 422px;
    height: 80px;
    border-radius: 20px;
    background-color: #eef2e6;
    font-size: 1.5rem;
    margin: 5px 0;
    font-weight: 600;
}

.horario-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2px;
}

.restaurant-background {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.rates-column {
    flex: 1;
    width: 550px;
    height: 520px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
    padding: 40px;
    background-color: #eef2e6;
}

.rates-column h3 {
    margin-bottom: 10px;
}

.menu-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.day-label {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: #6E8F3D;
}

.price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-green);
}

.asterix {
    color: #4c5d35;
}

.meal-type {
    font-size: 1.2rem;
    margin: 5px 0;
    font-weight: 600;
}

.child-price {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

.group-menu-card {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 1;
    width: 550px;
    height: 520px;
    background: #eef2e6;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.group-option {
    padding: 20px 0;
    border-bottom: 1px dashed #ced6c3;
}

.option-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.option-info .count {
    font-size: 1.2rem;
    margin: 5px 0;
    font-weight: 600;
}

.option-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--dark-green);
}

.option-price small {
    font-size: 0.9rem;
    opacity: 0.7;
}

.fine-print {
    display: flex;
    flex-direction: column;
    margin: 20px 0 0 0;
}

.group-menu-card button {
    margin: 40px 0 0 0;
}

.event {
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-margin-top: 450px;
}

.event img {
    max-width: 1440px;
    height: 700px;
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #111;
    color: white;
    padding: 16px 22px;
    border-radius: 12px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: 0.3s;
    font-size: 20px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.animation {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    scroll-margin-top: 200px;
}

.animation-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 50px;
    margin: 0 100px;
}

.animation-title p {
    font-size: 24px;
}

.animation-profil {
    background: #ffffff;
    border: 2px solid #a3c47d;
    border-radius: 25px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 50px auto;
}

.animation a {
    text-decoration: none;
}

.animation-profil:hover {
    transform: translateY(-5px);
}

.animation-img img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid #a3c47d80;
    object-fit: cover;
    margin-bottom: 15px;
    padding: 5px;
}

.animation-info h4 {
    color: #333;
    font-size: 1.4rem;
    margin: 10px 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.animation-info p {
    color: #666;
    font-style: italic;
    font-size: 1rem;
}

.animation-profil::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background-image: url('img/bamboo-cluster.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.animation-profil::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: -10px;
    width: 60px;
    height: 60px;
    background-image: url('img/bamboo-branch.png');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(45deg);
    opacity: 0.4;
}

.animation-schedule {
    margin-top: 15px;
    padding: 8px 12px;
    background: #f4f9ef;
    border-radius: 12px;
    display: inline-block;
    border: 1px solid #e1eed5;
}

.animation-schedule .time {
    display: block;
    font-weight: bold;
    color: #4a6d2c;
    font-size: 1.1rem;
}

.animation-schedule .days {
    display: block;
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.takeaway {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 100px 0;
    scroll-margin-top: 180px;
}

.takeaways {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin: 100px 0 0 0;
}

.delivery {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 30px 70px;
    border-radius: 20px;
    border: 2px solid rgb(163, 196, 125);
    ;
    width: 300px;
    color: #333;
}

.delivery p {
    margin: 5px;
    font-size: 18px;
}

.delivery img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 20px;
}

.takeaway-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    margin: 100px 0;
    padding: 0 0 100px;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.1);
}

.takeaway-section button {
    margin: 20px;
}

.takeaway-borders {
    display: flex;
    justify-content: center;
    align-items: center;
}

.border {
    border: 2px solid #d5d5d577;
    width: 800px;
}

.takeaway-boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.takeaway-text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    max-width: 1200px;
    margin: 20px;
}

.takeaway-text p {
    font-size: 20px;
}

.boxes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.box-size {
    display: flex;
    justify-content: baseline;
    align-items: center;
    flex-direction: column;
    width: 300px;
    height: 250px;
    border-radius: 15px;
    border: 2px solid rgb(163, 196, 125);
}

.box-size h3 {
    color: #333;
}

.box-img-1 {
    display: flex;
    justify-content: center;
    align-items: baseline;
    background-image: url("../img/pequena-removebg-preview.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px 15px 0 0;
    width: 180px;
    height: 200px;
}

.box-img-2 {
    display: flex;
    justify-content: center;
    align-items: baseline;
    background-image: url("../img/média-box.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px 15px 0 0;
    width: 180px;
    height: 200px;
}

.box-img-3 {
    display: flex;
    justify-content: center;
    align-items: baseline;
    background-image: url("../img/grande-box.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px 15px 0 0;
    width: 180px;
    height: 200px;
}

.box-img-4 {
    display: flex;
    justify-content: center;
    align-items: baseline;
    background-image: url("../img/sushi-box.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 15px 15px 0 0;
    width: 250px;
    height: 200px;
}

.box-img-1 h3,
.box-img-2 h3,
.box-img-3 h3,
.box-img-4 h3 {
    padding: 10px;
}

.box-prices {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.box-prices p {
    font-size: 16px;
}

.box-prices span {
    font-weight: bold;
}

.prices {
    color: white;
    background-color: #7da23f;
    padding: 8px;
    border-radius: 5px;
    font-weight: normal;
}

.prices span {
    font-weight: bold;
}

.call-now {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    scroll-margin-top: 200px;
}

.call-now-div {
    display: flex;
    gap: 100px;
}

.text {
    font-size: 20px;
    width: 600px;
    line-height: 30px;
}

.phone-number {
    display: flex;
    justify-content: baseline;
    align-items: center;
    gap: 20px;
    margin: 50px 0 50px -8px;
}

.phone-number img {
    width: 100px;
}

.phone-number a {
    font-size: 32px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.phone-number a:hover {
    color: #7da23f;
}

.informations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.information {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.information p {
    font-size: 20px;
}

.main-footer {
    background-color: #f6f7f2;
    padding: 60px 20px 20px;
    margin-top: 100px;
    font-family: 'Arial', sans-serif;
}

.contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-map iframe {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.info-text h3 {
    color: #4f6a2f;
    font-size: 24px;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    justify-content: baseline;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item a {
    text-decoration: none;
    color: #444;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #6e8f3d;
}

.phone-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.1));
}

.footer-bottom {
    max-width: 1100px;
    margin: 40px auto 0;
    text-align: center;
}

.footer-bottom hr {
    border: 0;
    border-top: 1px solid #dcded8;
    margin-bottom: 20px;
}

.copyright {
    display: flex;
    justify-content: space-between;
    color: #888;
    font-size: 14px;
}

@media (max-width: 768px) {

    .logo img {
        width: 100px;
    }

    .space {
        height: 50px;
    }

    .navbar {
        display: none;
    }

    .navigation {
        display: block;
    }

    .dropdown {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    ul {
        flex-direction: column;
        gap: 0;
    }

    ul a {
        font-size: 20px;
        color: white;
    }

    .hero-bamboo {
        width: 300px;
        bottom: -42px;
    }

    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    .about {
        gap: 10px;
        margin: 50px 20px;
    }

    .about p {
        font-size: 16px;
    }

    .horario-menu {
        flex-direction: column;
    }

    .horario {
        width: 300px;
        margin: 0;
    }

    .restaurant-menu {
        margin: 50px 0;
    }

    .restaurant-background {
        flex-direction: column;
    }

    .rates-column {
        width: 260px;
        padding: 20px;
    }

    .price {
        font-size: 1.3rem;
    }

    .group-menu-card {
        width: 260px;
        padding: 20px;
    }

    .event img {
        max-width: 375px;
        max-height: 600px;
    }

    .option-info .count {
        font-size: 1rem;
        gap: 0;
    }

    .option-price {
        font-size: 1.1rem;
    }

    .group-menu-card button {
        margin: 20px auto 0 auto;
    }

    .animation-title {
        margin: 10px 20px;
        gap: 20px;
    }

    .animation-title p {
        font-size: 16px;
    }

    .takeaway {
        margin: 50px 0;
    }

    .takeaway h1 {
        text-align: center;
    }

    .takeaways {
        flex-direction: column;
        margin: 50px 0 0 0;
        gap: 50px;
    }

    .delivery {
        width: auto;
        padding: 30px 43px;
    }

    .delivery img {
        width: 100px;
        height: 100px;
    }

    .delivery p {
        width: 200px;
    }

    .takeaway-section {
        margin: 50px 0;
        gap: 20px;
        padding: 0 0 50px 0;
    }

    .takeaway-borders {
        width: 300px;
    }

    .takeaway-text {
        width: 300px;
        margin: 0 0 20px 0;
    }

    .takeaway-text p {
        font-size: 16px;
    }

    .boxes {
        flex-direction: column;
    }

    .box-prices {
        gap: 25px;
    }

    .call-now {
        gap: 20px;
    }

    .call-now h1 {
        width: 300px;
        text-align: center;
    }

    .call-now-div {
        flex-direction: column;
        gap: 20px;
        margin: 0 0 50px 0;
    }

    .text {
        margin: 0 20px;
        width: 300px;
        font-size: 16px;
        line-height: normal;
    }

    .phone-number {
        display: none;
    }

    .informations {
        align-items: center;
    }

    .informations h3 {
        font-size: 24px;
    }

    .main-footer {
        margin: 0;
        padding: 30px;
    }

    .contact-container {
        gap: 20px;
        grid-template-columns: auto;
    }

    .logo-area {
        display: none;
    }

}