/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: #0a0a0a;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

/* Smooth transitions for all interactive elements */
* {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

a, button, .btn {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card, .service-card, .comparison-banner {
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animation classes for scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1C2B34;
}

::-webkit-scrollbar-thumb {
    background: #F4D03F;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #DAA520;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #000000;
    border-bottom: 1px solid #B8860B;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand .logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-brand h2 {
    color: #ffffff;
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1;
}

.brand-tagline {
    color: #F4D03F;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease, background 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #F4D03F;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #F4D03F;
    background: rgba(244, 208, 63, 0.1);
}

.nav-link:hover::after {
    width: 80%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1C2B34 50%, #0f0f23 100%);
    color: white;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('imagens/bitcoin.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.25;
    filter: brightness(0.4) contrast(1.1);
    z-index: 1;
}

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

.hero-left {
    text-align: left;
    align-self: flex-start;
    padding-top: 2rem;
}

.hero-right {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-main-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 1s ease-out 0.3s both;
}

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

.hero-slogan {
    font-size: 1.5rem;
    color: #B8860B;
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out 0.6s both;
}

.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(184, 134, 11, 0.2);
    border: 1px solid #B8860B;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #B8860B;
    margin-bottom: 2rem;
}

.exclusive-badge i {
    font-size: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.crypto-prices {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.crypto-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: all 0.3s ease;
}

.crypto-price:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.crypto-icon {
    width: 50px;
    height: 50px;
    background: #d4af37;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1a1a2e;
}

.crypto-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.price-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #B8860B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    font-family: 'Inter', sans-serif;
}

.price-change {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    width: fit-content;
}

.price-change.positive {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.price-change.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.125rem 2.25rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    justify-content: center;
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out 0.9s both;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

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

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

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

.btn-primary {
    background: #d4af37;
    color: #1a1a2e;
    border-color: #d4af37;
}

.btn-primary:hover {
    background: #b8860b;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #2C3E50;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #2C3E50;
}

.btn-telegram:hover {
    background: #1C2B34;
    border-color: #1C2B34;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

.btn-telegram i {
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-start;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: slideInUp 1s ease-out 1.2s both;
    transition: all 0.3s ease;
    height: 120px;
    justify-content: center;
    gap: 0.5rem;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4af37;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 300px;
    height: 300px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    z-index: 2;
    position: relative;
}

.hero-graphic i {
    font-size: 4rem;
    color: #d4af37;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
}

.section-header h2 {
    animation: slideInUp 1s ease-out 0.3s both;
}

.section-header p {
    animation: slideInUp 1s ease-out 0.6s both;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-header p {
    font-size: 1.125rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: #000000;
    color: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('imagens/empresarios.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    filter: brightness(0.5) contrast(1.1);
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h3 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.about-text p {
    font-size: 1.125rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.feature i {
    color: #d4af37;
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
    width: 24px;
    text-align: center;
}

.feature span {
    font-weight: 500;
    color: #ffffff;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid #d4af37;
}

.image-placeholder i {
    font-size: 4rem;
    color: #d4af37;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1C2B34 50%, #0f0f23 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('imagens/dinheiro.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 208, 63, 0.1), transparent);
    transition: left 0.5s ease;
}

.pricing-card:hover::before {
    left: 100%;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.free-plan:hover {
    border-color: rgba(100, 116, 139, 0.6);
}

.premium-plan:hover {
    border-color: rgba(244, 208, 63, 0.3);
}

.free-plan {
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.15) 0%, rgba(51, 65, 85, 0.15) 100%);
    border: 2px solid rgba(100, 116, 139, 0.4);
}

.premium-plan {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.1) 0%, rgba(218, 165, 32, 0.1) 100%);
    border: 2px solid #F4D03F;
    position: relative;
}

.plan-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #F4D03F;
    color: #1C2B34;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid #F4D03F;
    transition: all 0.3s ease;
}

.pricing-card:hover .plan-icon {
    transform: scale(1.1);
}

.free-plan:hover .plan-icon {
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.2);
}

.premium-plan:hover .plan-icon {
    box-shadow: 0 10px 25px rgba(244, 208, 63, 0.3);
}

.plan-icon i {
    font-size: 2rem;
}

.free-plan .plan-icon i {
    color: #ffffff;
}

.premium-plan .plan-icon i {
    color: #F4D03F;
}

.free-plan .plan-icon {
    background: linear-gradient(135deg, #0088cc 0%, #0066aa 100%);
    border-color: #0088cc;
}

.premium-plan .plan-icon {
    background: linear-gradient(135deg, #F4D03F 0%, #DAA520 100%);
    border: 2px solid #F4D03F;
}

.free-plan .plan-icon i {
    color: #ffffff;
    background: transparent;
    border-radius: 50%;
    padding: 0.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #F4D03F;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: inherit;
    font-weight: 600;
}

.free-plan .price-value {
    color: rgba(148, 163, 184, 0.9);
    font-size: 2rem;
}

.premium-plan .price-value {
    color: #ffffff;
}

.plan-content {
    margin-bottom: 2rem;
}

.plan-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.plan-features i {
    color: #10B981;
    font-size: 0.9rem;
    width: 16px;
    flex-shrink: 0;
}

.plan-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline i {
    color: rgba(255, 255, 255, 0.9);
}

.btn-outline:hover i {
    color: rgba(255, 255, 255, 1);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #1C2B34;
    color: white;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('imagens/euro.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.25;
    filter: brightness(0.6) contrast(1.0);
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.services-grid .telegram-card,
.services-grid .pricing-card {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .services-grid .telegram-card {
        order: 1;
    }
    .services-grid .pricing-card {
        order: 2;
    }
}

.service-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    animation: fadeInUp 1s ease-out;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 208, 63, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.25);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid #d4af37;
}

.service-icon i {
    font-size: 2rem;
    color: #d4af37;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Removed - these styles are now specific to premium-plan only */

@keyframes crownGlow {
    0% {
        text-shadow: 0 0 10px rgba(244, 208, 63, 0.8);
        filter: drop-shadow(0 0 5px rgba(244, 208, 63, 0.6));
    }
    100% {
        text-shadow: 0 0 20px rgba(244, 208, 63, 1);
        filter: drop-shadow(0 0 10px rgba(244, 208, 63, 0.8));
    }
}

/* Animated Number - Vertical Roulette */
.animated-number {
    font-weight: 700;
    color: #F4D03F;
    text-shadow: 0 0 10px rgba(244, 208, 63, 0.8);
    display: inline-block;
    position: relative;
    overflow: hidden;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
}

.animated-number.animate {
    animation: verticalRoulette 3s ease-out;
}

.animated-number .number-display {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #F4D03F;
    text-shadow: 0 0 15px rgba(244, 208, 63, 1);
    position: absolute;
    width: 100%;
    height: 100%;
    line-height: 50px;
    text-align: center;
}

/* Vertical Roulette Container */
.roulette-container {
    position: relative;
    width: 80px;
    height: 80px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.roulette-wheel {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 1.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.roulette-number {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: #F4D03F;
    line-height: 80px;
    text-align: center;
}

/* Position each number vertically */
.roulette-number:nth-child(1) { transform: translateY(0%); }
.roulette-number:nth-child(2) { transform: translateY(100%); }
.roulette-number:nth-child(3) { transform: translateY(200%); }
.roulette-number:nth-child(4) { transform: translateY(300%); }
.roulette-number:nth-child(5) { transform: translateY(400%); }
.roulette-number:nth-child(6) { transform: translateY(500%); }
.roulette-number:nth-child(7) { transform: translateY(600%); }
.roulette-number:nth-child(8) { transform: translateY(700%); }
.roulette-number:nth-child(9) { transform: translateY(800%); }
.roulette-number:nth-child(10) { transform: translateY(900%); }
.roulette-number:nth-child(11) { transform: translateY(1000%); }
.roulette-number:nth-child(12) { transform: translateY(1100%); }
.roulette-number:nth-child(13) { transform: translateY(1200%); }
.roulette-number:nth-child(14) { transform: translateY(1300%); }
.roulette-number:nth-child(15) { transform: translateY(1400%); }
.roulette-number:nth-child(16) { transform: translateY(1500%); }
.roulette-number:nth-child(17) { transform: translateY(1600%); }
.roulette-number:nth-child(18) { transform: translateY(1700%); }
.roulette-number:nth-child(19) { transform: translateY(1800%); }
.roulette-number:nth-child(20) { transform: translateY(1900%); }
.roulette-number:nth-child(21) { transform: translateY(2000%); }
.roulette-number:nth-child(22) { transform: translateY(2100%); }
.roulette-number:nth-child(23) { transform: translateY(2200%); }
.roulette-number:nth-child(24) { transform: translateY(2300%); }
.roulette-number:nth-child(25) { transform: translateY(2400%); }
.roulette-number:nth-child(26) { transform: translateY(2500%); }

.roulette-wheel.spinning {
    animation: verticalRouletteSpin 1.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.percentage-symbol {
    font-size: 3rem;
    font-weight: 700;
    color: #F4D03F;
    margin-left: 0.1rem;
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
}

@keyframes verticalRouletteSpin {
    /* Sobe rápido no início e desacelera perto do 85 */
    0%   { transform: translateY(0%); }
    10%  { transform: translateY(-1200%); }
    35%  { transform: translateY(-2100%); }
    60%  { transform: translateY(-2380%); }
    80%  { transform: translateY(-2460%); }
    92%  { transform: translateY(-2488%); }
    100% { transform: translateY(-2500%); }
}

@keyframes verticalRoulette {
    0% {
        transform: translateY(0%);
        opacity: 1;
    }
    20% {
        transform: translateY(-20%);
        opacity: 0.8;
    }
    40% {
        transform: translateY(-40%);
        opacity: 0.6;
    }
    60% {
        transform: translateY(-60%);
        opacity: 0.4;
    }
    80% {
        transform: translateY(-80%);
        opacity: 0.2;
    }
    100% {
        transform: translateY(-85%);
        opacity: 1;
    }
}

.pricing-card .btn-primary {
    background: #1C2B34;
    color: #F4D03F;
    border: 2px solid #F4D03F;
    font-weight: 700;
}

.pricing-card .btn-primary:hover {
    background: #2C3E50;
    color: #F4D03F;
    border: 2px solid #F4D03F;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.4);
}

.telegram-card {
    background: linear-gradient(135deg, #2C3E50 0%, #1C2B34 100%);
    color: white;
    border: 2px solid #2C3E50;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.2);
}

.telegram-card h3 {
    color: #ffffff !important;
}

.telegram-card p {
    color: #ffffff !important;
}

.telegram-card .price {
    color: #ffffff !important;
}

.telegram-card .service-icon {
    background: linear-gradient(135deg, #2C3E50 0%, #1C2B34 100%);
    border: none;
}

.telegram-card .service-icon i {
    color: #0088cc;
    background: #ffffff;
    border-radius: 50%;
    padding: 0.5rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card .service-icon i {
    color: #1a1a2e;
}

.pricing-card h3 {
    color: white;
}

.pricing-card p {
    color: #e5e7eb;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: #000000;
}

.service-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Comparison Section */
.comparison {
    padding: 6rem 0;
    background: #0a0a0a;
    color: white;
    position: relative;
    overflow: hidden;
}

.comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('imagens/dinheiro.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.comparison .container {
    position: relative;
    z-index: 2;
}

.apple-comparison {
    margin-top: 3rem;
    overflow-x: auto;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 800px;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: #f8f9fa;
    border-bottom: 1px solid #e5e7eb;
}

.feature-column {
    padding: 2rem 1.5rem;
    font-weight: 600;
    color: #1C2B34;
    display: flex;
    align-items: center;
}

.option-column {
    padding: 2rem 1.5rem;
    text-align: center;
    border-left: 1px solid #e5e7eb;
    position: relative;
}

.option-column.recommended {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
}

.option-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.option-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6b7280;
}

.option-column.recommended .option-price {
    color: white;
}

.recommended-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F4D03F 0%, #DAA520 100%);
    color: #1a1a2e;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.4);
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
}

.comparison-row:hover {
    background-color: #f8f9fa;
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-name {
    padding: 1.5rem;
    font-weight: 500;
    color: #374151;
    display: flex;
    align-items: center;
}

.feature-value {
    padding: 1.5rem;
    text-align: center;
    font-weight: 500;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #e5e7eb;
    gap: 0.5rem;
}

.status-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.yellow-icon {
    filter: hue-rotate(60deg) saturate(1.5) brightness(1.2);
}

.comparison-row:nth-child(even) {
    background-color: #f8f9fa;
}

.comparison-row:nth-child(even):hover {
    background-color: #e5e7eb;
}

/* Why Choose Section */
.why-choose-section {
    margin: 4rem 0;
    text-align: center;
}

.why-choose-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #F4D03F;
}

.why-choose-section .benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(244, 208, 63, 0.2);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(244, 208, 63, 0.1);
    border-color: rgba(244, 208, 63, 0.4);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(244, 208, 63, 0.1);
}

.benefit-item:last-child {
    border-bottom: none;
}

.benefit-item i {
    font-size: 1.5rem;
    color: #F4D03F;
    width: 30px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: #ffffff;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Comparison Banners */
.comparison-banners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.comparison-banner {
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.comparison-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.comparison-banner:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.comparison-banner.no-access {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.25) 0%, rgba(233, 236, 239, 0.25) 100%);
    border-color: rgba(108, 117, 125, 0.3);
    color: white;
}

.comparison-banner.free-group {
    background: linear-gradient(135deg, rgba(28, 43, 52, 0.35) 0%, rgba(44, 62, 80, 0.35) 100%);
    border-color: rgba(28, 43, 52, 0.4);
    color: white;
}

.comparison-banner.premium-subscription {
    background: linear-gradient(135deg, rgba(244, 208, 63, 0.25) 0%, rgba(218, 165, 32, 0.25) 100%);
    border-color: rgba(244, 208, 63, 0.4);
    color: white;
    position: relative;
}

.banner-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.banner-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.banner-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.banner-features {
    margin-bottom: 1.5rem;
}


.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    color: white;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}

.feature-icon.available {
    background: #10B981;
    color: white;
}

.feature-icon.limited {
    background: #F59E0B;
    color: white;
}

.feature-icon.unavailable {
    background: #EF4444;
    color: white;
}

.banner-conclusion {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    border-radius: 14px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.banner-conclusion p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.comparison-banner.premium-subscription .banner-conclusion {
    background: rgba(255, 255, 255, 0.1);
}

.recommended-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F4D03F 0%, #DAA520 100%);
    color: #1a1a2e;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.4);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #1C2B34;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}


    .form-section {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #F4D03F;
    text-align: center;
}

.guarantee-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guarantee-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #F4D03F;
    text-align: center;
}

.guarantee-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.guarantee-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
    background: rgba(244, 208, 63, 0.1);
    border-radius: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.guarantee-item:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(244, 208, 63, 0.2);
    border-color: rgba(244, 208, 63, 0.3);
    box-shadow: 0 8px 25px rgba(244, 208, 63, 0.2);
}

.guarantee-item i {
    font-size: 1.5rem;
    color: #F4D03F;
    margin-bottom: 0.5rem;
}

.guarantee-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    color: #d4af37;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-item p {
    color: #ffffff;
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.125rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: #f9fafb;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #d4af37;
    background: white;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.form-group select {
    width: 100%;
    padding: 1.125rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: #f9fafb;
    cursor: pointer;
}

.contact-form h3 {
    color: #1C2B34;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.5rem;
}

.form-note {
    text-align: center;
    color: #6b7280;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.payment-methods {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
}

.payment-methods h4 {
    color: #1C2B34;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.payment-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.payment-method:hover {
    background: white;
    border-color: #d4af37;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.15);
}

.payment-method i {
    color: #d4af37;
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

.payment-method span {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1C2B34;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #0a0a0a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: #F4D03F;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 208, 63, 0.3);
}

.social-link i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.social-link span {
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

.disclaimer {
    font-size: 0.875rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1rem 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .hero-left {
        text-align: center;
        order: 1;
    }

    .hero-right {
        order: 2;
    }

    .hero-main-title {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 1rem;
        animation: slideInLeft 1s ease-out 0.3s both;
    }

    .hero-slogan {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        animation: slideInLeft 1s ease-out 0.6s both;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        animation: slideInLeft 1s ease-out 0.9s both;
    }

    /* Mobile Menu Improvements */
    .nav-menu {
        background-color: #000000 !important;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    }

    .nav-link {
        color: #ffffff !important;
        font-size: 1.1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 80%;
        margin: 0 auto;
    }

    .nav-link:hover {
        color: #F4D03F !important;
        background: rgba(244, 208, 63, 0.1);
    }

    .hamburger {
        display: flex !important;
    }

    .header {
        height: 70px;
        padding: 1rem 0;
    }

    .nav {
        height: 100%;
        align-items: center;
        padding: 1rem 1rem;
    }

    .nav-brand {
        gap: 0.75rem;
    }

    .nav-brand .logo {
        width: 50px;
        height: 50px;
    }

    .nav-brand h2 {
        font-size: 1.5rem;
    }

    .brand-tagline {
        font-size: 0.75rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 2rem;
        margin-top: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .service-card {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .pricing-card {
        padding: 2rem 1.75rem;
        border-radius: 20px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
    }
    
    .pricing-card:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
    }

    .plan-header h3 {
        font-size: 1.25rem;
    }

    .price-value {
        font-size: 2rem;
    }

    .free-plan .price-value {
        font-size: 1.75rem;
    }

    .plan-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .plan-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }

    .btn-outline,
    .btn-primary {
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    
    .btn-outline:hover,
    .btn-primary:hover {
        transform: translateY(-3px) scale(1.01);
    }

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

    .about-text h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .about-features {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        text-align: center;
    }

    .feature {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
        max-width: 200px;
        width: 100%;
    }

    .feature i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .feature span {
        font-size: 0.9rem;
        line-height: 1.3;
        text-align: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }


    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .guarantee-items {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-choose-section {
        margin: 2rem 0;
        padding: 0 1rem;
    }

    .why-choose-section h3 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .why-choose-section .benefit-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 100%;
    }

    .benefit-item {
        padding: 1rem 0;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .benefit-item i {
        font-size: 2rem;
        width: auto;
        margin-bottom: 0.5rem;
    }

    .benefit-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .benefit-item p {
        font-size: 0.9rem;
        line-height: 1.4;
        max-width: 250px;
        margin: 0 auto;
    }


    .payment-section h4,
    .guarantee-section h4 {
        font-size: 1.1rem;
    }

    /* Comparison Banners Mobile */
    .comparison-banners {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .comparison-banner {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 100%;
    }

    .banner-header h3 {
        font-size: 1.3rem;
    }

    .banner-price {
        font-size: 1.1rem;
    }

    .feature-item {
        padding: 0.75rem;
        margin-bottom: 0.5rem;
        flex-direction: row;
        align-items: center;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 12px;
        margin-right: 8px;
        flex-shrink: 0;
    }

    .feature-item span {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .banner-conclusion {
        padding: 1rem;
        margin-top: 1rem;
    }

    .banner-conclusion p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .contact-form {
        padding: 1.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem;
        font-size: 16px;
    }

    .contact-form h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .form-group input,
    .form-group select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .social-links {
        align-items: center;
    }

    .apple-comparison {
        margin-top: 2rem;
        overflow-x: visible;
    }

    .comparison-table {
        min-width: auto;
        display: block;
    }

    .table-header {
        display: none;
    }

    .comparison-row {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        background: white;
        overflow: hidden;
    }

    .comparison-row:hover {
        background: white;
    }

    .feature-name {
        padding: 1rem;
        font-weight: 600;
        background: #f8f9fa;
        border-bottom: 1px solid #e5e7eb;
        color: #1C2B34;
        font-size: 0.9rem;
    }

    .feature-value {
        padding: 0.75rem 1rem;
        border-left: none;
        border-bottom: 1px solid #e5e7eb;
        text-align: left;
        font-size: 0.85rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .feature-value:last-child {
        border-bottom: none;
    }

    .feature-value::before {
        content: attr(data-option);
        font-weight: 600;
        color: #1C2B34;
        font-size: 0.8rem;
    }

    .comparison-row:nth-child(even) {
        background: white;
    }

    .comparison-row:nth-child(even):hover {
        background: white;
    }

    .comparison-banners {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .comparison-banner {
        padding: 1.5rem;
    }

    .banner-header h3 {
        font-size: 1.25rem;
    }

    .banner-price {
        font-size: 1.1rem;
    }

    .feature-item {
        font-size: 0.85rem;
        gap: 0.5rem;
    }


    .feature-icon {
        width: 16px;
        height: 16px;
    }

    .banner-conclusion p {
        font-size: 0.8rem;
    }

    .status-icon {
        width: 16px;
        height: 16px;
    }

    .banner-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .banner-content p {
        font-size: 0.9rem;
    }

    .social-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .social-link i {
        font-size: 1rem;
    }

    .hero {
        padding: 2rem 1rem 3rem;
        margin-top: 70px;
        min-height: calc(100vh - 70px);
    }

    .hero-content {
        padding-top: 0.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 2rem;
        margin-top: 2rem;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
    }

    .stat {
        gap: 0.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
        max-width: 120px;
        min-height: 80px;
        justify-content: flex-start;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: #d4af37;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 50px;
        line-height: 1;
    }

    .stat-number .roulette-container,
    .stat-number .percentage-symbol {
        color: #d4af37;
        font-size: 2.5rem;
        font-weight: 700;
    }

    .stat-number .roulette-number {
        color: #d4af37;
        font-size: 2.5rem;
        font-weight: 700;
    }

    .stat-label {
        font-size: 0.8rem;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        text-align: center;
        line-height: 1.2;
        min-height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .crypto-prices {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .crypto-price {
        min-width: auto;
        width: 100%;
        max-width: 100%;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-graphic {
        width: 200px;
        height: 200px;
    }

    .hero-graphic i {
        font-size: 3rem;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
    }

    .image-placeholder i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .service-card,
    .contact-form {
        padding: 1.5rem;
    }

    .payment-icons {
        grid-template-columns: 1fr;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pricePulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

/* Scroll suave */
html {
    scroll-behavior: smooth;
}

/* Estados de hover melhorados */
.service-card:hover .service-icon {
    transform: scale(1.1);
}

.btn:hover {
    transform: translateY(-2px);
}

/* Melhorias de acessibilidade */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
