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

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

.page-promotions__section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-section {
    background: linear-gradient(135deg, #007bff 0%, #28a745 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.page-promotions__hero-section .page-promotions__container {
    z-index: 1;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-promotions__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0f7fa;
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-promotions__section-title,
.page-promotions__cta-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions__text {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-promotions__btn--primary {
    background-color: #28a745;
    color: #fff;
    border: 2px solid #28a745;
}

.page-promotions__btn--primary:hover {
    background-color: #218838;
    border-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.page-promotions__btn--secondary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.page-promotions__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.page-promotions__introduction .page-promotions__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.page-promotions__introduction .page-promotions__text {
    flex: 1;
    min-width: 300px;
    margin-right: 30px;
}

.page-promotions__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-promotions__image--right {
    flex: 0 0 45%;
    margin-left: 30px;
}

.page-promotions__image--left {
    flex: 0 0 45%;
    margin-right: 30px;
}

.page-promotions__image--center {
    display: block;
    margin: 40px auto;
    max-width: 80%;
}

.page-promotions__promotion-types {
    background-color: #e6f7ff;
}

.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 4px 15px 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 8px 25px rgba(0,0,0,0.15);
}

.page-promotions__card-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-description {
    font-size: 1em;
    color: #555;
}

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

.page-promotions__detail-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
}

.page-promotions__detail-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-promotions__detail-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-promotions__detail-title a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__detail-title a:hover {
    text-decoration: underline;
}

.page-promotions__detail-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__terms-responsible {
    background-color: #f0f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promotions__terms-responsible .page-promotions__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.page-promotions__terms-responsible .page-promotions__text {
    flex: 1;
    min-width: 300px;
}

.page-promotions__terms-responsible .page-promotions__image--left {
    margin-right: 30px;
}

.page-promotions__cta-section {
    background: linear-gradient(45deg, #0056b3, #007bff);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__cta-section .page-promotions__container {
    z-index: 1;
    position: relative;
}

.page-promotions__cta-title {
    font-size: 2.8em;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-promotions__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: #e0f7fa;
}

.page-promotions__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__section-title, .page-promotions__cta-title {
        font-size: 2em;
    }
    .page-promotions__introduction .page-promotions__text,
    .page-promotions__terms-responsible .page-promotions__text {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .page-promotions__image--right,
    .page-promotions__image--left {
        flex: 0 0 100%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__section-title, .page-promotions__cta-title {
        font-size: 1.8em;
    }
    .page-promotions__grid,
    .page-promotions__detail-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-section {
        padding: 60px 0;
    }
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__section-title, .page-promotions__cta-title {
        font-size: 1.5em;
    }
    .page-promotions__text {
        font-size: 0.95em;
    }
    .page-promotions__card-title {
        font-size: 1.5em;
    }
    .page-promotions__detail-title {
        font-size: 1.3em;
    }
}