/* Fidelidade Page Styles */
.fidelidade-intro {
    padding: 48px 0;
}

.fidelidade-content {
    display: flex;
    align-items: center;
    gap: 48px;
}

.fidelidade-text {
    flex: 1;
}

.fidelidade-text h2 {
    margin-bottom: 24px;
    position: relative;
}

.fidelidade-text h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 0;
}

.fidelidade-text p {
    margin-bottom: 16px;
    color: #666;
}

.fidelidade-image {
    flex: 1;
}

.fidelidade-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    width: 100%;
}

/* Benefits Section */
.benefits {
    padding: 48px 0;
    background-color: var(--light-color);
    text-align: center;
}

.benefits h2 {
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
}

.benefits h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.benefit-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 32px 24px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.benefit-card h3 {
    margin-bottom: 16px;
    color: var(--dark-color);
}

.benefit-card p {
    color: #666;
}

/* Points Table */
.points-table {
    padding: 48px 0;
    text-align: center;
}

.points-table h2 {
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
}

.points-table h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.table-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover {
    background-color: #f9f9f9;
}

.table-note {
    margin-top: 16px;
    color: #666;
    font-style: italic;
}

/* Join Program Section */
.join-program {
    padding: 48px 0;
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
}

.join-program h2 {
    color: white;
    margin-bottom: 24px;
}

.join-program p {
    max-width: 800px;
    margin: 0 auto 16px;
}

.join-program .btn {
    margin-top: 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fidelidade-content {
        flex-direction: column-reverse;
    }
    
    .fidelidade-text, .fidelidade-image {
        flex: 100%;
    }
    
    .fidelidade-text {
        margin-top: 24px;
    }
    
    .table-container {
        overflow-x: auto;
    }
}