/* Reset e Variáveis */
:root {
    --primary-color: #E03326;
    --secondary-color: #b82820;
    --accent-color: #ff4538;
    --text-color: #ffffff;
    --light-text: #a8a8a8;
    --background: #000000;
    --card-bg: #1a1a1a;
    --dark-bg: #000000;
    --darker-bg: #000000;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(224, 51, 38, 0.1);
    --glass-border: rgba(224, 51, 38, 0.2);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background: var(--dark-bg);
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 0.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.promo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    width: 100%;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 0.8rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-login {
    background: transparent;
    color: white;
    border: 2px solid var(--glass-border);
}

.btn-login:hover {
    background: var(--glass-bg);
    border-color: var(--accent-color);
}

.btn-register {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(119, 44, 248, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(119, 44, 248, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Background Animation */
.bg {
    background: linear-gradient(135deg, #ff4ac8, #9323d6, #3a0ca3, #1b1f60);
    background-size: 400% 400%;
    width: 100%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Hero Section */
.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: white;
    /* min-height: 100vh; */
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    width: fit-content;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: rgba(119, 44, 248, 0.2);
}

.trust-text {
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* Sports Section */
.sports {
    background: var(--darker-bg);
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.sports-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.sports-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sport-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(119, 44, 248, 0.2);
    color: var(--text-color);
}

.sport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(119, 44, 248, 0.2);
    background: var(--darker-bg);
    border-color: var(--primary-color);
}

.sport-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Casino Section */
.casino-image {
    display: flex;
    justify-content: center;
    align-items: center;

    & img {
        max-width: 300px;
        width: 100%;
    }
}

.casino {
    padding: 4rem 2rem;
    background: var(--card-bg);
}

.casino-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.casino-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.casino-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.casino-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: var(--transition);
}

.casino-btn:hover {
    background: var(--secondary-color);
}

/* Promotions Section */
.promotions {
    padding: 4rem 2rem;
    background: var(--darker-bg);
}

.promotions-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.promotion-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(119, 44, 248, 0.2);
    color: var(--text-color);
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(119, 44, 248, 0.2);
    background: var(--darker-bg);
    border-color: var(--primary-color);
}

.promotion-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Support Section */
.support {
    padding: 4rem 2rem;
    background: var(--card-bg);
}

.support-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.support-grid {
    max-width: 800px;
    margin: 0 auto;
}

.support-item {
    background: var(--card-bg);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.support-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--darker-bg);
    color: var(--text-color);
}

.support-answer {
    padding: 1.5rem;
    background: var(--card-bg);
    display: none;
    color: var(--light-text);
}

.support-item.active .support-answer {
    display: block;
}

/* Footer */
footer {
    background: var(--darker-bg);
    color: white;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(119, 44, 248, 0.2);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.links-column h3 {
    margin-bottom: 1rem;
}

.links-column ul {
    list-style: none;
}

.links-column a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.links-column a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(119, 44, 248, 0.1);
}

.security-badges {
    display: flex;
    gap: 1rem;
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero {
        padding: 4rem 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        margin: 0 auto;
    }

    .casino-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem;
    }

    .logo {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .cta-buttons {
        display: flex;
        gap: 0.8rem;
    }

    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }

    .cta-buttons {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .rating-badge {
        font-size: 0.9rem;
    }
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero,
.sports,
.casino,
.promotions,
.support {
    animation: fadeIn 1s ease-out;
}

/* Tabela de Cotação */
.cotacao-section {
    padding: 6rem 2rem;
    background: var(--darker-bg);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cotacao-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(119,44,248,0.05)"/></svg>');
    z-index: -1;
}

.cotacao-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    position: relative;
}

.cotacao-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.cotacao-header h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cotacao-header p {
    color: var(--light-text);
    font-size: 1.2rem;
}

.cotacao-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: 0 20px 40px rgba(119, 44, 248, 0.15),
        0 0 0 1px rgba(119, 44, 248, 0.1);
    overflow: hidden;
    backdrop-filter: blur(10px);
    position: relative;
    border: 1px solid rgba(119, 44, 248, 0.2);
}

.cotacao-table-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.cotacao-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
}

.cotacao-table th {
    background: rgba(119, 44, 248, 0.3);
    color: white;
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(119, 44, 248, 0.2);
    position: relative;
}

.cotacao-table th:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: rgba(119, 44, 248, 0.1);
}

.cotacao-table td {
    padding: 1.2rem;
    text-align: center;
    border-bottom: 1px solid rgba(119, 44, 248, 0.1);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.cotacao-table tr:last-child td {
    border-bottom: none;
}

.cotacao-table tr:hover td {
    background: rgba(119, 44, 248, 0.1);
    transform: translateY(-1px);
}

.cotacao-table .modalidade {
    font-weight: 700;
    color: var(--primary-color);
    text-align: left;
    font-size: 1.2rem;
    padding-left: 2rem;
}

.cotacao-table .premio {
    font-weight: 600;
    color: #00c853;
    position: relative;
}

.cotacao-table .premio::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0;
    transition: all 0.3s ease;
}

