/* ========================================
   Sr Pedidos - Arquivo de Estilos CSS
   ======================================== */

        /* Modernização do header e hero */
        .navbar {
            background: linear-gradient(90deg, #004085 0%, #28a745 100%);
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .navbar-brand img {
            max-height: 48px;
        }

        .navbar-nav .nav-link {
            color: #fff !important;
            font-weight: 500;
            margin-right: 1rem;
            transition: color 0.2s;
        }

        .navbar-nav .nav-link:hover {
            color: #ffd700 !important;
        }

        .btn-cta {
            background: #ffd700;
            color: #004085;
            font-weight: bold;
            border-radius: 30px;
            padding: 10px 28px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            transition: background 0.2s, color 0.2s;
        }

        .btn-cta:hover {
            background: #fff;
            color: #28a745;
        }

        .hero-section {
            background: #f8fafc;
            padding: 80px 0 40px 0;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #004085;
            margin-bottom: 18px;
        }

        .hero-section p {
            font-size: 1.25rem;
            color: #333;
            margin-bottom: 32px;
        }

        .hero-section img {
            max-width: 420px;
            width: 100%;
            margin: 0 auto;
            display: block;
        }
        
        /* Estilos para o vídeo explicativo */
        .hero-video-container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
        }
        
        .hero-video-container iframe {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 12px;
        }
        
/* Media queries para responsividade */
        @media (max-width: 767px) {
            .hero-video-container {
                max-width: 100%;
                width: 100%;
                margin: 0;
            }
    
            .hero-video-container iframe {
                height: 200px;
                width: 100%;
            }
    
    .hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .hero-section p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .btn-cta {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-section p {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .hero-section {
        padding: 60px 0 30px 0;
    }
}

/* ========================================
   Fim do arquivo CSS - Sr Pedidos
   ======================================== */
