* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f1e8;
    color: #333;
    line-height: 1.6;
}

/* Header */
.header {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #fef0f5 0%, #f9e1ea 50%, #fef0f5 100%);
    background-size: 400% 400%;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.15) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, rgba(255, 192, 203, 0.1) 2px, transparent 2px);
    background-size: 
        100px 100px,
        150px 150px,
        200px 200px;
    background-position: 
        0% 0%,
        100% 100%,
        50% 50%;
    opacity: 0.3;
    pointer-events: none;
    animation: textureMove 25s ease-in-out infinite alternate;
}

.header > * {
    position: relative;
    z-index: 1;
}

@keyframes textureMove {
    0% {
        background-position: 
            0% 0%,
            100% 100%,
            50% 50%;
    }
    100% {
        background-position: 
            10% 10%,
            90% 90%,
            60% 60%;
    }
}

.logo-container {
    margin-bottom: 20px;
}

.logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: transparent;
}

.logo-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.logo-text {
    color: #2c2c2c;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    padding: 5px;
    line-height: 1.2;
}

.brand-name {
    font-size: 2.5rem;
    font-weight: 300;
    color: #2c2c2c;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

/* Store Status */
.store-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

.status-indicator.status-open {
    background-color: #25d366;
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.6);
}

.status-indicator.status-closed {
    background-color: #ff4444;
    box-shadow: 0 0 8px rgba(255, 68, 68, 0.6);
}

.status-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.btn-menu {
    background-color: #ff6b9d;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-menu:hover {
    background-color: #ff8fab;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 40px 20px;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-image {
    width: 280px;
    height: 280px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: translateY(-5px);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.btn-secondary {
    background-color: #ff6b9d;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 200px;
}

.btn-secondary:hover {
    background-color: #ff8fab;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

.btn-primary {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    width: 200px;
}

.btn-primary:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #666;
    font-size: 1rem;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    color: #ff6b9d;
    transform: translateY(-2px);
}

.instagram-logo {
    width: 20px;
    height: 20px;
    fill: #666;
    transition: fill 0.3s ease;
}

.instagram-link:hover .instagram-logo {
    fill: #ff6b9d;
}

/* Delivery Info Section */
.delivery-info-section {
    padding: 40px 20px;
    background-color: #f5f1e8;
}

.delivery-info-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.delivery-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c2c2c;
    margin-bottom: 20px;
    text-align: center;
}

.delivery-content {
    background: transparent;
    padding: 25px;
    border-radius: 8px;
}

.delivery-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

.delivery-text:last-child {
    margin-bottom: 0;
}

.delivery-text strong {
    color: #2c2c2c;
    font-weight: 600;
}

.delivery-text.highlight {
    background-color: #f9f9f9;
    padding: 12px 15px;
    border-radius: 6px;
    border-left: 3px solid #ff6b9d;
    color: #2c2c2c;
    font-weight: 500;
    margin: 15px 0;
}

/* Menu Section */
.menu-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.categoria-section {
    margin-bottom: 80px;
}

.categoria-section:last-child {
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2c2c2c;
    font-weight: 300;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Product Card */
.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card.selected {
    border: 3px solid #ff6b9d;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.3);
}

.product-card.sem-estoque {
    opacity: 0.7;
    position: relative;
}

.product-card.sem-estoque:hover {
    transform: none;
}

.sem-estoque-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #ff4444;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 75%;
    background-color: #f0f0f0;
    display: block;
}

.product-image-torta {
    object-position: center 50%;
}

.product-image-ovomaltine {
    object-position: center center;
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b9d;
}

.quantity-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background-color: #ffe3ef;
    color: #ff6b9d;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.quantity-btn:hover {
    background-color: #ff6b9d;
    color: #fff;
    transform: translateY(-1px);
}

.quantity-btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    background-color: #f0f0f0;
    color: #ccc;
    transform: none;
}

.quantity-value {
    min-width: 20px;
    text-align: center;
    font-weight: 600;
    color: #555;
}

.quantity-container.disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* Sabores Container */
.sabores-container {
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.sabores-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.sabores-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sabor-option {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sabor-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ff6b9d;
}

.sabor-option label {
    cursor: pointer;
    font-size: 0.9rem;
    color: #666;
    user-select: none;
}

.sabor-option input[type="radio"]:checked + label {
    color: #ff6b9d;
    font-weight: 600;
}

/* Fixed Order Button */
.fixed-order-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: slideUp 0.3s ease;
    display: flex;
    gap: 15px;
    align-items: center;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-order {
    background: linear-gradient(135deg, #ff6b9d, #ff8fab);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4);
    transition: all 0.3s ease;
}

.btn-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5);
}

