/* Importação de Fonte do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap');

/* Variáveis de Cor */
:root {
    --primary-color: #E53935; /* Vermelho PolloLoko */
    --secondary-color: #FFC107; /* Amarelo Crocante */
    --whatsapp-color: #25D366; /* Verde WhatsApp */
    --facebook-color: #1877F2; /* Azul Facebook */
    --dark-color: #212121; /* Cinza Escuro */
    --light-color: #f4f4f4;
    --white-color: #fff;
}

/* Estilos Globais */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--dark-color); /* Fundo padrão para mobile */
    color: var(--dark-color);
}

/* --- ESTILOS DO VÍDEO DE FUNDO --- */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Garante que o conteúdo principal fique sobre o vídeo */
.main-content {
    position: relative;
    z-index: 1;
    background-color: transparent;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 { font-weight: 700; margin-bottom: 15px; }
h1 { font-size: 3rem; font-weight: 900; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
p { margin-bottom: 10px; }

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--white-color);
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary { background-color: var(--primary-color); }
.btn-secondary { background-color: var(--secondary-color); color: var(--dark-color); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 5px 15px rgba(0,0,0,0.2); }

/* Seções */
.hero {
    min-height: 80vh;
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    width: 100%;
}
.hero-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.hero-buttons { margin-top: 30px; }
.hero-buttons .btn { margin: 10px; }

section {
    padding: 80px 0;
    background-color: var(--white-color);
}
section:nth-of-type(even) {
    background-color: var(--light-color);
}
.content-wrapper { display: flex; gap: 40px; align-items: center; }
.content-wrapper > div { flex: 1; }
.content-wrapper img { max-width: 100%; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

/* Localizações */
.locations-section { text-align: center; }
.search-wrapper input { width: 100%; max-width: 500px; padding: 15px; font-size: 1rem; border-radius: 50px; border: 2px solid #ddd; margin: 20px 0 40px 0; }
.locations-wrapper { display: flex; gap: 20px; text-align: left; height: 500px; }
#map { flex: 2; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
#location-list { flex: 1; list-style: none; overflow-y: auto; padding-right: 10px; }
#location-list li { padding: 15px; border-bottom: 1px solid #eee; cursor: pointer; transition: background-color 0.3s; }
#location-list li:hover { background: #f0f0f0; }
#location-list h4 { color: var(--primary-color); margin-bottom: 5px; }

/* Botões das Unidades */
.location-buttons { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.action-btn { padding: 4px 12px; border-radius: 20px; text-decoration: none; font-size: 0.8rem; font-weight: 700; text-align: center; border: 1px solid transparent; transition: all 0.2s ease; display: inline-flex; align-items: center; justify-content: center; }
.action-btn.whatsapp-btn { background-color: var(--whatsapp-color); color: var(--white-color); }
.action-btn.order-btn { background-color: var(--primary-color); color: var(--white-color); }
.action-btn.disabled-btn { background-color: #e0e0e0; color: #aaa; cursor: not-allowed; pointer-events: none; }
.action-btn:not(.disabled-btn):hover { transform: translateY(-2px); box-shadow: 0 2px 5px rgba(0,0,0,0.15); }

/* --- NOVOS ESTILOS PARA ÍCONES SOCIAIS --- */
.action-btn.social-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    font-size: 0.9rem;
}
.action-btn.facebook-btn {
    background-color: var(--facebook-color);
    color: var(--white-color);
}
.action-btn.instagram-btn {
    background: #d6249f;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
    color: var(--white-color);
}
.action-btn.social-btn.disabled-btn {
    background-color: #e0e0e0;
}
.action-btn.social-btn.disabled-btn i {
    color: #aaa;
}
/* --- FIM DOS NOVOS ESTILOS --- */


/* Franquia */
.franchise-text ul { list-style: none; margin-bottom: 20px; }
.franchise-text ul li { margin-bottom: 10px; display: flex; align-items: center; }
.franchise-text ul li i { color: var(--primary-color); margin-right: 10px; font-size: 1.2rem; }
#franchise-form { display: flex; flex-direction: column; gap: 15px; }
#franchise-form input { padding: 15px; font-size: 1rem; border-radius: 5px; border: 1px solid #ccc; }

/* Footer */
footer { background: var(--dark-color); color: var(--white-color); text-align: center; padding: 40px 20px; }
.social-icons a { color: var(--white-color); font-size: 1.5rem; margin: 0 15px; transition: color 0.3s ease; }
.social-icons a:hover { color: var(--secondary-color); }
.copyright { margin-top: 20px; font-size: 0.9rem; color: #aaa; }

/* --- SEÇÃO PRÓXIMAS INAUGURAÇÕES --- */
#soon {
    text-align: center;
}

.soon-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.soon-card {
    background-color: #fdfdfd;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    min-width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.soon-card:hover {
    transform: translateY(-5px);
}

.soon-card i {
    font-size: 2.5rem;
    color: var(--secondary-color); /* Amarelo */
    margin-bottom: 15px;
}

.soon-card h4 {
    color: var(--primary-color); /* Vermelho */
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.soon-card p {
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}
/* Responsividade */
@media (max-width: 992px) { .locations-wrapper { height: auto; } }

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; } h2 { font-size: 1.8rem; } h3 { font-size: 1.2rem; }
    section { padding: 60px 0; }
    .content-wrapper { flex-direction: column; }
    .content-wrapper > div { margin-bottom: 30px; }
    .about-section .content-wrapper, .franchise-section .content-wrapper { flex-direction: column-reverse; }
    .franchise-section .franchise-image { order: -1; }
    .locations-wrapper { flex-direction: column; height: auto; }
    #map { height: 300px; min-height: 300px; margin-bottom: 20px; }
    .hero { min-height: 70vh; }
    .hero-content { max-width: 350px; }

    .video-background {
        display: none;
    }
    body {
        background-color: var(--white-color);
    }
    .hero {
        background-color: var(--dark-color);
    }
}