/* Reset CSS */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* style.css */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #e0eafc, #cfdef3);
    margin: 0;
    padding: 0;
}

/* Estilos para o container do logo */
.logo-container {
    text-align: center; /* Centraliza o logo horizontalmente */
    padding: 10px; /* Adiciona um pequeno padding */
}

/* Estilos para a imagem do logo */
.logo-container img {
    max-width: 100px; /* Define a largura máxima do logo */
    height: auto; /* Mantém a proporção da imagem */
}

.container.multiple-items {
    /* display: flex; Remove */
    /* flex-wrap: wrap; Remove */
    /* justify-content: flex-start; Remove */
    /* gap: 20px; Remove */
    padding: 20px; /* Espaçamento interno */
    max-width: 2000px; /* Largura máxima da tela */
    margin: 0 auto; /* Centraliza o container na página */
    text-align: center; /* Centraliza os cards horizontalmente */
}

.container.multiple-items .card {
    width: 300px; /* Largura fixa dos cards */
    max-width: 90%; /* Largura máxima responsiva */
    height: 720px; /* Altura fixa dos cards */
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: inline-block; /* Permite que os cards fiquem lado a lado */
    text-align: center;
    vertical-align: top; /* Alinha os cards no topo */
    transition: transform 0.3s ease;
    border: 1px solid #ddd;
    padding: 20px; /* Padding interno maior */
    box-sizing: border-box; /* Importante para que o padding não afete a largura */
    margin: 10px; /* Espaçamento entre os cards */
}

.container.multiple-items .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.container.multiple-items .card img {
    max-width: 100%;
    height: 288px; /* Altura maior para as imagens */
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.container.multiple-items .card .titulo-oferta {
    font-size: 1.2em; /* Tamanho da fonte maior */
    font-weight: normal;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.3;
    height: auto; /* Altura automática para o título */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limita o título a 3 linhas */
    -webkit-box-orient: vertical;
}

.container.multiple-items .card .preco-oferta {
    font-size: 1.5em; /* Tamanho da fonte maior */
    font-weight: bold;
    color: #6709ff;
    margin-bottom: 10px;
}

.container.multiple-items .card .cta-button {
    display: inline-block;
    padding: 15px 30px; /* Botão maior */
    background-color: #5cb85c;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1em; /* Tamanho da fonte maior */
    transition: transform 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: none;
    text-align: center; 
    width: 220px; /* Largura automática para se ajustar ao conteúdo */
    max-width: 100%; /* Garante que o botão não ultrapasse a largura do card */
}

.container.multiple-items .card .cta-button:hover {
    background-color: #449d44;
}

.container.multiple-items .card .date {
    font-size: 0.9em;
    color: #999;
    margin-top: 5px;
}

.coupon-container {
    width: 85%; 
    display: flex;
    align-items: center;
    border: 1px dashed #ccc;
    padding: 12px; 
    margin-top: 10px;
    border-radius: 5px;
    justify-content: space-between;

    min-height: 40px;
    margin-left: auto; 
    margin-right: auto; 
    }
    
.coupon-code {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding: 5px;
    text-align: center;
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap; 
    transition: color 0.3s ease; 
    }
    
.copy-button {
    background-color: #4CAF50;
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    }
    
.copy-button:hover {
    background-color: #367c39;
    }
    
   
.copy-button i {
    margin-left: 5px; 
    }
    

.coupon-container {
    border: 2px dashed #777; 
    }

/* Media Queries para Responsividade */
@media (max-width: 768px) {
    .container.multiple-items {
        padding: 10px; /* Reduz o espaçamento interno */
    }

    .container.multiple-items .card {
        width: auto; /* Remove a largura fixa */
        max-width: 90%; /* O card ocupa 90% da largura */
        height: auto; /* Ajusta a altura automaticamente */
        margin: 10px auto; /* Centraliza o card */
    }
}

@media (max-width: 480px) {
    .container.multiple-items {
        padding: 10px; /* Reduz o espaçamento interno */
    }

    .container.multiple-items .card {
        width: auto; /* Remove a largura fixa */
        max-width: 90%; /* O card ocupa 90% da largura */
        height: auto; /* Ajusta a altura automaticamente */
        margin: 10px auto; /* Centraliza o card */
    }
}

/* style.css */

/* Estilos gerais do footer */
footer {
    padding: 10px;
    text-align: left; /* Alinha o texto à esquerda */
    border-top: 1px solid #ddd;
    width: 100%; /* Garante que o footer ocupe toda a largura */
    box-sizing: border-box; /* Inclui o padding na largura */
}

footer p {
    margin: 0;
    font-size: 1em;
    color: #777; /* Cor mais clara, quase cinza */
}

/* Estilos para fixar o footer na parte inferior */
#fixed-footer {
    background-color: white; /* Adicionei o background-color aqui para o footer fixo */
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 1000; /* Garante que o footer fique acima de outros elementos */
}