.btn-order:active {
    transform: translateY(-1px);
}

.btn-order.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, #999, #aaa);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-order.disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-clear {
    background-color: #e0e0e0;
    color: #333;
    border: none;
    padding: 18px 25px;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-clear:hover {
    background-color: #d0d0d0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-clear:active {
    transform: translateY(0);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 25px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: #333;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b9d;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.payment-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #ff6b9d;
}

.payment-option label {
    cursor: pointer;
    font-size: 0.95rem;
    color: #666;
    user-select: none;
    font-weight: normal;
    margin: 0;
}

.payment-option input[type="radio"]:checked + label {
    color: #ff6b9d;
    font-weight: 600;
}

.form-footer-text {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
    margin: 15px 0 0 0;
    font-style: italic;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn-cancel,
.btn-submit {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel {
    background-color: #e0e0e0;
    color: #333;
}

.btn-cancel:hover {
    background-color: #d0d0d0;
}

.btn-submit {
    background-color: #ff6b9d;
    color: white;
}

.btn-submit:hover {
    background-color: #ff8fab;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

/* Modal PIX */
.pix-content {
    padding: 10px 0;
}

.pix-info-group {
    margin-bottom: 25px;
}

.pix-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.pix-key-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pix-key-input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Courier New', monospace;
    background-color: #f9f9f9;
    color: #333;
    cursor: text;
}

.pix-key-input:focus {
    outline: none;
    border-color: #ff6b9d;
    background-color: white;
}

.btn-copy {
    padding: 12px 20px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-copy:hover {
    background-color: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.pix-total {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b9d;
    text-align: center;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 2px solid #ff6b9d;
}

.pix-message {
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    line-height: 1.6;
    padding: 15px;
    background-color: #fef0f5;
    border-radius: 8px;
    border-left: 4px solid #ff6b9d;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 30px 15px;
    }

    .brand-name {
        font-size: 1.8rem;
        letter-spacing: 1px;
    }

    .tagline {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .store-status {
        margin-bottom: 20px;
        padding: 6px 12px;
    }

    .status-text {
        font-size: 0.85rem;
    }

    .status-indicator {
        width: 10px;
        height: 10px;
    }

    .hero-section {
        padding: 30px 15px;
    }

    .hero-images {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }

    .hero-image {
        width: 100%;
        max-width: 100%;
        height: 250px;
    }

    .cta-buttons {
        margin-bottom: 25px;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 25px;
    }

    .delivery-info-section {
        padding: 40px 15px;
    }

    .delivery-title {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .delivery-content {
        padding: 20px;
    }

    .delivery-text {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .delivery-text.highlight {
        padding: 10px 12px;
        margin: 12px 0;
    }

    .menu-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .product-card {
        max-width: 100%;
    }

    .fixed-order-btn {
        bottom: 15px;
        right: 15px;
        left: 15px;
        flex-direction: column;
        gap: 10px;
    }

    .btn-clear,
    .btn-order {
        width: 100%;
        padding: 16px;
        font-size: 1.1rem;
    }

    .modal-content {
        padding: 25px 20px;
        width: 95%;
    }

    .modal-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 0.95rem;
    }

    .modal-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn-cancel,
    .btn-submit {
        width: 100%;
        padding: 14px;
    }

    .pix-key-container {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-copy {
        width: 100%;
    }

    .pix-total {
        font-size: 1.5rem;
    }
}

/* Extra pequeno - smartphones menores */
@media (max-width: 480px) {
    .header {
        padding: 20px 10px;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.85rem;
    }

    .hero-section {
        padding: 20px 10px;
    }

    .hero-image {
        height: 200px;
    }

    .delivery-info-section {
        padding: 30px 10px;
    }

    .delivery-title {
        font-size: 1.3rem;
    }

    .delivery-content {
        padding: 15px;
    }

    .delivery-text {
        font-size: 0.9rem;
    }

    .menu-section {
        padding: 30px 10px;
    }

    .section-title {
        font-size: 1.3rem;
    }
}

