:root {
    --bg-dark: #1c1a19;
    --bg-alt: #2c2a29;
    --brand-orange: #f15223;
    --text-light: #ffffff;
    --text-muted: #dddddd;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><text y='28' font-size='26'>🍕</text></svg>") 4 4, auto !important;
}

body {
    font-family: 'Urbanist', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Nunito', sans-serif;
}

.promo-price, .pizza-preco, .preco-unico {
    color: #ffffff;
    text-shadow: 0 0 18px rgba(241, 82, 35, 0.7);
}

nav a, .btn, .btn-reserva, .section-title {
    font-family: 'Nunito', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

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

/* Header & Navigation */
header {
    background-color: rgb(5, 5, 5);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--brand-orange);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 40px;
}

.logo {
    flex-shrink: 0; /* Don't allow logo to shrink */
}

.logo img {
    height: 60px; /* Slightly reduced base height */
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    transition: var(--transition);
    filter: brightness(1.1) contrast(1.1) drop-shadow(0 0 2px rgba(255,255,255,0.1));
}

nav {
    display: flex;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 10px;
}

nav ul li {
    margin-left: 0;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem; /* Better base size for 7 items */
    letter-spacing: 0.1px;
    transition: var(--transition);
    white-space: nowrap;
}

nav ul li a:hover {
    color: var(--brand-orange);
}

.btn-reserva {
    background-color: var(--brand-orange);
    padding: 8px 15px;
    border-radius: 50px;
    color: #fff !important;
    text-transform: uppercase;
    font-size: 0.75rem !important;
    box-shadow: 0 4px 15px rgba(241, 82, 35, 0.3);
}

.btn-reserva-outline {
    background-color: transparent !important;
    border: 2px solid var(--brand-orange);
    box-shadow: none !important;
}

.btn-reserva:hover {
    background-color: #d1421b;
    transform: translateY(-2px);
}

.btn-reserva-outline:hover {
    background-color: var(--brand-orange) !important;
    color: #fff !important;
}

/* Intermediate screens adjustment */
@media (max-width: 1200px) and (min-width: 1025px) {
    .container {
        padding: 0 15px;
    }
    nav ul {
        gap: 10px;
    }
    nav ul li a {
        font-size: 0.8rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 10px;
    }
    .logo img {
        height: 45px;
    }
    nav ul {
        gap: 8px;
    }
    nav ul li a {
        font-size: 0.75rem;
    }
    .btn-reserva {
        padding: 5px 10px;
        font-size: 0.7rem !important;
    }
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 4px 0;
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('fundo site.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    line-height: 1.4;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #f0f0f0;
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
}

.hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
}
.hero-buttons .btn {
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-insta {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-insta:hover {
    background-color: #ffffff;
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.btn-app {
    background-color: var(--brand-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(241, 82, 35, 0.4);
}

.btn-app:hover {
    background-color: #d1421b;
    transform: translateY(-3px);
}

.btn-cta {
    background-color: var(--brand-orange);
    color: #fff;
    font-size: 1.2rem;
    margin-top: 20px;
}

/* Sections */
.section {
    padding: 100px 0;
}
.destaques-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.destaque-card {
    background-color: var(--bg-alt);
    border-radius: 20px;
    padding: 50px 40px;
    border-bottom: 4px solid var(--brand-orange);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transition: var(--transition);
}
.destaque-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.destaque-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}
.destaque-card-marcado {
    background-color: var(--bg-dark);
    border: 2px solid rgba(241, 82, 35, 0.45);
    border-bottom: 5px solid var(--brand-orange);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.bg-alt {
    background-color: var(--bg-alt);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
    color: #ffffff;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 5px;
    background-color: var(--brand-orange);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* Grid & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.card {
    background-color: var(--bg-alt);
    padding: 40px;
    border-radius: 15px;
    border-left: 8px solid var(--brand-orange);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.card h3 {
    color: var(--brand-orange);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card p {
    font-size: 1.1rem;
    color: #eeeeee;
}

/* Info & Location */
.info-content p {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #f9f9f9;
}

.info-content strong {
    color: var(--brand-orange);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjusted min-width */
    gap: 40px;
}

.location-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.address {
    text-align: center;
    color: #f0f0f0;
}

.address h3 {
    color: var(--brand-orange);
    font-size: 1.6rem; /* Slightly smaller */
    margin-bottom: 10px;
    font-weight: 700;
}

.address p {
    font-size: 1rem;
    line-height: 1.5;
}

/* Footer */
footer {
    background-color: var(--bg-alt);
    border-top: 1px solid #333;
    padding: 50px 0 30px;
    color: #aaaaaa;
    font-size: 0.95rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 36px;
    margin-bottom: 28px;
    border-bottom: 1px solid #333;
}
.footer-heading {
    color: var(--brand-orange);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
    display: block;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--brand-orange);
}
.footer-contato {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-insta,
.footer-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #aaa;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
}
.footer-insta:hover,
.footer-tel:hover {
    color: var(--brand-orange);
}
.footer-bottom {
    text-align: center;
}
.footer-bottom p {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 6px;
}
.footer-bottom a {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
}
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        justify-content: center;
    }
    .footer-contato {
        align-items: center;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-alt);
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    border: 1px solid #444;
    text-align: center;
}

.app-selection-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.app-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: #1c1a19;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: var(--transition);
    border: 1px solid transparent;
}

.app-option:hover {
    transform: translateY(-5px);
    border-color: var(--brand-orange);
    background-color: #252322;
}

.app-option img {
    width: 50px;
    height: 50px;
}

.app-option span {
    font-weight: 600;
    font-size: 0.9rem;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--brand-orange);
}

.modal-content h3 {
    margin-bottom: 25px;
    color: var(--brand-orange);
    text-align: center;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ddd;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #444;
    background-color: #1c1a19;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-orange);
}

.w-100 {
    width: 100%;
}

/* Success Step */
.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.verificador-box {
    background-color: #1c1a19;
    padding: 20px;
    border-radius: 12px;
    border: 2px dashed var(--brand-orange);
    margin: 25px 0;
}

#codigo-verificador {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brand-orange);
    letter-spacing: 3px;
    margin-top: 5px;
}

.warning-text {
    color: #ffcc00;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Navbar Mobile Fix */
    header {
        padding: 5px 0;
    }

    .navbar {
        height: 70px;
    }

    .logo img {
        height: 50px;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(28, 26, 25, 0.98);
        padding: 30px 20px;
        border-bottom: 3px solid var(--brand-orange);
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 10px;
        font-size: 1.2rem;
    }

    .btn-reserva {
        display: inline-block !important;
        width: auto;
        margin-top: 10px;
    }

    .menu-toggle {
        display: flex;
        padding: 10px;
    }

    /* Hero Responsive */
    .hero {
        padding-top: 80px;
        height: auto;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 1.85rem;
        white-space: normal;
        padding: 0 10px;
    }

    .hero-content p {
        font-size: 1rem;
        white-space: normal;
        padding: 0 10px;
    }

    .hero-buttons {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 0 16px;
        max-width: 100%;
    }

    .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }
    .destaques-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .destaque-card {
        padding: 36px 24px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 35px;
    }

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

    .card {
        padding: 25px;
    }

    .map-container iframe {
        height: 220px;
    }

    /* Modal mobile */
    .modal-content {
        padding: 30px 20px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .app-selection-grid {
        gap: 14px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.55rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        padding: 0 16px;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .btn-reserva {
        padding: 10px 16px;
    }

    .form-group input,
    .form-group select {
        font-size: 16px; /* evita zoom automático do iOS */
    }
}
