body {
    font-family: Roboto, sans-serif;
}

.navbar {
    background-color: #1F3932;
}

#cabecalho .nav .nav-link.active {
    background-color: #fff;
    color: #1F3932;
}

#cabecalho .nav .nav-link,
.navbar-brand,
.navbar-brand:hover,
.nav-cardapio .nav-link.active:hover {
    color: #fff;
}

.navbar-brand {
    font-size: 1.5rem;
}

.navbar-toggler {
    background-color: #E2FFFA;
}

.section-title {
    font-family: monospace;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 100%;
}

.hero-section .carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero-section .carousel-item.active img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 10;
    background: linear-gradient(
        135deg,
        rgba(31, 57, 50, 0.7) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

.hero-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: #E2FFFA;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: monospace;
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.hero-highlight {
    color: #E2FFFA;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: #E2FFFA;
    color: #1F3932;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #E2FFFA;
}

.hero-btn-primary:hover {
    background: #fff;
    color: #1F3932;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-btn-secondary {
    background: transparent;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 1.75rem;
    font-weight: 700;
    color: #E2FFFA;
    display: flex;
    align-items: center;
}

.hero-stat-number i {
    font-size: 1rem;
    color: #f5c518;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-indicators {
    position: absolute;
    bottom: 100px;
    right: 50px;
    z-index: 15;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hero-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-indicators button.active {
    background: #E2FFFA;
    border-color: #E2FFFA;
    height: 30px;
    border-radius: 6px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
    color: #E2FFFA;
}

.hero-scroll-indicator i {
    font-size: 1.25rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(8px);
    }
    60% {
        transform: translateY(4px);
    }
}

@media (max-width: 991px) {
    .hero-section {
        height: 90vh;
        min-height: 550px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-indicators {
        right: 20px;
        bottom: 80px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        height: 100vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

    .hero-stat {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .hero-indicators {
        display: none;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }
}

#sobre-o-restaurante, #cardapio {
    background-color: #E2FFFA;
}

.text-colored {
    color: #1F3932;
}

.text-highlight {
    color: #E2FFFA;
}

/* Destaques Section */
#destaques {
    background: linear-gradient(135deg, #1F3932 0%, #2d574b 100%);
    position: relative;
    overflow: hidden;
}

#destaques::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(226, 255, 250, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

#destaques .section-title {
    color: #fff;
}

#destaques .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.highlights-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: #E2FFFA;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 200px;
    gap: 1.25rem;
}

.highlight-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    grid-column: span 3;
    grid-row: span 1;
}

.highlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.highlight-card:hover img {
    transform: scale(1.1);
}

.highlight-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 1;
    transition: all 0.4s ease;
}

.highlight-card:hover .highlight-overlay {
    background: linear-gradient(to top, rgba(31, 57, 50, 0.95) 0%, rgba(31, 57, 50, 0.6) 50%, transparent 100%);
}

.highlight-tag {
    display: inline-block;
    background: #E2FFFA;
    color: #1F3932;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
    width: fit-content;
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.highlight-card:hover .highlight-tag {
    transform: translateY(0);
    opacity: 1;
}

.highlight-overlay h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.highlight-card:hover .highlight-overlay h3 {
    transform: translateY(0);
}

.highlight-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.15s;
}

.highlight-card:hover .highlight-overlay p {
    transform: translateY(0);
    opacity: 1;
}

.highlight-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.75rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.highlight-card:hover .highlight-rating {
    transform: translateY(0);
    opacity: 1;
}

.highlight-rating i {
    color: #f5c518;
    font-size: 0.875rem;
}

.highlight-rating span {
    color: #fff;
    font-weight: 700;
    margin-left: 0.5rem;
}

.highlight-card-large {
    grid-column: span 6;
    grid-row: span 2;
}

.highlight-card-large .highlight-overlay {
    padding: 2rem;
}

.highlight-card-large .highlight-overlay h3 {
    font-size: 1.75rem;
}

.highlight-card-large .highlight-overlay p {
    font-size: 1rem;
}

.highlight-card-wide {
    grid-column: span 6;
}

@media (max-width: 991px) {
    .highlights-grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 180px;
    }

    .highlight-card {
        grid-column: span 3;
    }

    .highlight-card-large {
        grid-column: span 6;
        grid-row: span 2;
    }

    .highlight-card-wide {
        grid-column: span 6;
    }

    .highlight-tag {
        transform: translateY(0);
        opacity: 1;
    }

    .highlight-overlay p {
        transform: translateY(0);
        opacity: 1;
    }

    .highlight-rating {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (max-width: 575px) {
    .highlights-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .highlight-card,
    .highlight-card-large,
    .highlight-card-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* Cardápio Section */
#cardapio {
    background-color: #E2FFFA;
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.menu-category-btn {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 12px;
    font-weight: 600;
    color: #1F3932;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
}

.menu-category-btn:hover {
    border-color: #1F3932;
    transform: translateX(5px);
}

.menu-category-btn.active {
    background: #1F3932;
    color: #fff;
}

.menu-item-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.menu-item-image {
    height: 200px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu-item-card:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-content {
    padding: 1.25rem;
}

.menu-item-content h5 {
    color: #1F3932;
    margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
    .menu-categories {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu-category-btn {
        flex: 0 0 auto;
    }

    .menu-category-btn:hover {
        transform: translateY(-3px);
    }
}

/* Depoimentos Section */
#depoimentos {
    background-color: #E2FFFA;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card.featured {
    background: #1F3932;
    color: #fff;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-card.featured .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.testimonial-card.featured .testimonial-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.testimonial-stars {
    margin-bottom: 1rem;
    color: #f5c518;
}

.testimonial-stars i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: #E2FFFA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1F3932;
    font-size: 1.5rem;
}

.testimonial-author h5 {
    color: #1F3932;
}

.testimonial-card.featured .testimonial-author h5 {
    color: #fff;
}

/* Fale Conosco Section */
#fale-conosco {
    background-color: #f8f9fa;
}

.contact-form-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-card .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-card .form-control:focus {
    border-color: #1F3932;
    box-shadow: 0 0 0 3px rgba(31, 57, 50, 0.1);
}

.contact-form-card .form-label {
    color: #1F3932;
    margin-bottom: 0.5rem;
}

.btn-enviar {
    background-color: #1F3932;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-enviar:hover {
    background-color: #2d574b;
    color: #fff;
    transform: translateY(-2px);
}

.contact-info {
    background: #1F3932;
    padding: 2.5rem;
    border-radius: 16px;
    height: 100%;
}

.contact-info h4 {
    color: #fff;
    font-size: 1.1rem;
}

.contact-info .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.25rem;
    color: #fff;
}

.social-links-modern {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.1rem;
}

.hist-container img {
    width: 50%;
    object-fit: cover;
}

@media (max-width: 767px) {
    .hist-container {
        flex-direction: column;
    }

    .hist-container img {
        width: 100%;
    }
}

.image-container {
    height: 400px; /* Adjust the height as needed */
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.hist-container {
    display: flex;
}

