/* Reset e Variáveis */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #C62828;
    --primary-green: #1B5E20;
    --bg-light: #FAFAFA;
    --bg-cream: #F5F5F0;
    --text-dark: #212121;
    --text-gray: #616161;
    --white: #FFFFFF;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    font-size: 20px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-cart-header {
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-cart-header:hover {
    background-color: #155415;
    transform: translateY(-2px);
}

.cart-count {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.btn-pedido-header {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-pedido-header:hover {
    background-color: #B71C1C;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menu Mobile */
.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-menu a {
    display: block;
    padding: 18px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-menu a:hover {
    background-color: var(--bg-light);
    padding-left: 30px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('https://images.unsplash.com/photo-1513104890138-7c749659a591?w=1200&h=800&fit=crop') center/cover;
    margin-top: 70px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 35px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 16px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    max-width: 280px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #B71C1C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
}

/* Section Titles */
.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

/* Sabores Section */
.sabores {
    padding: 80px 0;
    background-color: var(--white);
}

.pizza-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.pizza-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.pizza-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pizza-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.pizza-info {
    padding: 20px;
}

.pizza-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.pizza-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.pizza-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pizza-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
}

.btn-add-cart {
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background-color: #B71C1C;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
}

.btn-add-cart:active {
    transform: scale(0.95);
}

/* Bebidas Section */
.bebidas {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.bebidas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.bebida-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.bebida-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.bebida-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.bebida-info {
    padding: 20px;
}

.bebida-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.bebida-description {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.bebida-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bebida-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
}

/* Diferenciais Section */
.diferenciais {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.diferencial-card {
    background-color: var(--white);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.diferencial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.diferencial-icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.diferencial-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.diferencial-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--bg-cream);
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
    color: var(--text-dark);
    line-height: 1.3;
}

.btn-cta {
    background-color: var(--primary-red);
    color: var(--white);
    padding: 18px 50px;
    font-size: 18px;
    border-radius: 35px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    margin-bottom: 35px;
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.3);
}

.btn-cta:hover {
    background-color: #B71C1C;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 320px;
    justify-content: center;
}

.whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.whatsapp:hover {
    background-color: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

.phone {
    background-color: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.phone:hover {
    background-color: var(--text-dark);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 24px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-green));
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    font-size: 42px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.footer-logo-text {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    font-size: 15px;
    color: #c0c0c0;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--primary-red);
    border-radius: 2px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-item:hover {
    transform: translateX(5px);
}

.footer-icon {
    font-size: 22px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.footer-item p {
    margin: 0;
    color: #d8d8d8;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-red);
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 20px rgba(198, 40, 40, 0.4);
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.copyright {
    font-size: 15px;
    color: #b8b8b8;
    margin-bottom: 10px;
    font-weight: 400;
}

.footer-dev {
    font-size: 13px;
    color: #909090;
    font-weight: 300;
    font-style: italic;
}

/* Modal do Carrinho */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
}

.cart-modal.active {
    display: block;
}

.cart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.cart-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 450px;
    background-color: var(--white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    animation: slideInRight 0.3s ease;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 2px solid #f0f0f0;
    background-color: var(--white);
}

.cart-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.close-cart {
    background: none;
    border: none;
    font-size: 36px;
    color: var(--text-gray);
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.close-cart:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 25px;
}

.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 80px;
    display: block;
    margin-bottom: 20px;
    opacity: 0.3;
}

.empty-cart p {
    font-size: 18px;
    color: var(--text-gray);
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

.item-info {
    flex: 1;
}

.item-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.item-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
}

.item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.btn-qty {
    width: 32px;
    height: 32px;
    border: 2px solid var(--primary-red);
    background-color: var(--white);
    color: var(--primary-red);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-qty:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

.item-qty {
    font-size: 16px;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.btn-remove {
    background: none;
    border: none;
    color: var(--primary-red);
    cursor: pointer;
    font-size: 20px;
    padding: 5px;
    transition: all 0.3s ease;
}

.btn-remove:hover {
    transform: scale(1.2);
}

.cart-summary {
    padding: 20px 25px;
    border-top: 2px solid #f0f0f0;
    background-color: var(--bg-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 16px;
}

.summary-row.total {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    padding-top: 12px;
    border-top: 2px solid #e0e0e0;
    margin-top: 8px;
}

.cart-actions {
    padding: 20px 25px;
    background-color: var(--white);
}

.btn-finalizar {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-finalizar:hover {
    background-color: #B71C1C;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
}

/* Modal de Bebidas */
.bebidas-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
}

.bebidas-modal.active {
    display: flex;
}

.bebidas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.bebidas-content {
    position: relative;
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.3s ease;
    z-index: 1;
}

.close-bebidas {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-gray);
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s ease;
}

.close-bebidas:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

.bebidas-header {
    text-align: center;
    margin-bottom: 30px;
}

.bebidas-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 15px;
    animation: bounce 1s infinite;
}

.bebidas-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.bebidas-header p {
    font-size: 15px;
    color: var(--text-gray);
}

.bebidas-quick-list {
    display: grid;
    gap: 15px;
    margin-bottom: 25px;
}

.bebida-quick-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bebida-quick-card:hover {
    border-color: var(--primary-green);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(27, 94, 32, 0.15);
}

.bebida-quick-img {
    font-size: 40px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-cream);
    border-radius: 12px;
}

.bebida-quick-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bebida-quick-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.bebida-quick-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-green);
}

.btn-quick-add {
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-quick-add:hover {
    background-color: #155415;
    transform: scale(1.1);
}

.bebidas-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-ver-todas {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ver-todas:hover {
    background-color: #B71C1C;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
}

.btn-nao-obrigado {
    width: 100%;
    padding: 14px;
    background-color: transparent;
    color: var(--text-gray);
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-nao-obrigado:hover {
    background-color: #f5f5f5;
    border-color: var(--text-gray);
    color: var(--text-dark);
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Modal de Checkout */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    overflow-y: auto;
    padding: 20px 0;
}

.checkout-modal.active {
    display: flex;
}

.checkout-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 100%;
    margin: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.3s ease;
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 2px solid #f0f0f0;
}

.btn-voltar {
    background: none;
    border: none;
    color: var(--primary-red);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-voltar:hover {
    transform: translateX(-5px);
}

.checkout-header h2 {
    font-size: 22px;
    font-weight: 700;
}

.close-checkout {
    background: none;
    border: none;
    font-size: 32px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-checkout:hover {
    color: var(--primary-red);
}

/* Indicador de Etapas */
.steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-bottom: 2px solid #f0f0f0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #9e9e9e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary-red);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.4);
    transform: scale(1.1);
}

.step.completed .step-number {
    background-color: var(--primary-green);
    color: var(--white);
}

.step.completed .step-number::before {
    content: '✓';
}

.step-label {
    font-size: 10px;
    font-weight: 600;
    color: #9e9e9e;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.step.active .step-label {
    color: var(--primary-red);
}

.step.completed .step-label {
    color: var(--primary-green);
}

.step-line {
    flex: 1;
    height: 3px;
    background-color: #e0e0e0;
    margin: 0 3px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    min-width: 20px;
}

.step.completed + .step-line {
    background-color: var(--primary-green);
}

/* Etapas do Checkout */
.checkout-step {
    display: none;
    animation: fadeSlideIn 0.4s ease;
}

.checkout-step.active {
    display: block;
}

.step-content {
    max-width: 500px;
    margin: 0 auto;
}

.step-icon {
    font-size: 64px;
    text-align: center;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease;
}

.step-content h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 15px;
    margin-bottom: 30px;
}

/* Seções de Revisão */
.review-section {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.review-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.review-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 8px;
    line-height: 1.6;
}

.review-info strong {
    color: var(--text-dark);
    font-weight: 600;
}

.review-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.review-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: var(--white);
    border-radius: 8px;
    font-size: 14px;
}

/* Botões de Navegação */
.checkout-actions {
    display: flex;
    gap: 12px;
    padding: 20px 25px;
    border-top: 2px solid #f0f0f0;
    background-color: var(--white);
}

.btn-step {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-prev {
    background-color: transparent;
    color: var(--text-gray);
    border: 2px solid #e0e0e0;
}

.btn-prev:hover {
    background-color: #f5f5f5;
    border-color: var(--text-gray);
}

.btn-next {
    background: linear-gradient(135deg, var(--primary-red) 0%, #B71C1C 100%);
    color: var(--white);
    border: none;
}

.btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(198, 40, 40, 0.4);
}

.btn-confirmar-pedido {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #155415 100%);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirmar-pedido:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.4);
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.checkout-body {
    padding: 25px;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(198, 40, 40, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.payment-option {
    cursor: pointer;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: var(--primary-red);
    background-color: rgba(198, 40, 40, 0.05);
}

.payment-card:hover {
    border-color: var(--primary-red);
}

.payment-icon {
    font-size: 24px;
}

.payment-details {
    margin-top: 15px;
}

.pix-info {
    text-align: center;
    padding: 20px;
    background-color: var(--bg-cream);
    border-radius: 8px;
}

.checkout-summary {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.checkout-summary h3 {
    margin-bottom: 15px;
}

.resumo-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.checkout-total {
    margin-top: 15px;
}

.btn-confirmar-pedido {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
}

.btn-confirmar-pedido:hover {
    background-color: #155415;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(27, 94, 32, 0.4);
}

/* Modal de Sucesso */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
}

.success-modal.active {
    display: flex;
}

.success-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    animation: zoomIn 0.5s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 25px;
    animation: checkMark 0.6s ease 0.3s both;
}

.success-content h2 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.pedido-numero {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.success-message {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-whatsapp-final {
    padding: 16px 30px;
    background-color: #25D366;
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-whatsapp-final:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
}

.btn-novo-pedido {
    padding: 16px 30px;
    background-color: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-novo-pedido:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

/* Popup de Bebida */
.popup-bebida {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 5000;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-bebida.active {
    display: flex;
}

.popup-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: bounceIn 0.5s ease;
}

.popup-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.popup-content p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.popup-bebidas {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.popup-bebida-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: var(--bg-cream);
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 600;
}

.popup-bebida-item:hover {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
    transform: scale(1.05);
}

.btn-popup-fechar {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    color: var(--text-gray);
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-popup-fechar:hover {
    color: var(--text-dark);
}

/* Notification */
.notification {
    position: fixed;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-green);
    color: var(--white);
    padding: 16px 30px;
    border-radius: 30px;
    box-shadow: var(--shadow-hover);
    z-index: 6000;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
}

.notification.show {
    bottom: 30px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes checkMark {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Responsive - Tablet */
@media (min-width: 768px) {
    .menu-toggle {
        display: none !important;
    }

    .mobile-menu {
        position: static;
        transform: translateY(0);
        opacity: 1;
        box-shadow: none;
        background-color: transparent;
        display: flex !important;
        flex-direction: row;
        gap: 20px;
    }

    .mobile-menu a {
        padding: 0;
        border: none;
        color: var(--text-dark);
        font-size: 14px;
    }

    .mobile-menu a:hover {
        background-color: transparent;
        padding-left: 0;
        color: var(--primary-red);
    }

    .header-container {
        justify-content: space-between;
    }

    .hero-title {
        font-size: 52px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .pizza-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .bebidas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .diferenciais-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .contact-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
        gap: 60px;
    }

    .footer-section:first-child {
        text-align: left;
    }

    .footer-section:first-child .footer-logo {
        justify-content: flex-start;
    }

    .footer-title::after {
        left: 0;
        transform: translateX(0);
    }

    .footer-info {
        align-items: flex-start;
    }

    .footer-item {
        justify-content: flex-start;
    }

    .footer-item:hover {
        transform: translateX(10px);
    }

    .social-links {
        justify-content: flex-start;
    }

    .payment-options {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-indicator {
        padding: 25px 30px;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .step-label {
        font-size: 12px;
    }

    .step-line {
        margin: 0 10px;
        min-width: 40px;
    }

    .checkout-actions {
        flex-direction: row;
    }

    .btn-confirmar-pedido {
        width: 100%;
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 62px;
    }

    .section-title {
        font-size: 38px;
    }

    .pizza-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .bebidas-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-title {
        font-size: 38px;
    }

    .cart-content {
        width: 450px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.pizza-image img,
.bebida-image img {
    background-color: #f0f0f0;
}

/* Touch Devices */
@media (hover: none) {
    .btn:active {
        transform: scale(0.95);
    }
}
