/* ========================================
   VARIÁVEIS
   ======================================== */
:root {
    --primary-color: #3d7f3f;
    --secondary-color: #2d5f2e;
    --text-dark: #1a1a1a;
    --text-gray: #767676;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --font-lato: 'Lato', sans-serif;
}

/* ========================================
   HERO SECTION - PRODUTO
   ======================================== */
.hero-produto {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 368px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-produto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-produto .container {
    position: relative;
    z-index: 2;
}

.hero-produto-title {
    font-family: var(--font-lato);
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    text-align: center;
}

/* ========================================
   SEÇÃO CONTEÚDO DO PRODUTO
   ======================================== */
#produto-conteudo {
    background-color: var(--white);
    padding: 80px 0;
}

/* Texto do Produto */
.produto-texto {
    padding-right: 30px;
}

.produto-titulo {
    font-family: var(--font-lato);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
}

.produto-descricao {
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
}

.produto-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.produto-lista-item {
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.check-icon-produto {
    background-color: var(--primary-color);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 18px;
}

/* Imagem do Produto */
.produto-imagem-wrapper {
    position: relative;
}

.produto-imagem {
    border-radius: 0;
    overflow: hidden;
}

.produto-imagem img {
    width: 100%;
    height: auto;
    display: block;
}

/* Card Flutuante Fale Conosco */
.card-fale-conosco {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background-color: var(--primary-color);
    padding: 40px 30px;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    max-width: 280px;
    text-align: center;
    z-index: 10;
}

.card-fale-titulo {
    font-family: var(--font-lato);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 1.2;
}

.card-fale-texto {
    font-family: var(--font-lato);
    font-size: 14px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 25px;
}

.btn-whatsapp {
    background-color: var(--white);
    color: var(--primary-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp svg {
    width: 40px;
    height: 40px;
}

/* Botão Ficha Técnica */
.btn-ficha-tecnica {
    background-color: var(--text-dark);
    color: var(--white);
    font-family: var(--font-lato);
    font-size: 18px;
    font-weight: 400;
    padding: 15px 40px;
    border-radius: 0;
    border: 0;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-ficha-tecnica:hover {
    background-color: #000;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ========================================
   GALERIA DE IMAGENS
   ======================================== */
#galeria-acai {
    background-color: var(--bg-light);
}

.galeria-item {
    border-radius: 0;
    overflow: hidden;
    height: 100%;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.galeria-item:hover img {
    transform: scale(1.05);
}

.galeria-legenda {
    font-family: var(--font-lato);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-dark);
    margin: 0;
}

/* ========================================
   SEÇÃO TEXTO ESTENDIDO
   ======================================== */
#texto-estendido {
    background-color: var(--bg-light);
}

.texto-estendido-imagem {
    border-radius: 0;
    overflow: hidden;
    height: 100%;
}

.texto-estendido-imagem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.texto-estendido-paragrafo {
    font-family: var(--font-lato);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1199px) {
    .card-fale-conosco {
        right: -20px;
        bottom: -20px;
        max-width: 250px;
        padding: 30px 25px;
    }

    .card-fale-titulo {
        font-size: 24px;
    }

    .card-fale-texto {
        font-size: 13px;
    }

    .btn-whatsapp {
        width: 70px;
        height: 70px;
    }

    .btn-whatsapp svg {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 991px) {
    .hero-produto {
        min-height: 300px;
    }

    .hero-produto-title {
        font-size: 36px;
    }

    #produto-conteudo {
        padding: 60px 0;
    }

    .produto-texto {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .produto-titulo {
        font-size: 28px;
    }

    .card-fale-conosco {
        position: static;
        max-width: 100%;
        margin-top: 30px;
    }

    .check-icon-produto {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .hero-produto {
        min-height: 250px;
    }

    .hero-produto-title {
        font-size: 28px;
    }

    #produto-conteudo {
        padding: 40px 0;
    }

    .produto-titulo {
        font-size: 24px;
    }

    .produto-descricao {
        font-size: 15px;
    }

    .produto-lista-item {
        font-size: 15px;
    }

    .check-icon-produto {
        width: 28px;
        height: 28px;
        font-size: 14px;
        margin-right: 12px;
    }

    .card-fale-conosco {
        padding: 30px 20px;
    }

    .card-fale-titulo {
        font-size: 22px;
    }

    .card-fale-texto {
        font-size: 14px;
    }

    .btn-whatsapp {
        width: 65px;
        height: 65px;
    }

    .btn-whatsapp svg {
        width: 32px;
        height: 32px;
    }
}
