/**
 * Extracted CSS from index.php
 * Type: PHP
 * Generated: 2026-01-26 17:18:17
 * Blocks extracted: 1
 */

:root {
            --navy: #1B3A5F;
            --brown: #8B6F47;
            --gold: #D4A574;
            --orange: #D4915D;
            --cream: #F5F0E8;
            --cream-dark: #E8DCC8;
            --deep-brown: #4A3728;
            --green: #27AE60;
            --sorteio-gold: #FFD700;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--navy) 0%, #2A4A6F 100%);
            color: white;
            line-height: 1.6;
        }

        /* ═══════════════════════════════════════════════════════════
           HERO / LOGO SECTION
           ═══════════════════════════════════════════════════════════ */
        
        .hero-section {
            text-align: center;
            padding: 60px 20px 40px;
            animation: fadeInDown 0.6s ease-out;
        }

        .logo {
            width: 180px;
            height: 180px;
            margin: 0 auto 20px;
            border-radius: 50%;
            border: 5px solid white;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            display: block;
        }

        .hero-section h1 {
            font-size: clamp(36px, 5vw, 48px);
            margin-bottom: 10px;
            font-weight: 900;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .tagline {
            font-size: clamp(18px, 3vw, 24px);
            color: var(--orange);
            font-weight: 600;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .location {
            font-size: 16px;
            opacity: 0.9;
        }

        /* ═══════════════════════════════════════════════════════════
           MAIN BUSINESS CARDS (MODA & SABOR)
           ═══════════════════════════════════════════════════════════ */
        
        .business-cards {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .business-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 0.6s ease-out;
        }

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

        .business-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
        }

        .business-card.moda::before {
            background: var(--brown);
        }

        .business-card.sabor::before {
            background: var(--orange);
        }

        .business-icon {
            font-size: 80px;
            margin-bottom: 20px;
        }

        .business-card h2 {
            color: var(--navy);
            font-size: 36px;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .business-card p {
            color: #666;
            font-size: 16px;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .btn {
            display: inline-block;
            padding: 16px 40px;
            font-size: 18px;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .btn-sabor {
            background: var(--orange);
            color: white;
        }

        .btn-sabor:hover {
            background: #C86F1A;
            transform: scale(1.05);
        }

        .btn-moda {
            background: #CCC;
            color: #999;
            cursor: not-allowed;
            position: relative;
        }

        .coming-soon {
            position: absolute;
            top: -8px;
            right: -8px;
            background: var(--brown);
            color: white;
            padding: 4px 12px;
            border-radius: 12px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
        }

        /* ═══════════════════════════════════════════════════════════
           SORTEIO BANNER
           ═══════════════════════════════════════════════════════════ */
        
        .sorteio-banner {
            max-width: 1200px;
            margin: 0 auto 40px;
            padding: 0 20px;
            animation: fadeInUp 0.8s ease-out;
        }

        .sorteio-banner-inner {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 165, 0, 0.15));
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 16px;
            padding: 20px 30px;
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .sorteio-icon {
            font-size: 36px;
            flex-shrink: 0;
        }

        .sorteio-text {
            flex: 1;
        }

        .sorteio-text strong {
            display: block;
            font-size: 20px;
            margin-bottom: 4px;
        }

        .sorteio-text span {
            font-size: 14px;
            opacity: 0.8;
        }

        .btn-sorteio-small {
            background: linear-gradient(135deg, var(--sorteio-gold), #FFA500);
            color: var(--navy);
            padding: 12px 28px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-sorteio-small:hover {
            background: linear-gradient(135deg, #FFA500, var(--sorteio-gold));
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
        }

        /* ═══════════════════════════════════════════════════════════
           CONTENT SECTIONS (White background area)
           ═══════════════════════════════════════════════════════════ */
        
        .content-area {
            background: var(--cream);
            padding: 60px 20px;
        }

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

        .section {
            margin-bottom: 80px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-title {
            font-size: clamp(32px, 4vw, 42px);
            color: var(--navy);
            font-weight: 900;
            margin-bottom: 10px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--brown);
        }

        /* ═══════════════════════════════════════════════════════════
           PROMOÇÕES DO DIA (Split Moda + Sabor)
           ═══════════════════════════════════════════════════════════ */
        
        .promocoes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .promocao-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
        }

        .promocao-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        }

        .promocao-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #E74C3C;
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 14px;
            z-index: 2;
            box-shadow: 0 2px 10px rgba(231, 76, 60, 0.3);
        }

        .promocao-image {
            height: 220px;
            background: linear-gradient(135deg, var(--cream-dark), var(--cream));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            position: relative;
            overflow: hidden;
        }

        .promocao-card.moda .promocao-image {
            background: linear-gradient(135deg, #8B6F47, #A58A5E);
        }

        .promocao-card.sabor .promocao-image {
            background: linear-gradient(135deg, #D4915D, #E5A876);
        }

        .promocao-body {
            padding: 25px;
        }

        .promocao-category {
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .promocao-card.moda .promocao-category {
            background: rgba(139, 111, 71, 0.1);
            color: var(--brown);
        }

        .promocao-card.sabor .promocao-category {
            background: rgba(212, 145, 93, 0.1);
            color: var(--orange);
        }

        .promocao-title {
            font-size: 24px;
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 12px;
        }

        .promocao-description {
            color: #666;
            font-size: 15px;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .promocao-prices {
            display: flex;
            align-items: baseline;
            gap: 12px;
            margin-bottom: 20px;
        }

        .price-old {
            font-size: 18px;
            color: #999;
            text-decoration: line-through;
        }

        .price-new {
            font-size: 32px;
            color: var(--green);
            font-weight: 700;
        }

        .promocao-validity {
            font-size: 13px;
            color: #E74C3C;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .btn-promocao {
            width: 100%;
            padding: 14px;
            border-radius: 10px;
            font-weight: 700;
            font-size: 16px;
            text-align: center;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
        }

        .promocao-card.moda .btn-promocao {
            background: var(--brown);
            color: white;
        }

        .promocao-card.sabor .btn-promocao {
            background: var(--orange);
            color: white;
        }

        .btn-promocao:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        /* ═══════════════════════════════════════════════════════════
           CALENDÁRIO DE EVENTOS
           ═══════════════════════════════════════════════════════════ */
        
        .eventos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .evento-card {
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            border-left: 4px solid var(--gold);
            transition: all 0.3s ease;
        }

        .evento-card:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
        }

        .evento-date {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
        }

        .evento-date-icon {
            background: var(--navy);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        .evento-day {
            font-size: 20px;
            line-height: 1;
        }

        .evento-month {
            font-size: 11px;
            text-transform: uppercase;
        }

        .evento-info h3 {
            color: var(--navy);
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .evento-time {
            font-size: 14px;
            color: #666;
        }

        .evento-description {
            color: #666;
            font-size: 14px;
            line-height: 1.5;
        }

        /* ═══════════════════════════════════════════════════════════
           DEPOIMENTOS / REVIEWS
           ═══════════════════════════════════════════════════════════ */
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }

        .review-card {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            position: relative;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 4px 25px rgba(0,0,0,0.12);
        }

        .review-card::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: 20px;
            font-size: 80px;
            color: var(--cream-dark);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .review-stars {
            color: var(--sorteio-gold);
            font-size: 20px;
            margin-bottom: 15px;
        }

        .review-text {
            color: var(--deep-brown);
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--cream-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .review-author-info h4 {
            color: var(--navy);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .review-author-info p {
            color: #999;
            font-size: 13px;
        }

        /* ═══════════════════════════════════════════════════════════
           GALERIA - NOSSOS CLIENTES
           ═══════════════════════════════════════════════════════════ */
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
        }

        .gallery-item {
            aspect-ratio: 1;
            border-radius: 12px;
            overflow: hidden;
            background: linear-gradient(135deg, var(--cream-dark), var(--cream));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .gallery-item:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 25px rgba(0,0,0,0.15);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-cta {
            text-align: center;
            margin-top: 30px;
            padding: 25px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        }

        .gallery-cta p {
            color: var(--deep-brown);
            font-size: 18px;
            margin-bottom: 15px;
        }

        .gallery-cta .instagram-handle {
            color: var(--brown);
            font-weight: 700;
            font-size: 20px;
        }

        /* ═══════════════════════════════════════════════════════════
           MAPA & HORÁRIO
           ═══════════════════════════════════════════════════════════ */
        
        .location-section {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        .location-map {
            min-height: 400px;
            background: var(--cream-dark);
            position: relative;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
            position: absolute;
            top: 0;
            left: 0;
        }

        .location-info {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .location-info h3 {
            color: var(--navy);
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            margin-bottom: 20px;
        }

        .info-icon {
            font-size: 24px;
            flex-shrink: 0;
        }

        .info-content h4 {
            color: var(--navy);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 5px;
        }

        .info-content p {
            color: #666;
            font-size: 15px;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link.instagram {
            background: linear-gradient(135deg, #f093fb, #f5576c);
        }

        .social-link.facebook {
            background: #1877F2;
        }

        .social-link.tiktok {
            background: #000;
        }

        .social-link.whatsapp {
            background: #25D366;
        }

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

        /* ═══════════════════════════════════════════════════════════
           FOOTER
           ═══════════════════════════════════════════════════════════ */
        
        .footer {
            background: var(--navy);
            color: white;
            padding: 40px 20px;
            text-align: center;
        }

        .footer p {
            opacity: 0.9;
            margin-bottom: 8px;
        }

        /* ═══════════════════════════════════════════════════════════
           WHATSAPP FLOAT BUTTON
           ═══════════════════════════════════════════════════════════ */
        
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            padding: 16px 24px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
            font-weight: 600;
        }

        .whatsapp-float:hover {
            background: #1da851;
            transform: translateY(-4px);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        /* ═══════════════════════════════════════════════════════════
           ANIMATIONS
           ═══════════════════════════════════════════════════════════ */
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

        /* ═══════════════════════════════════════════════════════════
           RESPONSIVE
           ═══════════════════════════════════════════════════════════ */
        
        @media (max-width: 768px) {
            .business-cards {
                grid-template-columns: 1fr;
            }

            .business-card {
                padding: 30px;
            }

            .business-icon {
                font-size: 60px;
            }

            .business-card h2 {
                font-size: 28px;
            }

            .sorteio-banner-inner {
                justify-content: center;
                text-align: center;
                padding: 16px 20px;
            }

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

            .content-area {
                padding: 40px 15px;
            }

            .section {
                margin-bottom: 50px;
            }

            .promocoes-grid,
            .eventos-grid,
            .reviews-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .location-grid {
                grid-template-columns: 1fr;
            }

            .location-info {
                padding: 30px 20px;
            }

            .whatsapp-float span {
                display: none;
            }

            .whatsapp-float {
                padding: 14px;
                bottom: 20px;
                right: 20px;
            }
        }
