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

:root {
    --primary-blue: #1E3A8A;
    --light-blue: #3B82F6;
    --accent-blue: #60A5FA;
    --golden: #F59E0B;
    --light-golden: #FCD34D;
    --dark-golden: #D97706;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --dark-gray: #1F2937;
    --text-gray: #6B7280;
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    --gradient-golden: linear-gradient(135deg, var(--golden) 0%, var(--light-golden) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(45deg, #001122 0%, #002244 50%, #001133 100%);
}

.particle {
    position: absolute;
    background: var(--light-golden);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(30, 58, 138, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--golden);
}

.header.scrolled {
    background: rgba(30, 58, 138, 0.98);
    box-shadow: var(--shadow-medium);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-img {
    width: 155px;
    height: 55px;
    object-fit: content;
    /*border-radius: 50%;
    border: 2px solid var(--golden);*/
}
.logo-img1 {
    width: 150px;
    height: 130px;
    object-fit: content;
    /*border-radius: 50%;
    border: 2px solid var(--golden);*/
}
.logo-img2 {
    width: 190px;
    height: 100px;
    object-fit: content;
    /*border-radius: 50%;
    border: 2px solid var(--golden);*/
}

/* #papelaria {
    width: 130px;
    height: 170px;
    object-fit: content;
} */

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    background: var(--gradient-golden);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--light-golden);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--gradient-golden);
    transition: width 0.3s ease;
}

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

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

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Image Section */
.hero-image {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px; /* Account for fixed header */
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.1) 0%,
        rgba(59, 130, 246, 0.05) 50%,
        rgba(245, 158, 11, 0.1) 100%
    );
    pointer-events: none;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-line1 {
    display: block;
    background: var(--gradient-golden);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s ease-out;
}

.title-line2 {
    display: block;
    color: var(--white);
    animation: slideInRight 1s ease-out 0.3s both;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 40px;
    font-weight: 500;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-prizes {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.9s both;
    flex-wrap: wrap;
}

.prize-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 50px;
    border: 1px solid rgba(252, 211, 77, 0.3);
    transition: transform 0.3s ease;
}

.prize-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.prize-item i {
    font-size: 24px;
    color: var(--light-golden);
}

.prize-item span {
    font-weight: 500;
    font-size: 16px;
}

.cta-button {
    background: var(--gradient-golden);
    color: var(--primary-blue);
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-medium);
    animation: fadeInUp 1s ease-out 1.2s both;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
    background: linear-gradient(135deg, var(--light-golden) 0%, var(--golden) 100%);
}

.cta-button i {
    animation: bounce 2s infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-star {
    position: absolute;
    font-size: 24px;
    animation: floatStar 4s ease-in-out infinite;
}

.star-1 { top: 20%; left: 10%; animation-delay: 0s; }
.star-2 { top: 30%; right: 15%; animation-delay: 1s; }
.star-3 { top: 60%; left: 20%; animation-delay: 2s; }
.star-4 { bottom: 25%; right: 25%; animation-delay: 1.5s; }
.star-5 { bottom: 40%; left: 15%; animation-delay: 0.5s; }

@keyframes floatStar {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg);
        opacity: 1;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section:nth-child(even) {
    background: rgb(180, 215, 245);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
}
.section-title1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--light-gray);
    margin-bottom: 20px;
    position: relative;
}

.title-decoration {
    width: 100px;
    height: 4px;
    background: var(--gradient-golden);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Promoção Section */
.promocao-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.promocao-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.promocao-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(252, 211, 77, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.promocao-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--light-golden);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-golden);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.promocao-card:hover .card-icon {
    transform: rotate(360deg);
}

.card-icon i {
    font-size: 36px;
    color: var(--white);
}

.promocao-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.promocao-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.promo-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.detail-box {
    background: var(--primary-blue);
    color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.detail-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(252, 211, 77, 0.3), transparent, rgba(252, 211, 77, 0.3));
    animation: rotate 6s linear infinite;
}

.detail-box::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--primary-blue);
    border-radius: 13px;
    z-index: 1;
}

.detail-box > * {
    position: relative;
    z-index: 2;
}

.detail-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--light-golden);
}

.detail-box p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.detail-box i {
    color: var(--light-golden);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Lojas Section */
.lojas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.loja-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.loja-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--light-blue);
}

