        /* style.css*/
        :root {
        --cor-roxa: #9c27b0;
        --cor-roxa-claro: #e1bee7;
        --cor-roxa-escuro: #4a148c;
        --bg-escuro: #121212;
        --bg-card: #1e1e1e;
        --texto-claro: #f5f5f5;
        --borda: #333;
        --bg-comida: #b37208;
        --bg-comida-2: #362803b2;
        --bg-fundo-1: #332222;
        --bg-fundo-2: #c36d17;
        --bg-fundo-3: #f3a915;
        --bg-marron: #4b2e05;
        --vermelho: #b00020;
        --vermelho-claro: #ff7961;
        --laranja-escuro: #ef6c00;
        }

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

        body {
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(135deg, var(--bg-marron), var(--bg-card), var(--bg-marron));
        color: var(--texto-claro);
        line-height: 1.6;
        overflow-x: hidden;
        }

        header {
        text-align: center;
        padding: 2rem 1rem;
        background: linear-gradient(135deg, var(--bg-marron), var(--borda), var(--bg-marron));
        }

        .logo-container {
        margin: 0 auto 1.5rem;
        width: 150px;
        height: 150px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--vermelho-claro);
        box-shadow: 0 4px 20px rgba(231, 167, 6, 0.15);
        }

        .logo-img {
        max-width: 100%;
        max-height: 150px;
        width: auto;
        height: auto;
        object-fit: contain;
        display: block;
        filter: drop-shadow(0 0 6px rgba(243, 179, 3, 0.3));
        }

        h1 {
        font-weight: 700;
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        background: linear-gradient(to right, #c2ab50, #8f3904);
            -webkit-background-clip: text;
            -webkit-text-stroke-color: var(--borda);
        color: transparent;
        }

        .subtitle {
        font-size: 1.2rem;
        opacity: 0.85;
        max-width: 600px;
        margin: 0 auto;
        line-height: 1.5;
        
        }

        .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1.5rem;
        }

        section {
        margin-bottom: 3rem;
        }

        h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        color: var(--vermelho-claro);
        display: flex;
        align-items: center;
        gap: 0.6rem;
        }

        h2 i {
        color: var(--laranja-escuro);
        }

        /* Cards sociais */
        .social-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        margin-top: 1.5rem;
        }

        .social-card {
        background: var(--bg-card);
        border-radius: 12px;
        padding: 1.5rem;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
        border: 1px solid var(--borda);
        }

        .social-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 25px var(--laranja-escuro);
        }

        .social-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 1rem;
        background: rgba(239, 108, 0, 0.1); /* Fundo laranja claro (opcional) */
        border-radius: 50%; /* Deixa o fundo redondo */
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
        }

        .social-icon:hover {
        background: rgba(239, 108, 0, 0.2); /* Leve destaque ao passar o mouse */
        }
        .social-icon svg path {
        fill: #ef6c00 !important;
        stroke: #ef6c00 !important;
        }

        .social-card h3 {
        margin-bottom: 0.75rem;
        color: var(--laranja-escuro);
        font-weight: 600;
        }

        .btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--vermelho-claro);
        color: var(--bg-escuro);
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        margin-top: 0.5rem;
        font-size: 1rem;
        }

        .btn:hover {
        background: var(--laranja-escuro);
        transform: scale(1.03);
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(186, 86, 204, 0.3);
        }

        /* Embeds */
        .embed-section {
        background: var(--bg-card);
        border-radius: 12px;
        padding: 1.5rem;
        overflow: hidden;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        position: relative;
        }

        .embed-container {
        width: 100%;
        height: 500px;
        border: none;
        border-radius: 8px;
        background: #000;
        overflow: hidden;
        }

        /* Depoimentos */
        .testimonials {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
        }

        .testimonial-card {
        background: rgba(30, 30, 30, 0.7);
        border-radius: 10px;
        padding: 1.2rem;
        border-left: 4px solid var(--laranja-escuro);
        transition: transform 0.2s;
        }

        .testimonial-card:hover {
        transform: scale(1.02);
        }

        .testimonial-card img {
        width: 100%;
        border-radius: 8px;
        margin-bottom: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        max-height: 200px;
        object-fit: cover;
        }

        .testimonial-text {
        font-style: italic;
        font-size: 0.95rem;
        color: #e0e0e0;
        }

        /* Footer */
        footer {
        text-align: center;
        padding: 2rem 1.5rem;
        background: var(--bg-escuro);
        border-top: 1px solid var(--borda);
        font-size: 0.9rem;
        color: #aaa;
        margin-top: 2rem;
        }

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

        /* Ajustes responsivos */
        @media (max-width: 768px) {
        h1 { font-size: 2rem; }
        h2 { font-size: 1.5rem; }
        .embed-container { height: 400px; }
        .logo-container { width: 120px; height: 120px; }
        .logo-img { max-height: 120px; }
        }

        @media (max-width: 480px) {
        h1 { font-size: 1.8rem; }
        .subtitle { font-size: 1rem; }
        .embed-container { height: 300px; }
        .social-grid { grid-template-columns: 1fr; }
        .logo-container { width: 100px; height: 100px; }
        .logo-img { max-height: 900px; }
        .btn { padding: 0.6rem 1.2rem; font-size: 0.95rem; }
        }
        /* Para Facebook: forçar responsividade */
        #facebook-feed .embed-container {
        min-height: 400px;
        max-height: 600px;
        height: auto !important;
        aspect-ratio: 16 / 9; /* Mantém proporção */
        }

        /* Garantir que o iframe do Facebook não ultrapasse o container */
        #facebook-feed .embed-container iframe {
        width: 100% !important;
        height: 100% !important;
        min-width: 300px;
        max-width: 100%;
        border: none;
        display: block;
        }

        /* Mobile: ajusta altura */
        @media (max-width: 768px) {
        #facebook-feed .embed-container {
            height: 300px;
            min-height: 250px;
        }
        }

        @media (max-width: 480px) {
        #facebook-feed .embed-container {
            height: 250px;
            min-height: 200px;
        }
        }
        /* Forçar tema escuro nos widgets do Elfsight (Facebook e Instagram) */
        .elfsight-app-9b2634c1-488d-4075-8e12-4f0e3db541d2 { /* ID do widget do Google */
        background: var(--bg-card) !important;
        color: var(--texto-claro) !important;
        }

        /* Se você usar o Elfsight para Facebook ou Instagram, substitua o ID abaixo */
        .elfsight-app-facebook-id { /* Substitua por seu ID real */
        background: var(--bg-card) !important;
        color: var(--texto-claro) !important;
        }

        .elfsight-app-instagram-id { /* Substitua por seu ID real */
        background: var(--bg-card) !important;
        color: var(--texto-claro) !important;
        }