@font-face {
    font-family: "DelaGothicOne";
    src: url("../fonts/DelaGothicOne-Regular.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "NotoSansHans-Regular";
    src: url("fonts/NotoSansHans-Regular.otf") format("opentype");
    font-display: swap;
}

@font-face {
    font-family: "NotoSerifCJKsc-Bold";
    src: url("../fonts/NotoSerifCJKsc-Bold.otf") format("opentype");
    font-display: swap;
}

:root {
    --primary-gold: #16647f;
    --secondary-gold: #20d4f8;
    --magic-blue: #00bfff;
    --magic-purple: #9370db;
    --glass-bg: rgba(20, 20, 30, 0.75);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-main: #ffffff;
    --text-secondary: #cccccc;
    --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    --neon-glow: 0 0 15px rgba(32, 212, 248, 0.35);
}

.download-landing * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.download-landing {
    position: relative;
    min-height: 100vh;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0px 0 140px;
    color: var(--text-main);
    font-family: "NotoSansHans-Regular", "Segoe UI", Tahoma, sans-serif;
    overflow: hidden;
}

.download-landing #particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.download-landing .main-container {
    position: relative;
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    padding: 0 20px;
}

.download-landing header {
    text-align: center;
    animation: fadeInDown 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.download-landing .main-title {
    font-family: "DelaGothicOne", "Segoe UI", Tahoma, sans-serif;
    font-size: clamp(42px, 5vw, 84px);
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-gold);
    background: linear-gradient(180deg, #ffffff 20%, var(--primary-gold) 60%, var(--secondary-gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    text-shadow: 0 0 30px var(--secondary-gold);
    letter-spacing: 4px;
}

.download-landing .main-title::after {
    content: "BAIXE O CLIENTE";
    position: absolute;
    inset: 0;
    color: transparent;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s infinite linear;
    pointer-events: none;
}

.download-landing .subtitle {
    font-family: "NotoSerifCJKsc-Bold", "Times New Roman", serif;
    font-size: 24px;
    color: var(--text-secondary);
    margin-top: 10px;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.download-landing .decor-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    font-size: 24px;
    color: var(--secondary-gold);
}

.download-landing .decor-bar i {
    filter: drop-shadow(0 0 5px rgba(218, 165, 32, 0.6));
    animation: floatIcon 3s ease-in-out infinite;
}

.download-landing .decor-bar i:nth-child(2) {
    animation-delay: 0.2s;
}

.download-landing .decor-bar i:nth-child(3) {
    animation-delay: 0.4s;
}

.download-landing .decor-bar i:nth-child(4) {
    animation-delay: 0.6s;
}

.download-landing .cards-wrapper {
    width: min(1600px, 100%);
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    perspective: 2000px;
    padding: 10px 0 20px;
}

.download-landing .download-card {
    width: 360px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    box-shadow: var(--card-shadow);
    animation: fadeInUp 1s cubic-bezier(0.25, 1, 0.5, 1) both;
    cursor: pointer;
}

.download-landing .download-card:nth-child(1) {
    animation-delay: 0.2s;
}

.download-landing .download-card:nth-child(2) {
    animation-delay: 0.4s;
    border-color: var(--secondary-gold);
    box-shadow: 0 0 30px var(--secondary-gold);
}

.download-landing .download-card:nth-child(3) {
    animation-delay: 0.6s;
}

.download-landing .card-bg-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 191, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.download-landing .download-card:hover {
    transform: translateY(-16px) rotateX(5deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), var(--secondary-gold);
    border-color: var(--primary-gold);
}

.download-landing .download-card:hover .card-bg-effect {
    opacity: 1;
}

.download-landing .magic-circle,
.download-landing .magic-circle2,
.download-landing .magic-circle3 {
    position: absolute;
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(180deg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 50%;
    opacity: 0;
    mix-blend-mode: screen;
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.download-landing .magic-circle {
    background-image: url("img/img1.png");
}

.download-landing .magic-circle2 {
    background-image: url("img/img2.png");
}

.download-landing .magic-circle3 {
    background-image: url("img/img3.png");
}

.download-landing .download-card:hover .magic-circle,
.download-landing .download-card:hover .magic-circle2,
.download-landing .download-card:hover .magic-circle3 {
    transform: translate(-50%, -50%) scale(1.35) rotate(0deg);
    opacity: 0.2;
}

.download-landing .platform-icon {
    font-size: 64px;
    color: var(--text-main);
    margin-bottom: 18px;
    z-index: 2;
    text-shadow: 0 0 20px var(--magic-blue);
    transition: transform 0.4s, color 0.4s;
}

.download-landing .download-card:hover .platform-icon {
    transform: scale(1.1) translateZ(30px);
    color: var(--secondary-gold);
    text-shadow: 0 0 30px var(--secondary-gold);
}

.download-landing .card-title {
    font-family: "NotoSerifCJKsc-Bold", "Times New Roman", serif;
    font-size: 26px;
    margin-bottom: 10px;
    z-index: 2;
    transform: translateZ(20px);
}

.download-landing .card-badge {
    background: linear-gradient(90deg, #ff8c00, #daa520);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 18px;
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
    z-index: 2;
    transform: translateZ(25px);
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.download-landing .card-desc {
    text-align: center;
    font-size: 14px;
    color: #aaaaaa;
    margin-bottom: 34px;
    line-height: 1.6;
    z-index: 2;
    transform: translateZ(15px);
}

.download-landing .btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 0;
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--secondary-gold) 100%);
    color: #fff;
    text-decoration: none;
    font-family: "DelaGothicOne", "Segoe UI", Tahoma, sans-serif;
    font-size: 18px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    transform: translateZ(40px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.download-landing .btn-download::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.download-landing .download-card:hover .btn-download {
    background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--primary-gold) 100%);
    box-shadow: 0 0 30px var(--primary-gold);
    transform: translateZ(50px) scale(1.04);
}

.download-landing .download-card:hover .btn-download::before {
    left: 100%;
}

.download-landing .btn-download i {
    margin-right: 10px;
    font-size: 20px;
}

.download-landing .info-section {
    width: min(1200px, 100%);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    z-index: 10;
}

.download-landing .info-box {
    background: linear-gradient(to bottom, #1a1a25, #101018);
    border: 2px solid var(--secondary-gold);
    border-radius: 12px;
    padding: 30px;
    color: #dddddd;
    position: relative;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.55), 0 0 25px rgba(32, 212, 248, 0.2);
}

.download-landing .info-box::before {
    content: "";
    position: absolute;
    border-radius: 12px;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    border: 1px solid rgba(32, 212, 248, 0.35);
    pointer-events: none;
}

.download-landing .info-title {
    font-family: "NotoSerifCJKsc-Bold", "Times New Roman", serif;
    font-size: 20px;
    color: var(--secondary-gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(32, 212, 248, 0.55);
    padding-bottom: 10px;
}

.download-landing .req-list,
.download-landing .step-list {
    list-style: none;
    font-size: 14px;
    line-height: 1.8;
}

.download-landing .req-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    gap: 12px;
}

.download-landing .req-list span.val {
    color: #ffffff;
    font-weight: 700;
}
.download-landing .req-list span:first-child {
    color: rgba(32, 212, 248, 0.9);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.download-landing .step-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}

.download-landing .step-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--secondary-gold);
    font-size: 12px;
    top: 2px;
}

.download-landing .alert-box {
    grid-column: 1 / -1;
    background: rgba(255, 69, 0, 0.08);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-radius: 8px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #ffcccb;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.download-landing .alert-box i {
    font-size: 24px;
    color: #ff4500;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

@keyframes floatIcon {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 1200px) {
    .download-landing {
        padding: 40px 0 60px;
    }
    .download-landing .cards-wrapper {
        gap: 24px;
    }
    .download-landing .download-card {
        width: 320px;
    }
}

@media (max-width: 768px) {
    .download-landing .subtitle {
        font-size: 18px;
    }
    .download-landing .decor-bar {
        gap: 14px;
    }
    .download-landing .info-section {
        grid-template-columns: 1fr;
    }
}
