/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', sans-serif;
    background: #051aac;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    width: 100%;
    min-height: 90vh;
    background-color: #051aac;
    background-image: url('hero2-mobile.png');
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Tablet - Entre 768px e 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero {
        background-image: url('hero2-tablet.png');
        background-size: contain;
        background-position: center center;
        min-height: 60vh;
        height: 60vh;
    }
}

/* Desktop - Acima de 1024px */
@media (min-width: 1024px) {
    .hero {
        background-image: url('hero2-desktop.png');
    }
}

/* Prizes Section */
.prizes {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 60px;
    letter-spacing: 3px;
    color: #051aac;
}

.prizes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.prize-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.prize-card:hover {
    transform: translateY(-10px);
    border-color: #051aac;
    box-shadow: 0 10px 30px rgba(5, 26, 172, 0.2);
}

.prize-card.featured {
    background: #fff;
    border-color: #051aac;
    border-width: 3px;
}

.prize-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #f5f5f5;
    border: 3px solid #e0e0e0;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.prize-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.prize-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    font-weight: bold;
    color: #051aac;
    background: #ffd700;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.prize-title {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #051aac;
}

.prize-description {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* Participate Section */
.participate {
    padding: 80px 0;
    background: #051aac;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #7fc8f8;
    height: 100%;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7fc8f8 0%, #6a1b9a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(127, 200, 248, 0.3);
}

.step-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #7fc8f8;
}

.step-content p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

/* Título da seção participate em branco */
.participate .section-title {
    color: #ffffff;
}

/* Botão WhatsApp */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 18px;
}

/* Botão Regulamento */
.btn-regulamento {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #051aac;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid #051aac;
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

.btn-regulamento:hover {
    background: #051aac;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 26, 172, 0.3);
}

.btn-regulamento i {
    font-size: 18px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: rgba(15, 32, 64, 0.5);
}

.cta-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    border: 2px solid rgba(127, 200, 248, 0.3);
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #0ff;
}

.cta-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #6a1b9a 0%, #8b2fa8 100%);
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(106, 27, 154, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(106, 27, 154, 0.6);
    background: linear-gradient(135deg, #7a2baa 0%, #9b3fb8 100%);
}

.btn-icon {
    font-size: 24px;
}

.cta-disclaimer {
    margin-top: 30px;
    font-size: 12px;
    opacity: 0.7;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #051aac;
    padding: 60px 0 30px;
    border-top: 2px solid rgba(127, 200, 248, 0.2);
}

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

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

.footer-section.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-slogan {
    line-height: 1.4;
}

.slogan-main {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slogan-sub {
    font-size: 18px;
    opacity: 0.9;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    padding: 10px 20px;
    border-radius: 10px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-icon {
    font-size: 20px;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #7fc8f8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .prizes,
    .participate,
    .cta-section {
        padding: 60px 0;
    }

    .prizes-grid,
    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-box {
        padding: 40px 20px;
        margin: 0 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .logo {
        padding: 8px 15px;
    }

    .logo-img {
        height: 45px;
    }

    .footer-logo-img {
        height: 55px;
    }

    .btn-download {
        padding: 15px 30px;
        font-size: 16px;
    }
}

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

.prize-card,
.step,
.cta-box {
    animation: fadeInUp 0.6s ease-out;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
}

/* Responsividade do botão flutuante */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

