* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
    color: #ffffff;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.15);
    border-bottom: 1px solid rgba(220, 20, 60, 0.2);
}

.navbar-toggler {
    border: 2px solid rgba(220, 20, 60, 0.5);
    padding: 0.5rem 0.75rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.15);
    transform: scale(1.05);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.3rem rgba(220, 20, 60, 0.4);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28220, 20, 60, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    margin: 0 0.8rem;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
}

.nav-link:hover {
    color: #dc143c !important;
    background: rgba(220, 20, 60, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    color: #dc143c !important;
    background: rgba(220, 20, 60, 0.15);
}

.btn-register {
    background: linear-gradient(135deg, #dc143c 0%, #b81032 100%);
    color: white;
    font-weight: 700;
    padding: 0.8rem 2.2rem;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(220, 20, 60, 0.4);
    display: inline-block;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-register:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(220, 20, 60, 0.6);
    background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
    color: white;
}

.btn-login {
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 0.8rem 2.2rem;
    border: 2px solid rgba(220, 20, 60, 0.6);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-right: 1rem;
    display: inline-block;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-login:hover {
    border-color: #dc143c;
    background: rgba(220, 20, 60, 0.15);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 5px 15px rgba(220, 20, 60, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #dc143c 0%, #b81032 50%, #8b0000 100%);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-hero 5s ease-in-out infinite;
}

@keyframes pulse-hero {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0.5; }
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* Section Headers */
.section-badge {
    display: inline-block;
    background: rgba(220, 20, 60, 0.2);
    color: #dc143c;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    border: 2px solid rgba(220, 20, 60, 0.3);
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

/* Promo Cards */
.promos-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
}

.promo-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(22, 33, 62, 0.9) 100%);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid rgba(220, 20, 60, 0.2);
    margin-bottom: 2rem;
    height: 100%;
    position: relative;
}

.promo-card.featured {
    border-color: #dc143c;
    box-shadow: 0 10px 40px rgba(220, 20, 60, 0.4);
}

.promo-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(220, 20, 60, 0.5);
    border-color: #dc143c;
    background: linear-gradient(135deg, rgba(26, 26, 46, 1) 0%, rgba(22, 33, 62, 1) 100%);
}

.promo-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #dc143c 0%, #b81032 100%);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.6);
    z-index: 10;
}

.promo-ribbon.new {
    background: linear-gradient(135deg, #7ed321 0%, #5fb800 100%);
}

.promo-header {
    background: linear-gradient(135deg, #dc143c 0%, #b81032 100%);
    padding: 3rem 2rem 2.5rem;
    position: relative;
    text-align: center;
}

.promo-icon-wrapper {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.promo-card:hover .promo-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.25);
}

.promo-icon {
    font-size: 3.5rem;
    color: #ffffff;
}

.promo-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.promo-amount-wrapper {
    margin: 1rem 0;
}

.promo-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffff00;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.6);
    line-height: 1;
}

.promo-currency {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    opacity: 0.9;
    font-weight: 600;
}

.promo-body {
    padding: 2.5rem 2rem;
}

.promo-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.promo-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.promo-features li:last-child {
    border-bottom: none;
}

.promo-features i {
    color: #7ed321;
    font-size: 1.4rem;
    margin-right: 1rem;
}

.btn-claim {
    background: linear-gradient(135deg, #dc143c 0%, #b81032 100%);
    color: white;
    font-weight: 800;
    padding: 1.2rem 2.5rem;
    border-radius: 60px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    transition: all 0.4s ease;
    width: 100%;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.4);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-claim:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 20, 60, 0.6);
    background: linear-gradient(135deg, #ff1744 0%, #dc143c 100%);
    color: white;
}

/* Terms Section */
.terms-section {
    padding: 3rem 0;
}

.terms-card {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6) 0%, rgba(22, 33, 62, 0.6) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(220, 20, 60, 0.2);
}

.terms-card h4 {
    color: #dc143c;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.terms-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #dc143c 0%, #b81032 50%, #8b0000 100%);
    padding: 7rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-icon-mega {
    font-size: 6rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-25px); }
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.4);
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-mega {
    background: #ffffff;
    color: #dc143c;
    font-weight: 800;
    padding: 1.5rem 4rem;
    border-radius: 70px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    display: inline-block;
    text-decoration: none;
}

.btn-cta-mega:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    background: #f0f0f0;
    color: #dc143c;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.highlight-item i {
    font-size: 1.5rem;
}

/* Footer */
.footer {
    background: #000000;
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(220, 20, 60, 0.3);
}

.footer-title {
    color: #dc143c;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links li {
    display: block;
    margin: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #dc143c;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(220, 20, 60, 0.15);
    border: 2px solid rgba(220, 20, 60, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc143c;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #dc143c;
    border-color: #dc143c;
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease;
}

.pulse {
    animation: pulse-animation 2s ease-in-out infinite;
}

@keyframes pulse-animation {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive - Tablets (≤ 991px) */
@media (max-width: 991px) {
    .navbar-brand img {
        width: 60px;
    }

    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: 15px;
        border: 1px solid rgba(220, 20, 60, 0.2);
    }

    .navbar-nav {
        align-items: flex-start !important;
    }

    .nav-item {
        width: 100%;
        margin: 0.4rem 0 !important;
    }

    .nav-link {
        padding: 0.8rem 1.2rem !important;
        border-radius: 10px;
        margin: 0 !important;
        display: block;
    }

    .btn-register,
    .btn-login {
        width: 100%;
        text-align: center;
        margin: 0.6rem 0 !important;
        padding: 1rem 1.5rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.3rem;
    }

    .promo-amount {
        font-size: 3rem;
    }
}

/* Responsive - Mobile (≤ 768px) */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar-brand img {
        width: 55px;
    }

    .hero-section {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .promos-section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .promo-header {
        padding: 2.5rem 1.5rem 2rem;
    }

    .promo-icon-wrapper {
        width: 80px;
        height: 80px;
    }

    .promo-icon {
        font-size: 2.8rem;
    }

    .promo-title {
        font-size: 1.4rem;
    }

    .promo-amount {
        font-size: 2.5rem;
    }

    .promo-body {
        padding: 2rem 1.5rem;
    }

    .btn-claim {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .cta-subtitle {
        font-size: 1.2rem;
    }

    .btn-cta-mega {
        padding: 1.2rem 3rem;
        font-size: 1rem;
    }

    .cta-highlights {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Responsive - Smartphones pequenos (≤ 576px) */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .promo-ribbon {
        font-size: 0.65rem;
        padding: 0.4rem 2.5rem;
    }

    .promo-title {
        font-size: 1.2rem;
    }

    .promo-amount {
        font-size: 2rem;
    }

    .promo-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .promo-icon {
        font-size: 2.5rem;
    }

    .cta-icon-mega {
        font-size: 4rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .btn-cta-mega {
        padding: 1.1rem 2.5rem;
        font-size: 0.95rem;
    }
}

/* Responsive - Extra pequenos (≤ 400px) */
@media (max-width: 400px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .promo-amount {
        font-size: 1.8rem;
    }
}