.loja-logo {
    text-align: center;
    margin-bottom: 20px;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #E5E7EB 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px dashed var(--text-gray);
    transition: all 0.3s ease;
}

.loja-card:hover .logo-placeholder {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    border-color: var(--primary-blue);
}

.loja-card:hover .logo-placeholder i {
    color: var(--white);
}

.loja-card:hover .logo-placeholder span {
    color: var(--white);
}

.logo-placeholder i {
    font-size: 36px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.logo-placeholder span {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

.loja-nome {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-align: center;
}

.loja-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.loja-telefone,
.loja-endereco {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.loja-telefone i,
.loja-endereco i {
    width: 18px;
    color: var(--primary-blue);
}

.loja-instagram {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--golden);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.loja-instagram:hover {
    color: var(--dark-golden);
    transform: translateX(5px);
}

.loja-instagram i {
    width: 18px;
    font-size: 20px;
}

.add-more-stores {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.add-more-stores i {
    color: var(--light-golden);
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Premiação Section */
.premios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.premio-card {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

.primeiro-premio {
    border-color: var(--golden);
}

.segundo-premio {
    border-color: var(--light-blue);
}

.premio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.premio-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-golden);
    color: var(--primary-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.segundo-premio .premio-badge {
    background: var(--gradient-primary);
    color: var(--white);
}

.premio-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-weight: 600;
    transition: all 0.3s ease;
}

.navio-placeholder {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
}

.tv-placeholder {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

.image-placeholder i {
    font-size: 80px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.image-placeholder span {
    font-size: 1.1rem;
}

.premio-content {
    padding: 30px;
}

.premio-content h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.premio-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.premio-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.premio-features span {
    background: var(--light-gray);
    color: var(--primary-blue);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.premio-features i {
    color: var(--golden);
}

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

.info-card {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.info-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.info-card i {
    color: var(--light-golden);
}

/* Contato Section */
.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.logo-contato {
    text-align: center;
    margin-bottom: 40px;
}

.contato-logo-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--golden);
    margin-bottom: 15px;
}

.logo-contato h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-golden);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 20px;
    color: var(--white);
}

.info-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-blue);
    margin-bottom: 5px;
}

.info-content p {
    color: var(--light-gray);
    line-height: 1.6;
}

.info-content a {
    color: var(--golden);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--dark-golden);
}

/* Form */
.contato-form {
    background: var(--white);
    padding: 40px;
    border-radius: 25px;
    box-shadow: var(--shadow-medium);
}

.contato-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--dark-gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: var(--text-gray);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: var(--white);
    padding: 0 5px;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 0.85rem;
    color: var(--light-blue);
    font-weight: 600;
}

.submit-btn {
    width: 100%;
    background: var(--gradient-golden);
    color: var(--primary-blue);
    border: none;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--light-golden) 0%, var(--golden) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.whatsapp-contact {
    text-align: center;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    width: 210px;
    height: 80px;
    object-fit: content;
    /*border-radius: 50%;
    border: 2px solid var(--golden);*/
}

.footer-logo h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light-golden);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-golden);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-golden);
    color: var(--primary-blue);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}
.mobile {
    display: none;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .contato-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-prizes {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .prize-item {
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    .pc {
        display: none;
        
    }
    .mobile {
        display: block;
        object-fit: contain;
    }
    .hero-image {
        height: auto;
    }
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--primary-blue);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        justify-content: center;
        height: 100%;
        gap: 40px;
        padding: 0 40px;
    }
    
    .nav-link {
        font-size: 1.5rem;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .promocao-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .promo-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .premios-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .promocao-card,
    .contato-form {
        padding: 25px;
    }
    
    .premio-content {
        padding: 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .floating-star {
        font-size: 18px;
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.loading:nth-child(2) { animation-delay: 0.2s; }
.loading:nth-child(3) { animation-delay: 0.4s; }
.loading:nth-child(4) { animation-delay: 0.6s; }

/* Print Styles */
@media print {
    .header,
    .mobile-menu-btn,
    .back-to-top,
    .particles,
    .floating-elements,
    .whatsapp-btn {
        display: none !important;
    }
    
    .section {
        padding: 20px 0;
        break-inside: avoid;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}