/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.page-promotions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-hero {
    background: linear-gradient(135deg, #0A2E5B 0%, #204A77 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-promotions-hero > * {
    position: relative;
    z-index: 2;
}

.page-promotions-hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.2;
}

.page-promotions-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(50%);
}

.page-promotions-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1em;
}

.page-promotions-btn-primary {
    background-color: #FFD700;
    color: #0A2E5B;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions-btn-primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-promotions-btn-secondary {
    background-color: #0A2E5B;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9em;
}

.page-promotions-btn-secondary:hover {
    background-color: #FFD700;
    color: #0A2E5B;
    transform: translateY(-2px);
}

.page-promotions-btn-tertiary {
    background-color: transparent;
    color: #0A2E5B;
    border: 2px solid #0A2E5B;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9em;
}

.page-promotions-btn-tertiary:hover {
    background-color: #0A2E5B;
    color: #FFD700;
}

.page-promotions-btn-link {
    background-color: transparent;
    color: #0A2E5B;
    text-decoration: underline;
    padding: 5px 10px;
    border-radius: 0;
    font-size: 0.9em;
}

.page-promotions-btn-link:hover {
    color: #FFD700;
}

.page-promotions-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-promotions-section:nth-of-type(even) {
    background-color: #f1f1f1;
}

.page-promotions-section-title {
    font-size: 2.5em;
    color: #0A2E5B;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-promotions-section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.page-promotions-text {
    font-size: 1.1em;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-card-image {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-card-title {
    font-size: 1.8em;
    color: #0A2E5B;
    margin-bottom: 15px;
}

.page-promotions-card-description {
    color: #666;
    margin-bottom: 25px;
}

.page-promotions-steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    max-width: 800px;
    margin: 40px auto;
}

.page-promotions-steps li {
    position: relative;
    padding: 20px 0 20px 70px;
    border-left: 2px solid #FFD700;
    margin-bottom: 30px;
}

.page-promotions-steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #0A2E5B;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    border: 3px solid #FFD700;
}

.page-promotions-step-title {
    font-size: 1.5em;
    color: #0A2E5B;
    margin-bottom: 10px;
}

.page-promotions-steps p {
    color: #666;
    text-align: left;
}

.page-promotions-cta-bottom {
    text-align: center;
    margin-top: 50px;
}

.page-promotions-list {
    list-style: disc;
    text-align: left;
    max-width: 900px;
    margin: 40px auto;
    padding-left: 25px;
    color: #555;
}

.page-promotions-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-promotions-list li strong {
    color: #0A2E5B;
}

.page-promotions-detail-list {
    margin-top: 40px;
    display: grid;
    gap: 30px;
}

.page-promotions-detail-item {
    background-color: #fff;
    border-left: 5px solid #FFD700;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-promotions-detail-title {
    font-size: 1.6em;
    margin-bottom: 10px;
}

.page-promotions-detail-title a {
    color: #0A2E5B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-detail-title a:hover {
    color: #FFD700;
}

.page-promotions-detail-description {
    color: #666;
    margin-bottom: 20px;
}

.page-promotions-advantages {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 40px auto;
    text-align: left;
}

.page-promotions-advantages li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 1.1em;
    color: #555;
    border-left: 4px solid #0A2E5B;
}

.page-promotions-advantages li strong {
    color: #0A2E5B;
    font-size: 1.2em;
    display: block;
    margin-bottom: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions-title {
        font-size: 2.5em;
    }

    .page-promotions-subtitle {
        font-size: 1.2em;
    }

    .page-promotions-section-title {
        font-size: 2em;
    }

    .page-promotions-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-steps li {
        padding-left: 50px;
    }

    .page-promotions-steps li::before {
        left: -15px;
        width: 30px;
        height: 30px;
        font-size: 1.2em;
    }

    .page-promotions-step-title {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-promotions-title {
        font-size: 2em;
    }

    .page-promotions-subtitle {
        font-size: 1em;
    }

    .page-promotions-section-title {
        font-size: 1.8em;
    }

    .page-promotions-btn {
        padding: 12px 20px;
        font-size: 0.9em;
    }
}