@import url("./tokens.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    background-color: var(--text);
    color: #1a1a1a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

/* Animações */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gearRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Info bar */
.info-bar {
    width: min(1200px, 100% - 40px);
    margin: 0 auto 60px;
    padding: 50px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    background-color: var(--text);
    justify-content: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover:not(:last-child of type(2)) {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.info-location,
.info-reservation {
    cursor: pointer;
}

.info-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #FFA400;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 8px 18px rgba(255, 164, 0, 0.25);
}

.info-item h3 {
    margin: 0 0 4px;
    font-size: 16px;
    color: #202020;
}

.info-item p {
    margin: 0;
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.4;
}

/* History section */
.history-section {
    width: min(1200px, 100% - 40px);
    margin: 0 auto 80px;
}

.history-grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.2fr) minmax(260px, 1fr);
    gap: 28px;
    align-items: center;
}

.history-image img {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    object-fit: cover;
}

.history-text {
    border-left: 2px solid #d8d0c0;
    padding-left: 24px;
}

.history-text h2 {
    margin: 0 0 12px;
    font-size: 26px;
    color: #1f1f1f;
}

.history-text p {
    margin: 0;
    color: #4a4a4a;
    line-height: 1.6;
}

/* Hero Section */
.hero-section {
    width: 100vw;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 80px 40px 60px;
    background: linear-gradient(180deg, #faefe0 0%, #ffffff 65%);
    margin: auto;
    overflow: hidden;
}

.hero-container {
    width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Hero Content */
.hero-content {
    padding-right: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInLeft 0.8s ease-out;
}


.hero-title {
    font-size: clamp(52px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    color: #000;
    transition: transform 0.3s ease;
}

.hero-title .highlight {
    color: #FFB703;
    display: block;
}

.hero-subtitle {
    font-size: 16px;
    color: #3b3b3b;
    margin: 0;
    font-weight: 400;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    align-self: flex-start;
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 80%;    
    background: #fff;
    border-radius: 250px 250px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    isolation: isolate;
    animation: slideInRight 0.8s ease-out;
    transform-origin: center;
}

.hero-image-wrapper::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: 240px 240px 0 0;
    z-index: 100;
    pointer-events: none;
}

.hero-image-wrapper::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: -25px;
    width: 120px;
    height: 120px;
    border: 2px dashed rgba(255, 164, 0, 0.4);
    border-radius: 50%;
    z-index: 0;
}

.hero-image-wrapper img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
    border-radius: 250px 250px 0 0;
    position: relative;
    z-index: 1;
    transition: transform 0.6s ease;
}

.hero-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Responsive */

/* Telas Grandes - Desktops */
@media (max-width: 1440px) {
    .hero-container {
        gap: 80px;
        max-width: 90%;
    }

    .hero-title {
        font-size: clamp(48px, 5vw, 60px);
    }

    .services-container {
        gap: 40px;
    }

    .services-title {
        font-size: clamp(32px, 3.5vw, 40px);
    }

    .section-title {
        font-size: clamp(32px, 3.5vw, 40px);
    }
}

