
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
}

/* Navbar */
.navbar-brand {
    padding-top: 0px!important;
    padding-bottom: 0px!important;
    font-size: 1.5rem;
}

.navbar {
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
   color: #667eea;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 300px;
}

.search-box input {
    padding: 0.75rem 1rem;
}

.search-box input:focus {
    box-shadow: 0 0 0 0.25rem rgba(102, 126, 234, 0.25);
}

/* Loja Cards */
.loja-card {
   transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.loja-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.loja-card-img-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: #f8f9fa;
}

.loja-card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.loja-card-body {
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
}

.loja-card-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: #2d3748;
    margin-bottom: 0;
}


.loja-logo-container {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.loja-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Cupom Cards */
.cupom-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.cupom-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.cupom-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1.5rem;
    text-align: center;
}

.cupom-desconto {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.cupom-tipo {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cupom-card-body {
    padding: 1.5rem;
}

.cupom-titulo {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 700;

}

.btn-regras{
    color: #767676;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer!important;
    font: inherit;
}

.btn-regras i {
  transition: transform .28s ease;
}

.btn-regras.aberto i {
  transform: rotate(180deg);
}

.cupom-descricao {
    font-size: .8333rem;
    line-height: 1rem;
    margin: 0.5rem 0.5rem .75rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}
.cupom-descricao.ativo {
  max-height: 800px; /* ajuste conforme necessidade */
  opacity: 1;
}

.cupom-validade {
    font-size: 0.875rem;
    color: #718096;
}

.btn-ver-cupom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-ver-cupom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

/* Modal */
.modal-content {
    border-radius: 16px;
    border: none;
}

.cupom-code-container {
    position: relative;
}

.cupom-code {
    background: #f7fafc;
}

.border-dashed {
    border-style: dashed !important;
}

#modalCodigo {
    font-size: 1.8rem;
    letter-spacing: 2px;
}

#btnCopiarIrLoja:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(72, 187, 120, 0.4);
}

/* Toast */
.toast {
    border-radius: 8px;
}

/* Footer */
footer {
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 250px;
    }
    
    .cupom-desconto {
        font-size: 2rem;
    }
    
    #modalCodigo {
        font-size: 1.5rem;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading-pulse {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Badge Customization */
.badge {
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.badge-exclusive {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.stats-counter {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.copy-button {
    transition: all 0.3s ease;
}

.copy-button:hover {
    transform: scale(1.05);
}

.verified-badge {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.breadcrumb a:hover {
    color: #7c3aed;
}

.gradient-option {
    cursor: pointer;
    transition: transform 0.2s;
}

.gradient-option:hover {
    transform: scale(1.05);
}

.gradient-preview {
    height: 70px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gradient-option.active .gradient-preview {
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.5);
}

.gradient-option.active i {
    display: block !important;
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

 .store-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}
/*quem-somos*/
 .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #667eea, #764ba2);
    transform: translateX(-50%);
}

@media (max-width: 768px) {
    .timeline-item::before {
        left: 20px;
    }
}

.value-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

/* Trust Badges */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll {
    animation: scroll 4s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}