@import url('theme-copa2026.css');

body.platform-page {
    margin: 0;
    min-height: 100vh;
    font-family: "Segoe UI", Arial, sans-serif;
    background:
        radial-gradient(circle at 10% 10%, rgba(245, 130, 32, 0.22), transparent 35%),
        radial-gradient(circle at 85% 15%, rgba(0, 92, 169, 0.18), transparent 40%),
        linear-gradient(145deg, #f7fbff 0%, #eef5fc 45%, #fdf6ed 100%);
}

.platform-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.platform-card {
    position: relative;
    width: 100%;
    max-width: 620px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 22px;
    padding: 36px;
    box-shadow: 0 28px 54px rgba(0, 59, 115, 0.18);
    backdrop-filter: blur(8px);
    text-align: center;
    overflow: hidden;
}

.platform-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #f58220, #ffab52, #005ca9);
}

.eyebrow {
    margin: 0 0 12px;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
    color: #b35e08;
}

.title {
    margin: 0;
    color: #003b73;
    font-size: clamp(1.6rem, 3vw, 2rem);
    line-height: 1.2;
}

.subtitle {
    margin: 14px 0 24px;
    color: #4a6078;
    line-height: 1.5;
    font-size: 1.02rem;
}

.platform-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
}

.btn {
    min-width: 130px;
    height: 42px;
    border-radius: 10px;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.btn-light {
    background: #eef3f8;
    color: #24384f;
    border: 1px solid #d8e3ef;
}

.btn-primary {
    min-width: 360px;
    background: linear-gradient(135deg, #005ca9 0%, #0071cd 55%, #f58220 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(0, 92, 169, 0.28);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-primary:hover {
    filter: brightness(1.04);
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0, 92, 169, 0.34);
}

@media (max-width: 640px) {
    .platform-card {
        padding: 26px 20px;
        border-radius: 16px;
    }

    .title {
        font-size: 1.5rem;
    }

    .btn-primary {
        min-width: 100%;
    }
}
