@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    /* Paleta Original */
    --fundo-site: #3e2723;
    --fundo-card: #FFF8E1;
    --destaque: #D7CCC8;
    --texto-escuro: #2C1A1D;
    --botao-cta: #5D4037;
    --verde-whats: #25d366;
    --branco: #ffffff;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

html {
    scroll-behavior: smooth;
}

body {
font-family: 'Poppins', sans-serif;
    background-color: var(--fundo-site);
    color: var(--branco);
    padding-top: 0;
    padding-bottom: 50px;
}

/* --- HEADER & NAV (SEU CÓDIGO ORIGINAL) --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px; /* Um pouco mais de respiro */
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent); /* Gradiente suave para leitura */
    position: absolute; /* Mudei para absolute se você quer que ela fique no topo da FOTO e suba junto ao rolar (estilo clássico) */
    /* Se preferir que a barra te siga ao rolar, troque 'absolute' por 'fixed' e adicione background colorido */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.logo { 
    font-weight: 700; 
    font-size: 1.1rem; 
    color: var(--branco); 
    display: flex; 
    align-items: center;
}

.logo img {
    max-height: 45px; 
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));  
}

.btn-nav {
    background: var(--branco);
    color: var(--fundo-site);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

header {
    text-align: center;
    /* Aqui está o segredo: padding maior em cima para o texto não ficar escondido atrás da logo */
    padding: 120px 30px 60px 30px; 
}

.tag-destaque {
    background: rgba(255,255,255,0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 2.5rem; 
    margin: 25px 0;    
    line-height: 1.2;
}

header p {
    opacity: 0.9;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

.btn-cta {
    display: inline-block;
    background-color: var(--fundo-card);
    color: var(--texto-escuro);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* --- STATS GRID --- */
.qualidade { 
    padding: 20px; 
    margin-bottom: 20px; 
}

.grid-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px; /* Espaço um pouco menor para caber bem no celular */
    max-width: 800px; /* Limita a largura para não esticar demais no PC */
    margin: 0 auto; /* Centraliza o bloco na tela */
}

.stat-card {
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 5px; /* Reduzi o padding lateral para não quebrar no celular */
    border-radius: 15px;
    text-align: center; /* Centraliza o texto dentro do quadrado */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-card h3 { 
    font-size: 1.3rem; /* Levemente menor para garantir que fique na linha */
    margin: 0; 
    color: #FFECB3; 
}

.stat-card p { 
    margin: 5px 0 0; 
    font-size: 0.75rem; 
    opacity: 0.9; 
    line-height: 1.2;
}

/* --- VITRINE --- */
#cardapio {
    background: var(--fundo-card);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    padding: 60px 20px; 
    color: var(--texto-escuro);
    width: 100%;
}

.titulo-secao { 
    text-align: center; 
    margin-bottom: 40px; 
    width: 100%;
}
.titulo-secao h2 { font-size: 2rem; margin: 0; color: var(--fundo-site); }
.titulo-secao p { color: #888; margin-top: 5px; }

.lista-produtos {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 30px;
    max-width: 900px; 
    margin: 0 auto;
    width: 100%;
}

.produto-card {
    background-color: white;
    border-radius: 25px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}

.produto-img {
    text-align: center;
    background: radial-gradient(circle, #f7f7f7 0%, #e0e0e0 100%);
    padding: 20px; 
    overflow: visible;
}

.produto-img img {
    width: 130px; 
    max-width: 80%;     
    height: auto;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.25));
    transition: transform 0.3s;
    display: block;
    margin: 0 auto;
}

.produto-card:hover .produto-img img { transform: scale(1.05); }

.produto-info { 
    padding: 25px; 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.info-top h3 { margin: 0; font-size: 1.2rem; }

.preco {
    background: var(--fundo-site);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Espaço entre as seções de café */
.divisor-secao {
    width: 100%;
    height: 120px; 
    display: block;
    clear: both;
}

/* --- Ajuste específico para Celular --- */
@media (max-width: 768px) {
    .divisor-secao {
        height: 50px; /* Um pouco menor no celular para não ficar um buraco gigante */
        margin-top: 20px; /* Força o afastamento dos cafés de cima */
    }

    /* Garante que o título da Edição Limitada não suba */
    .divisor-secao + .titulo-secao {
        margin-top: 0;
        padding-top: 10px;
    }

    .compromisso-img-wrapper:active .compromisso-img {
        transform: scale(1.05);
    }

    .btn-escolher-cafe {
        display: block; /* Ocupa a largura toda no celular */
        margin-bottom: 40px;
    }
}

.desc { color: #666; font-size: 0.95rem; margin-bottom: 25px; line-height: 1.5; }

/* SEU BOTÃO ORIGINAL */
.produto-info button {
    width: 100%;
    background-color: transparent;
    border: 2px solid var(--fundo-site);
    color: var(--fundo-site);
    padding: 12px;
    border-radius: 15px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s;
}

.produto-info button:hover {
    background-color: var(--fundo-site);
    color: white;
}

/* --- FOOTER (SEU ORIGINAL) --- */
footer {
    background-color: #2a1b18;
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 20px 30px;
    margin-top: 40px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; 
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
    color: white;
}

.divider {
    width: 50px;
    height: 2px;
    background-color: rgba(255,255,255,0.1);
    margin: 10px 0;
}

.copyright {
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* --- SEÇÃO SOBRE NÓS --- */
.sobre-nos {
    padding: 50px 20px;
    background-color: var(--fundo-site);
}

.sobre-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    /* --- MOBILE (Celular) --- */
    /* Define a ordem vertical: Título, depois Foto, depois Texto */
    grid-template-areas: 
        "header"
        "img"
        "text";
    grid-template-columns: 1fr;
    gap: 30px; /* Espaço bom entre título, foto e texto no celular */
}

/* --- Estilos do Título (Mantendo o padrão estiloso) --- */
.sobre-header {
    grid-area: header;
    text-align: left;
}

.sobre-header h2 {
    font-size: 2.2rem;
    margin: 15px 0 0 0; /* Espaço pequeno acima */
    color: var(--branco);
    line-height: 1.2;
}

.sobre-header h2 strong {
    color: #FFECB3;
}

.sobre-header-mobile {
    text-align: left;
    margin-bottom: 10px;
}

.sobre-img-wrapper {
    grid-area: img;
    width: 100%;
    /* No mobile, garantimos que ela não fique gigante verticalmente */
    max-height: 400px;
    
    /* ADIÇÕES PARA O ZOOM PERFEITO: */
    border-radius: 30px; /* Arredondamento vai no wrapper */
    overflow: hidden;    /* Impede que a imagem saia da borda ao dar zoom */
    box-shadow: 0 15px 30px rgba(0,0,0,0.3); /* Sombra suave igual a outra seção */
}

.sobre-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;    
    /* Transição suave igual a do Compromisso */
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sobre-img-wrapper:hover .sobre-img { 
    transform: scale(1.1); /* Aumenta 10% dentro da caixa */
}

.sobre-info { flex: 1; text-align: left; width: 100%; }

.sobre-info h2 {
    font-size: 2.2rem;
    margin: 20px 0;
    color: var(--branco);
    line-height: 1.2;
}

.sobre-info h2 strong { color: #FFECB3; }

.sobre-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
}

.badges-sobre {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

/* --- Estilos do Texto --- */
.sobre-text {
    grid-area: text;
    text-align: left;
}

.sobre-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 15px;
    margin-top: 15px;
}

.badge-item {
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* Media Queries Originais */
@media (min-width: 768px) {
    .produto-img img { width: auto; max-width: 150px; }
    .lista-produtos {
        grid-template-columns: repeat(2, 1fr); /* Força 2 por linha */
    }
}

@media (min-width: 900px) {
    .sobre-container {
        /* Cria 2 colunas: Imagem na esq (450px), Resto na dir (flexível) */
        grid-template-columns: 450px 1fr;
        
        /* Define o layout visual do PC:
           A imagem ocupa as duas linhas da esquerda.
           O Header ocupa a linha de cima na direita.
           O Texto ocupa a linha de baixo na direita. */
        grid-template-areas: 
            "img header"
            "img text";
            
        gap: 0 80px; /* 0 vertical (controlado pelo align), 80px horizontal */
        align-items: center; /* Centraliza verticalmente */
    }

    .sobre-header {
        align-self: end; /* Empurra o título para baixo, perto da foto */
        margin-bottom: 20px; /* Espaço entre título e texto no PC */
    }

    .sobre-text {
        align-self: start; /* Empurra o texto para cima */
    }

    .sobre-img-wrapper { 
        max-height: none;
    }

    .sobre-header-mobile {
        grid-area: titulo;
        align-self: end; /* Gruda o título na base para encontrar com o texto */
        margin-bottom: 20px;
    }

    .sobre-info {
        grid-area: info;
        align-self: start; /* Começa o texto logo abaixo do título */
    }
}

.sobre-header-mobile h2 {
    margin-top: 15px;
}

/* ==========================================================
   CORREÇÃO DO MODAL - TEMA CLARO (BACKGROUND BRANCO)
   ========================================================== */

/* Fundo Escuro que cobre a tela toda */
.modal-overlay {
    display: none; 
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Máscara escura */
    z-index: 9999;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    padding: 20px;
}

/* Caixa do Conteúdo - AGORA FUNDO BRANCO E TEXTO ESCURO */
.modal-content {
    background-color: #ffffff; /* Fundo Claro! */
    color: var(--texto-escuro); /* Texto Escuro */
    width: 100%;
    max-width: 500px;
    padding: 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Títulos dentro do Modal */
.modal-content h3, #modal-titulo {
    color: var(--fundo-site); /* Marrom Escuro */
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.modal-sub { color: #666; margin-bottom: 20px; font-size: 0.9rem;}

/* Labels */
.modal-label {
    display: block;
    font-weight: 600;
    margin: 15px 0 8px;
    font-size: 0.9rem;
    color: var(--botao-cta); /* Marrom */
}

/* Opções de Radio */
.radio-group-modal { display: flex; gap: 10px; }
.radio-option { flex: 1; position: relative; }
.radio-option input { display: none; }

.radio-option span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border: 1px solid #ccc; /* Borda cinza suave */
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    color: #555; /* Texto cinza escuro */
    background: #f9f9f9;
    transition: 0.2s;
}

/* Selecionado */
.radio-option input:checked + span {
    border-color: var(--fundo-site);
    background-color: var(--fundo-site); /* Fundo Marrom */
    color: white; /* Texto Branco */
    font-weight: bold;
}

/* Botão Fechar (X) - ESCURO PARA FUNDO CLARO */
.close-modal, .fechar-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    color: #999; /* Cinza para aparecer no branco */
    cursor: pointer;
    transition: 0.3s;
    line-height: 1;
    z-index: 100;
}

.close-modal:hover, .fechar-modal:hover { color: var(--fundo-site); }

/* Textos Legais */
.modal-text {
    max-height: 60vh;
    overflow-y: auto;
    color: #444; /* Cinza escuro */
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 10px;
}
.modal-text p { margin-bottom: 15px; }

/* Links do Footer do Modal */
.legal-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.8rem;
}
.legal-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}
.legal-links a:hover { color: var(--fundo-site); text-decoration: underline; }

/* Aviso */
.aviso-box {
    background: #f0f0f0; /* Cinza bem claro */
    color: #555;
    padding: 10px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
    font-size: 0.8rem;
}

/* Botão do WhatsApp */
.btn-whatsapp {
    width: 100%;
    background-color: var(--verde-whats);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* --- CARRINHO FLUTUANTE --- */
.cart-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--verde-whats);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex; /* Começa escondido, o JS vai mudar pra flex */
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: transform 0.2s;
    display: none; /* Só aparece se tiver itens */
}

.cart-floating:hover {
    transform: scale(1.1);
}

#cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #d32f2f;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid white;
}

/* --- ESTILOS DENTRO DO MODAL DO CARRINHO --- */
.carrinho-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.item-carrinho {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.info-item span { font-size: 0.8rem; color: #666; }

.preco-remove {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.preco-item { font-weight: bold; color: var(--fundo-site); }

.btn-remove {
    font-family: 'Poppins', sans-serif; /* Garante a fonte do site */
    background-color: transparent;
    border: 1px solid #ef5350; /* Borda vermelha suave */
    color: #d32f2f; /* Texto vermelho */
    padding: 5px 12px;
    border-radius: 20px; /* Borda bem redondinha */
    font-size: 0.75rem; /* Letra pequena e discreta */
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px; /* Espaço do preço */
    text-transform: uppercase; /* Letras maiúsculas para ficar mais botão */
    letter-spacing: 0.5px;
    outline: none;
}

.btn-remove:hover {
    background-color: #d32f2f; /* Preenche de vermelho ao passar o mouse */
    color: white; /* Texto vira branco */
    border-color: #d32f2f;
 }

.carrinho-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--texto-escuro);
    margin-bottom: 20px;
}

.modal-footer .btn-whatsapp {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Espaço entre texto e seta */
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: bold;
    white-space: nowrap; /* Impede que o texto quebre */
}

.btn-voltar {
    display: block;
    width: 100%;
    background: none;
    border: 2px solid #eee; /* Uma borda suave para parecer um botão */
    color: #666;
    padding: 15px;
    margin-top: 15px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none; /* Remove o sublinhado */
    transition: 0.2s;
}

.btn-voltar:hover {
    border-color: #ccc;
    color: var(--texto-escuro);
    background-color: #f9f9f9;
}

/* --- SELETOR DE QUANTIDADE NO MODAL --- */
.qtd-selector {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    background: #f9f9f9;
    width: fit-content;
    padding: 5px 15px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.btn-qtd {
    background: #e0e0e0;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--fundo-site);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.btn-qtd:hover {
    background: var(--destaque);
    color: var(--texto-escuro);
}

.btn-qtd:active {
    transform: scale(0.9);
}

#qtd-numero {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--texto-escuro);
    min-width: 20px;
    text-align: center;
}


/* --- SEÇÃO COMPROMISSO (LAYOUT GRID INTELIGENTE) --- */
.compromisso {
    padding: 50px 20px;
    background-color: #35211e;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.compromisso-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    /* CELULAR: Força a ordem visual vertical */
    grid-template-areas: 
        "texto"
        "foto"
        "icones";
    grid-template-columns: 1fr;
    gap: 30px;
}

/* --- Definição das Áreas do Grid --- */
.compromisso-info {
    grid-area: texto;
    text-align: left;
}

.compromisso-img-wrapper {
    grid-area: foto;
    width: 100%;
    border-radius: 30px; 
    overflow: hidden;   
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.icones-compromisso {
    grid-area: icones;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 ícones lado a lado */
    gap: 15px;
}

/* --- Estilos Visuais (Fontes, Cores, Botão) --- */
.compromisso-info h2 {
    font-size: 2.2rem;
    margin: 20px 0;
    color: var(--branco);
    line-height: 1.2;
}

.compromisso-info h2 strong {
    color: #81c784;
}

.compromisso-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.btn-escolher-cafe {
    display: inline-block;
    background-color: #81c784;
    color: #1a331b;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    margin: 10px 0 30px 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(129, 199, 132, 0.2);
    text-align: center;
}

.btn-escolher-cafe:hover {
    background-color: #a5d6a7;
    transform: translateY(-3px);
}

/* --- Estilos da Imagem --- */
.compromisso-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.compromisso-img-wrapper:hover .compromisso-img {
    transform: scale(1.1);
}

/* --- Estilos dos Ícones --- */
.icone-item {
    text-align: center;
    background: rgba(255,255,255,0.03);
    padding: 15px 10px;
    border-radius: 15px;
}

.icone-item span {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
}

.icone-item p {
    font-size: 0.75rem;
    margin: 0;
    font-weight: 600;
    color: var(--branco);
}

/* --- DESKTOP (PC) --- */
@media (min-width: 900px) {
    .compromisso-container {
        /* Define 2 colunas: Esquerda Flexível | Direita Fixa (450px) */
        grid-template-columns: 1fr 450px;
        
        /* MAGIA DO LAYOUT NO PC:
           - Coluna 1 (Esq): Texto em cima, Ícones embaixo.
           - Coluna 2 (Dir): Foto ocupa as duas linhas. */
        grid-template-areas: 
            "texto foto"
            "icones foto";
            
        gap: 0 80px; /* 0 vertical, 80px horizontal */
        align-items: center;
    }

    .compromisso-info {
        align-self: end; /* Empurra o texto para baixo (perto dos ícones) */
        margin-bottom: 30px;
        text-align: left;
    }
    
    .btn-escolher-cafe {
        margin-bottom: 0; /* Remove margem extra no PC */
    }

    .icones-compromisso {
        align-self: start; /* Empurra os ícones para cima (perto do texto) */
        margin-top: 0;
    }

    .sobre-text p {
        margin-top: 0; /* Remove o espaçamento extra apenas no PC */
    }
}

/* Ajuste Mobile para botão */
@media (max-width: 768px) {
    .btn-escolher-cafe {
        display: block; /* Botão largura total no celular */
        margin-bottom: 0;
    }
}