:root {
    --primary-color: #2481cc;
    --primary-hover: #1e6fb1;
    --bg-color: #ffffff;
    --section-bg: #f8f9fa;
    --text-main: #212121;
    --text-muted: #707579;
    --footer-bg: #f4f4f5;
    --container-width: 1100px;
    --transition-speed: 0.3s;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Roboto', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    height: 170px;
    position: relative;
    background: #3dbbf7;
    z-index: 1000;
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper img {
    height: 150px;
    width: auto;

}



/* Hero Section */
.hero {
    padding: 40px 0 60px;
    text-align: center;
    background: radial-gradient(circle at top right, rgba(36, 129, 204, 0.05), transparent);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out;
}

.hero-image {
    max-width: 475px;
    margin: 0 auto;
    animation: zoomIn 1s ease-out;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    font-size: 18px;
    font-weight: 400;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.2s ease;
    padding: 5px;
}

.download-btn i {
    font-size: 24px;
}

.download-btn:hover {
    transform: scale(1.1);
    color: #1e293b;
    /* Slightly lighter on hover */
}

.download-btn strong {
    font-weight: 700;
}

/* Features Section */
.features {
    padding: 30px 0;
    background-color: var(--section-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-item {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-item p {
    color: var(--text-muted);
}

/* Footer */
/* =========================================
   FOOTER PREMIUM CONSOLIDADO - ORIONXAPP
   ========================================= */
/* =========================================
   FOOTER REDESIGN - MDBootstrap Style
   ========================================= */
#footer {
    background-color: #1c2331; /* Cor escura do layout */
    color: #fff;
    padding-top: 60px;
}

#footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h4.footer-title {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #fff;
}

.footer-underline {
    width: 60px;
    height: 2px;
    background-color: #7c4dff; /* Roxo da imagem */
    margin-bottom: 25px;
}

.footer-col p {
    font-size: 14px;
    color: #bdbdbd;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bdbdbd;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col ul li a i {
    width: 20px;
    text-align: center;
}

.footer-col ul li a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    background-color: #161c27;
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
    color: #bdbdbd;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom a {
    color: #fff;
    font-weight: bold;
}

@media (max-width: 768px) {
    #footer .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-underline {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-col ul li a {
        justify-content: center;
    }
}


.developer {
    font-size: 14px;
    color: var(--text-muted);
}

.developer a {
    color: var(--primary-color);
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .download-buttons {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }
}



/* Stickers Banner */
.stickers-banner {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.stickers-header {
    border-bottom: 2px solid #1c2b36;
    margin-bottom: 30px;
    padding-bottom: 8px;
}

.stickers-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1c2b36;
    text-align: left;
}

.stickers-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stickers-list img {
    width: 82px;
    height: 82px;
    display: block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stickers-list img:hover {
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .stickers-list {
        justify-content: center;
        gap: 15px;
    }

    .stickers-list img {
        width: 70px;
        height: 70px;
    }
}

/* Album Feature Showcase */
.album-feature {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    overflow: hidden;
}

.album-feature .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.album-content {
    flex: 1;
}

.album-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    background: linear-gradient(to right, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.album-content p {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 40px;
}

.album-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(96, 165, 250, 0.3);
}

.benefit-card i {
    font-size: 28px;
    color: #60a5fa;
    margin-bottom: 16px;
    display: block;
}

.benefit-card h4 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
    color: #94a3b8;
}

.album-visual {
    flex: 1;
    position: relative;
}

.album-visual img {
    width: 279px;
    height: 480px;
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
    .album-feature .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .album-content h2 {
        font-size: 32px;
    }

    .album-benefits {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}