/*
    -------------------------------------------
    Arquivo CSS para Doce Verão Açaíteria Prime
    -------------------------------------------
*/

/*
    ## Variáveis de Cores e Fontes
*/
:root {
    --primary-color: #28a745;
    --text-color: #fff;
    --background-veil: rgba(0, 0, 0, 0.35);
    --panel-background: rgba(0, 0, 0, 0.7);
    --dark-text-color: #0b0f19;
    --social-link-color: #fff;

    --font-family: 'Roboto', Arial, sans-serif;
    --border-radius: 15px;
}

/*
    ## Estilos Gerais do Corpo (body)
*/
body {
    background: url("../img/background.webp") no-repeat center center fixed;
    background-size: cover;
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/*
    ## Layout Principal
*/
.container-custom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
    background: var(--background-veil);
    min-height: 100vh;
}

/*
    ## Painel de Informações (à esquerda)
*/
.info-panel {
    flex: 1;
    background: var(--panel-background);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 22px;
    text-align: center;
    max-width: 600px;
}
.info-panel img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
    border: 3px solid var(--text-color);
}
.main-title {
    margin: 0;
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1.1;
}
.subtitle {
    margin: 12px 0 18px;
    font-size: 1.1rem;
    font-weight: 500;
}

/*
    ## Botões Principais (Call to Action)
*/
.buttons-group {
    width: 100%;
}
.btn-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    margin: 8px 0;
    padding: 14px 16px;
    background: var(--primary-color);
    color: var(--dark-text-color);
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}
.btn-custom:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}
.btn-custom i {
    font-size: 1.1rem;
}

/*
    ## Links de Redes Sociais como Botões
*/
.social-links-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}
.btn-social {
    flex: 1;
}
.btn-social a {
    color: var(--dark-text-color); /* Garante que o texto dos botões sociais seja preto */
}

/*
    ## Bloco de Destaque com a Descrição
*/
.store-description {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    text-align: left;
    max-width: 100%;
}
.store-description p {
    margin-bottom: 0;
}

/*
    ## Mensagem de Impacto
*/
.impact-message {
    margin-top: auto;
    text-align: center;
    font-weight: 800;
    font-size: 1.05rem;
    padding-top: 16px;
}

/*
    ## Carrossel de Imagens
*/
.carousel-custom {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    max-width: 600px;
    min-height: 400px;
}
.carousel-inner, .carousel-item, .carousel-item img {
    height: 100%;
    width: 100%;
}
.carousel-inner img {
    object-fit: cover;
    border-radius: var(--border-radius);
}

/*
    ## Botão Flutuante do WhatsApp
*/
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
    z-index: 2000;
    transition: transform 0.2s ease, filter 0.2s ease;
}
.whatsapp-float:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

/*
    ## Cores para Botões de Redes Sociais e Google Maps
*/
.btn-google-maps {
    background: #EA4335;
}
.btn-facebook {
    background: #1877F2;
}
.btn-instagram {
    background: #C13584;
}

/* Garante que o hover aplique um efeito de escurecimento */
.btn-google-maps:hover,
.btn-facebook:hover,
.btn-instagram:hover {
    filter: brightness(1.1);
}

/*
    ## Media Queries (Responsividade)
*/
@media (max-width: 992px) {
    .container-custom {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .info-panel, .carousel-custom {
        max-width: 90%;
        width: 100%;
        flex: 1 1 auto;
    }
    .store-description {
        text-align: center;
    }
    .impact-message {
        display: none;
    }
}