/* Tablets Grandes - 1024px */
@media (max-width: 1024px) {
    .hero-section {
        padding: 60px 20px 40px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 100%;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: clamp(38px, 6vw, 48px);
        margin: 0;
    }

    .hero-subtitle {
        font-size: 15px;
        margin: 0;
        max-width: 500px;
    }

    .hero-btn {
        margin: 0 auto;
    }

    .hero-image {
        display: flex;
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-image-wrapper img {
        height: 500px;
    }

    .info-bar {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 50px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
        align-items: center;
    }

    .services-text {
        text-align: center;
        align-items: center;
    }

    .services-label {
        justify-content: center;
    }

    .services-description {
        max-width: 100%;
        font-size: 16px;
    }

    .services-cards {
        justify-items: center;
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }

    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Tablets - 968px */
@media (max-width: 968px) {
    .hero-section {
        padding: 50px 18px;
        min-height: auto;
        min-height: calc(100vh - 70px);
    }

    .hero-container {
        gap: 25px;
    }

    .hero-content {
        margin-top: 0;
    }

    .hero-title {
        font-size: clamp(34px, 7vw, 44px);
        margin: 0;
    }

    .hero-subtitle {
        font-size: 14px;
        margin: 0;
    }

    .hero-btn {
        max-width: 300px;
    }

    .hero-image-wrapper {
        max-width: 320px;
    }

    .hero-image-wrapper img {
        height: 420px;
        border-radius: 210px 210px 0 0;
    }

    .history-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .history-text {
        border-left: none;
        border-top: 2px solid #d8d0c0;
        padding-left: 0;
        padding-top: 16px;
        text-align: center;
    }

    .history-text h2 {
        font-size: 24px;
    }

    .history-image img {
        height: 400px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-cards {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
    }

    .services-title {
        font-size: clamp(28px, 5vw, 36px);
    }

    .popular-dishes-section {
        margin: 60px auto;
        padding: 30px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-title {
        font-size: clamp(28px, 5vw, 36px);
        margin: 10px 0 14px;
    }

    .section-description {
        font-size: 15px;
    }

    .dishes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
        margin-bottom: 40px;
    }

    .dish-image {
        height: 240px;
    }

    .dish-name {
        font-size: 18px;
    }

    .dish-price {
        font-size: 22px;
    }

    .order-btn {
        padding: 9px 20px;
        font-size: 13px;
    }

    .view-all-btn {
        padding: 14px 40px;
        font-size: 15px;
    }

    .testimonials-section {
        margin: 60px auto;
        padding: 30px 0;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonials-title {
        font-size: clamp(28px, 5vw, 40px);
        margin: 10px 0 14px;
    }

    .testimonial-card {
        padding: 24px;
        gap: 16px;
    }

    .reservation-section {
        min-height: 450px;
        padding: 45px 18px;
        margin: 60px 0 0 0;
    }

    .reservation-content {
        padding: 40px;
    }

    .reservation-title {
        font-size: clamp(28px, 5vw, 38px);
        margin: 10px 0 24px;
    }

    .form-row-multiple {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .form-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .reservation-btn {
        padding: 14px 36px;
        font-size: 15px;
    }
}

    /* ===== Modal de Confirmação (Home/Reserva/Contato) ===== */
    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.3s ease-in-out;
    }

    .modal-overlay.show {
        display: flex;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideUp {
        from { transform: translateY(30px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    .modal-content {
        background-color: #FFF4E6;
        border-radius: 8px;
        padding: 32px;
        max-width: 500px;
        width: 90%;
        text-align: center;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        animation: slideUp 0.4s ease-out;
    }

    .modal-icon-check {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background-color: #FF9A00;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 3rem;
        color: white;
        animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    @keyframes scaleIn {
        from { transform: scale(0); }
        to { transform: scale(1); }
    }

    .modal-content h2 {
        color: #FF9A00;
        font-size: 1.75rem;
        font-weight: 700;
        margin: 0 0 12px 0;
        letter-spacing: -0.5px;
    }

    .modal-content p {
        color: #666;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .modal-btn {
        display: inline-block;
        padding: 14px 28px;
        background-color: #FF9A00;
        color: white;
        border-radius: 6px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .modal-btn:hover {
        background-color: #e68a00;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
        transform: translateY(-2px);
    }

    .modal-btn:active {
        transform: translateY(0);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    @media (max-width: 480px) {
        .modal-content { padding: 24px; width: 95%; }
        .modal-icon-check { width: 60px; height: 60px; font-size: 2rem; margin-bottom: 16px; }
        .modal-content h2 { font-size: 1.4rem; }
        .modal-content p { font-size: 0.9rem; }
        .modal-btn { padding: 12px 22px; font-size: 0.95rem; }
    }

/* Tablets - 768px */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .hero-section {
        padding: 40px 16px;
        min-height: calc(100vh - 65px);
    }

    .hero-container {
        gap: 22px;
    }

    .hero-content {
        margin-top: 0;
    }

    .hero-title {
        font-size: clamp(32px, 7vw, 42px);
        margin: 0;
    }

    .hero-subtitle {
        font-size: 14px;
        margin: 0;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 13px;
        max-width: 280px;
    }

    .hero-image-wrapper {
        max-width: 280px;
    }

    .hero-image-wrapper img {
        height: 380px;
        border-radius: 220px 220px 0 0;
    }

    .info-bar {
        width: min(1200px, 100% - 32px);
        gap: 14px;
        margin-bottom: 40px;
        padding: 0;
    }

    .info-item h3 {
        font-size: 15px;
    }

    .info-item p {
        font-size: 13px;
    }

    .history-section {
        width: min(1200px, 100% - 32px);
        margin: 0 auto 50px;
    }

    .history-text h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .history-text p {
        font-size: 14px;
    }

    .history-image img {
        height: 350px;
        border-radius: 6px;
    }

    .popular-dishes-section {
        width: min(1200px, 100% - 32px);
        margin: 50px auto;
        padding: 25px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-label {
        font-size: 12px;
        margin-bottom: 10px;
        padding: 6px 16px;
    }

    .section-title {
        font-size: clamp(26px, 6vw, 32px);
        margin: 10px 0 12px;
    }

    .section-description {
        font-size: 14px;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .dish-image {
        height: 220px;
    }

    .dish-content {
        padding: 16px;
    }

    .dish-name {
        font-size: 17px;
    }

    .dish-price {
        font-size: 20px;
    }

    .order-btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .view-all-btn {
        padding: 12px 36px;
        font-size: 14px;
        max-width: 100%;
    }

    .testimonials-section {
        width: min(1200px, 100% - 32px);
        margin: 50px auto;
        padding: 25px 0;
    }

    .testimonials-title {
        font-size: clamp(26px, 6vw, 36px);
        margin: 10px 0 12px;
    }

    .testimonials-description {
        font-size: 14px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .testimonial-card {
        padding: 20px;
        gap: 14px;
    }

    .testimonial-text {
        font-size: 13px;
        line-height: 1.6;
    }

    .reservation-section {
        min-height: 400px;
        padding: 35px 16px;
        background-attachment: scroll;
        margin: 50px 0 0 0;
    }

    .reservation-container {
        width: min(1200px, 100% - 32px);
    }

    .reservation-content {
        padding: 30px 20px;
        border-radius: 8px;
    }

    .reservation-label {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .reservation-title {
        font-size: clamp(22px, 6vw, 30px);
        margin: 8px 0 18px;
    }

    .form-row {
        flex-direction: column;
        gap: 12px;
    }

    .form-row-multiple {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-input {
        padding: 11px 14px;
        font-size: 14px;
    }

    .reservation-btn {
        padding: 12px 30px;
        font-size: 13px;
        margin-top: 6px;
    }
}

/* Celulares Grandes - 640px */
@media (max-width: 640px) {
    body {
        font-size: 14px;
    }

    .hero-section {
        padding: 30px 14px;
        min-height: calc(100vh - 60px);
    }

    .hero-container {
        gap: 20px;
    }

    .hero-content {
        margin-top: 0;
    }

    .hero-title {
        font-size: clamp(28px, 7vw, 36px);
        margin: 0;
    }

    .hero-subtitle {
        font-size: 13px;
        margin: 0;
    }

    .hero-btn {
        padding: 11px 26px;
        font-size: 12px;
        max-width: 260px;
    }

    .hero-image-wrapper {
        max-width: 260px;
    }

    .hero-image-wrapper img {
        height: 350px;
        border-radius: 200px 200px 0 0;
    }

    .info-bar {
        width: min(1200px, 100% - 28px);
        gap: 12px;
        margin-bottom: 35px;
    }

    .info-icon {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .info-item h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }

    .info-item p {
        font-size: 12px;
    }

    .history-section {
        width: min(1200px, 100% - 28px);
        margin: 0 auto 40px;
    }

    .history-text {
        border-top: 2px solid #d8d0c0;
        padding-top: 14px;
    }

    .history-text h2 {
        font-size: 20px;
    }

    .history-text p {
        font-size: 13px;
    }

    .history-image img {
        height: 300px;
    }

    .popular-dishes-section {
        width: min(1200px, 100% - 28px);
        margin: 40px auto;
        padding: 20px 0;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-title {
        font-size: clamp(22px, 6vw, 28px);
        margin: 8px 0 10px;
    }

    .section-description {
        font-size: 13px;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 25px;
    }

    .dish-image {
        height: 200px;
    }

    .dish-content {
        padding: 14px;
    }

    .dish-name {
        font-size: 16px;
    }

    .dish-price {
        font-size: 18px;
    }

    .order-btn {
        padding: 7px 16px;
        font-size: 11px;
    }

    .view-all-btn {
        padding: 11px 32px;
        font-size: 13px;
        max-width: 100%;
    }

    .testimonials-section {
        width: min(1200px, 100% - 28px);
        margin: 40px auto;
        padding: 20px 0;
    }

    .testimonials-title {
        font-size: clamp(22px, 6vw, 32px);
        margin: 8px 0 10px;
    }

    .testimonials-description {
        font-size: 13px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-card {
        padding: 18px;
        gap: 12px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-name {
        font-size: 15px;
    }

    .testimonial-location {
        font-size: 13px;
    }

    .testimonial-text {
        font-size: 12px;
    }

    .reservation-section {
        min-height: 380px;
        padding: 30px 12px;
        margin: 40px 0 0 0;
    }

    .reservation-container {
        width: min(1200px, 100% - 24px);
    }

    .reservation-content {
        padding: 25px 18px;
        border-radius: 6px;
    }

    .reservation-label {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .reservation-title {
        font-size: clamp(20px, 6vw, 26px);
        margin: 6px 0 16px;
    }

    .form-row {
        gap: 10px;
    }

    .form-row-multiple {
        gap: 10px;
    }

    .form-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .reservation-btn {
        padding: 11px 26px;
        font-size: 12px;
        margin-top: 4px;
    }
}

/* Celulares Pequenos - 480px */
@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    .hero-section {
        padding: 25px 12px;
        min-height: calc(100vh - 55px);
    }

    .hero-container {
        gap: 18px;
    }

    .hero-content {
        margin-top: 0;
    }

    .hero-title {
        font-size: clamp(24px, 6vw, 32px);
        margin: 0;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 12px;
        margin: 0;
    }

    .hero-btn {
        padding: 10px 22px;
        font-size: 11px;
        max-width: 240px;
    }

    .hero-image-wrapper {
        max-width: 220px;
    }

    .hero-image-wrapper img {
        height: 310px;
        border-radius: 170px 170px 0 0;
    }

    .info-bar {
        width: min(1200px, 100% - 24px);
        gap: 10px;
        margin-bottom: 30px;
        grid-template-columns: 1fr;
    }

    .info-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .info-item h3 {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .info-item p {
        font-size: 11px;
    }

    .history-section {
        width: min(1200px, 100% - 24px);
        margin: 0 auto 35px;
    }

    .history-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .history-text {
        border-top: 2px solid #d8d0c0;
        padding-top: 12px;
    }

    .history-text h2 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .history-text p {
        font-size: 12px;
        line-height: 1.5;
    }

    .history-image img {
        height: 260px;
        border-radius: 4px;
    }

    .popular-dishes-section {
        width: min(1200px, 100% - 24px);
        margin: 35px auto;
        padding: 15px 0;
    }

    .section-header {
        margin-bottom: 20px;
    }

    .section-label {
        font-size: 11px;
        margin-bottom: 8px;
        padding: 5px 14px;
    }

    .section-title {
        font-size: clamp(20px, 5vw, 26px);
        margin: 6px 0 8px;
    }

    .section-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .dishes-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-bottom: 20px;
    }

    .dish-image {
        height: 180px;
    }

    .dish-content {
        padding: 12px;
    }

    .dish-header {
        margin-bottom: 12px;
    }

    .dish-name {
        font-size: 15px;
    }

    .dish-price {
        font-size: 17px;
    }

    .order-btn {
        padding: 6px 14px;
        font-size: 10px;
    }

    .view-all-btn {
        padding: 10px 28px;
        font-size: 12px;
        max-width: 100%;
    }

    .testimonials-section {
        width: min(1200px, 100% - 24px);
        margin: 35px auto;
        padding: 15px 0;
    }

    .testimonials-title {
        font-size: clamp(20px, 5vw, 28px);
        margin: 6px 0 8px;
    }

    .testimonials-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testimonial-card {
        padding: 16px;
        gap: 12px;
    }

    .testimonial-header-card {
        gap: 12px;
    }

    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }

    .testimonial-name {
        font-size: 14px;
    }

    .testimonial-location {
        font-size: 12px;
    }

    .testimonial-text {
        font-size: 11px;
        line-height: 1.6;
    }

    .reservation-section {
        min-height: 360px;
        padding: 25px 10px;
        margin: 35px 0 0 0;
    }

    .reservation-container {
        width: min(1200px, 100% - 20px);
    }

    .reservation-content {
        padding: 20px 16px;
    }

    .reservation-label {
        font-size: 9px;
        margin-bottom: 6px;
    }

    .reservation-title {
        font-size: clamp(18px, 5vw, 24px);
        margin: 6px 0 14px;
    }

    .form-row {
        gap: 8px;
    }

    .form-row-multiple {
        gap: 8px;
    }

    .form-input {
        padding: 9px 11px;
        font-size: 12px;
    }

    .reservation-btn {
        padding: 10px 22px;
        font-size: 11px;
        width: 100%;
        margin-top: 2px;
    }
}

/* Ultra Pequenos - 360px */
@media (max-width: 360px) {
    body {
        font-size: 12px;
    }

    .hero-section {
        padding: 20px 10px;
    }

    .hero-title {
        font-size: clamp(20px, 5vw, 28px);
    }

    .hero-subtitle {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .hero-btn {
        padding: 9px 20px;
        font-size: 10px;
    }

    .hero-image-wrapper img {
        height: 280px;
    }

    .info-bar {
        width: min(1200px, 100% - 20px);
        gap: 8px;
        margin-bottom: 25px;
    }

    .info-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .history-section {
        width: min(1200px, 100% - 20px);
    }

    .history-text h2 {
        font-size: 16px;
    }

    .popular-dishes-section {
        width: min(1200px, 100% - 20px);
        margin: 30px auto;
    }

    .section-title {
        font-size: clamp(18px, 4vw, 22px);
    }

    .section-description {
        font-size: 11px;
    }

    .dishes-grid {
        gap: 12px;
    }

    .dish-image {
        height: 160px;
    }

    .dish-name {
        font-size: 14px;
    }

    .dish-price {
        font-size: 16px;
    }

    .view-all-btn {
        padding: 9px 24px;
        font-size: 11px;
    }

    .testimonials-section {
        width: min(1200px, 100% - 20px);
        margin: 30px auto;
    }

    .testimonial-card {
        padding: 14px;
    }

    .reservation-content {
        padding: 18px 14px;
    }

    .reservation-title {
        font-size: clamp(16px, 4vw, 22px);
    }

    .form-input {
        padding: 8px 10px;
        font-size: 11px;
    }

    .reservation-btn {
        padding: 9px 20px;
        font-size: 10px;
    }
}
.services-section {
    background: #f5f1e8;
    padding: 80px 20px;
}

.services-container {
    width: min(1200px, 100% - 40px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
    gap: 50px;
    align-items: center;
}

.services-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    letter-spacing: 3px;
    color: #2c2f32;
    text-transform: uppercase;
}

.services-label::before,
.services-label::after {
    content: "";
    display: block;
    height: 1px;
    width: 60px;
    background: #2c2f32;
    opacity: 0.5;
}

.services-title {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    color: #0f0f0f;
}

.services-description {
    font-size: 18px;
    color: #3b3b3b;
    line-height: 1.6;
    max-width: 520px;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
    justify-items: start;
}

.service-card {
    background: #2f3034;
    color: #fff;
    padding: 28px 22px;
    border-radius: 8px;
    min-width: 180px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 32px;
    color: #f4b02a;
}

.service-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-text {
        text-align: center;
        align-items: center;
    }

    .services-description {
        margin: 0 auto;
    }

    .services-cards {
        grid-template-columns: 1fr;
        justify-items: stretch;
    }

    .service-card {
        width: 100%;
    }
}

/* Services Responsive - REMOVIDO (incluído na seção principal acima) */

/* Popular Dishes Section */
.popular-dishes-section {
    width: min(1200px, 100% - 40px);
    margin: 80px auto;
    padding: 40px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 12px;
    padding: 8px 20px;
    border-bottom: 1px solid #FFB703;
    border-top: 1px solid #FFB703;
    border-radius: 0;
}

.section-title {
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 700;
    color: #1a1a1a;
    margin: 12px 0 16px;
}

.section-description {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Dishes Grid */
.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.dish-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.dish-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.1);
}

.dish-content {
    padding: 20px;
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.dish-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.dish-price {
    font-size: 24px;
    font-weight: 700;
    color: #FFB703;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.dish-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-score {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 15px;
}

.stars {
    display: flex;
    gap: 2px;
    color: #FFB703;
    font-size: 14px;
}

.order-btn {
    padding: 10px 24px;
    background: #FFB703;
    color: #000;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.order-btn:hover {
    background: #FFA400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 183, 3, 0.4);
}

/* View All Button */
.section-action {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    padding: 16px 48px;
    background: #FFB703;
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #FFA400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 183, 3, 0.4);
}

/* Responsividade das seções - REMOVIDO (incluído na seção principal acima) */

/* Testimonials Section */
.testimonials-section {
    width: min(1200px, 100% - 40px);
    margin: 80px auto;
    padding: 40px 0;
}

.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 20px;
}

.testimonials-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #FFB703;
}

.testimonials-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #1a1a1a;
    margin: 12px 0 16px;
    line-height: 1.1;
}

.testimonials-description {
    font-size: 17px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: #2f3238;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}

.testimonial-header-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #FFB703;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.testimonial-location {
    margin: 0;
    font-size: 14px;
    color: #FFB703;
    font-weight: 500;
}

.testimonial-divider {
    margin: 6px 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin: 8px 0;
}

.testimonial-rating i {
    font-size: 16px;
}

.testimonial-text {
    margin: 0;
    font-size: 15px;
    color: #e0e0e0;
    line-height: 1.7;
    font-style: italic;
}

.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: #999;
}

/* Testimonials Responsive - REMOVIDO (incluído na seção principal acima) */

/* Reservation Section */
.reservation-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: url('../images/gallery/predileto.jpg') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    margin: 80px 0 0 0;
}

.reservation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.reservation-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.reservation-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.reservation-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 3px;
    color: #FFB703;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.reservation-title {
    font-size: clamp(32px, 5vw, 44px);
    font-weight: 800;
    color: #1a1a1a;
    margin: 12px 0 32px;
    line-height: 1.1;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row-multiple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    color: #1a1a1a;
    background: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #FFB703;
    box-shadow: 0 0 0 3px rgba(255, 183, 3, 0.1);
}

.form-input-full {
    width: 100%;
}

.form-input::placeholder {
    color: #999;
}

.reservation-btn {
    padding: 16px 40px;
    background: #FFB703;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reservation-btn:hover {
    background: #FFA400;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 183, 3, 0.4);
}

.reservation-btn:active {
    transform: translateY(0);
}

/* Reservation Responsive - REMOVIDO (incluído na seção principal acima) */
   