.cotacao-table tr:hover .premio::before {
    opacity: 1;
    left: 1rem;
}

@media (max-width: 768px) {
    .cotacao-section {
        padding: 3rem 1rem;
    }

    .cotacao-table-wrapper {
        margin: 0;
        border-radius: var(--border-radius);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .cotacao-table {
        min-width: 600px;
        margin: 0 auto;
    }

    .cotacao-table th,
    .cotacao-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .cotacao-table .modalidade {
        font-size: 1rem;
        padding-left: 1rem;
    }

    .cotacao-header h2 {
        font-size: 2rem;
    }

    .cotacao-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .cotacao-section {
        padding: 2rem 0.5rem;
    }

    .cotacao-table {
        min-width: 450px;
    }

    .cotacao-table th,
    .cotacao-table td {
        padding: 0.8rem;
        font-size: 0.8rem;
    }

    .cotacao-header h2 {
        font-size: 1.8rem;
    }
}

/* Efeitos de Glassmorphism */
.glass-effect {
    background: rgba(119, 44, 248, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(119, 44, 248, 0.2);
}

/* Links */
a {
    color: var(--text-color);
}

a:hover {
    color: var(--accent-color);
}

/* Textos */
.light-text {
    color: var(--light-text);
}

/* Gradientes */
.gradient-text {
    background: linear-gradient(135deg, #fff, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animações */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px var(--primary-color),
            0 0 10px var(--primary-color),
            0 0 15px var(--primary-color);
    }

    50% {
        box-shadow: 0 0 10px var(--primary-color),
            0 0 20px var(--primary-color),
            0 0 30px var(--primary-color);
    }

    100% {
        box-shadow: 0 0 5px var(--primary-color),
            0 0 10px var(--primary-color),
            0 0 15px var(--primary-color);
    }
}

.glow-effect {
    animation: glowPulse 2s infinite;
}

/* App Section */
.app-section {
    padding: 6rem 2rem;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(119,44,248,0.03)"/></svg>');
    z-index: 0;
}

.app-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.app-text {
    color: var(--text-color);
}

.app-text h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.app-description {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.app-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--border-radius);
    border: 1px solid rgba(119, 44, 248, 0.2);
    transition: var(--transition);
}

.app-features .feature:hover {
    transform: translateX(10px);
    background: rgba(119, 44, 248, 0.1);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2rem;
    /* background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.feature-text h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-text p {
    color: var(--light-text);
    font-size: 1rem;
}

.app-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
}

.app-download-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1.2rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.app-download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.app-download-btn:hover::before {
    transform: translateX(100%);
}

.app-download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(119, 44, 248, 0.3);
}

.download-icon {
    font-size: 2rem;
}

.download-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.download-label {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.download-size {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.app-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(119, 44, 248, 0.2));
    animation: floatAnimation 6s ease-in-out infinite;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--primary-color);
    filter: blur(100px);
    opacity: 0.2;
    z-index: 0;
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 992px) {
    .app-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .app-features .feature {
        text-align: left;
    }

    .app-buttons {
        justify-content: center;
    }

    .mockup-image {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .app-section {
        padding: 4rem 1rem;
    }

    .app-text h2 {
        font-size: 2.5rem;
    }

    .app-description {
        font-size: 1.1rem;
    }

    .app-features .feature {
        padding: 1rem;
    }

    .app-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .app-download-btn {
        padding: 1rem 1.5rem;
    }

    .download-label {
        font-size: 1.1rem;
    }

    .download-size {
        font-size: 0.8rem;
    }
}

/* Footer Responsivo */
@media (max-width: 768px) {
    footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .logo {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .links-column {
        text-align: center;
    }

    .links-column h3 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .links-column ul {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .security-badges {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-brand .logo {
        font-size: 1.8rem;
    }

    .links-column h3 {
        font-size: 1rem;
    }

    .links-column a {
        font-size: 0.9rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    .security-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .security-badges span {
        font-size: 0.8rem;
    }
}

/* Resultados Section */
.resultados-image {
    display: flex;
    justify-content: center;
    align-items: center;

    & img {
        max-width: 300px;
        width: 100%;
    }
}

.resultados {
    padding: 4rem 2rem;
    background: var(--card-bg);
}

.resultados-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.resultados-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resultados-description {
    color: var(--light-text);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.resultados-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.resultados-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: bold;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.resultados-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(119, 44, 248, 0.2);
}

@media (max-width: 992px) {
    .resultados-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .resultados-features {
        justify-content: center;
    }

    .resultados-image img {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .resultados {
        padding: 3rem 1rem;
    }

    .resultados-text h2 {
        font-size: 2rem;
    }

    .resultados-description {
        font-size: 1.1rem;
    }

    .resultados-features {
        flex-direction: column;
        align-items: flex-start;
    }

    .resultados-btn {
        width: 100%;
        text-align: center;
    }
}