@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

h3 {
  font-weight: 700;
}

.fa.fa-navicon {
  top: 13px;
  left: 5px;
}

body {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, #E8EFF9 0%, #F3F8FF 100%);
}

.header-bar {
    background: linear-gradient(90deg, #d1c81b 0%, #d1c81b 100%);
    padding: 14px;
    box-shadow: 0 2px 10px rgba(37,99,235,0.2);
}

.content-card {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(37,99,235,0.08);
    padding: 32px 24px; /* Aumentado o padding vertical */
    margin: 16px auto; /* Centralizado com auto */
    backdrop-filter: blur(10px);
    max-width: 600px; /* Limitando a largura mÃ¡xima */
    width: 92%; /* Width responsivo */
}

.price-tag {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 6px 16px;
    font-weight: 600;
    font-size: 15px;
    color: white;
}

.cta-button {
    background: linear-gradient(45deg, #2dcf08 0%, #2dcf08 100%);
    border-radius: 12px;
    padding: 16px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1.5px;
    border: none;
    box-shadow: 0 4px 12px rgba(37,99,235,0.3);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37,99,235,0.4);
    background: linear-gradient(45deg, #2dcf08 0%, #2dcf08 100%);
}

/* Melhorias para o botÃ£o de envio na pÃ¡gina de tarefas */
.cta-button.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    background: linear-gradient(45deg, #2dcf08 0%, #2dcf08 100%);
    box-shadow: none;
}

.cta-button.disabled:hover {
    transform: none;
    box-shadow: none;
    background: linear-gradient(45deg, #2dcf08 0%, #2dcf08 100%);
}

.cta-button.active {
    animation: pulse-success 2s infinite;
    background: linear-gradient(45deg, #2dcf08 0%, #2dcf08 100%);
}

@keyframes pulse-success {
    0% {
        box-shadow: 0 4px 12px rgba(37,99,235,0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(37,99,235,0.5);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37,99,235,0.3);
    }
}

.star-rating {
    color: #FFD700;
    font-size: 32px;
    margin: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    position: relative;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.star-rating::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 165, 0, 0.2));
    filter: blur(20px);
    border-radius: 50%;
    z-index: -1;
}

.star-rating svg {
    cursor: pointer;
    transform-origin: center;
    animation: star-pop 0.6s ease-out forwards, star-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    opacity: 0;
}

.star-rating svg:hover {
    transform: scale(1.2) rotate(8deg) !important;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.star-rating svg:nth-child(1) { animation-delay: 0.1s, 1.1s; }
.star-rating svg:nth-child(2) { animation-delay: 0.2s, 1.3s; }
.star-rating svg:nth-child(3) { animation-delay: 0.3s, 1.5s; }
.star-rating svg:nth-child(4) { animation-delay: 0.4s, 1.7s; }
.star-rating svg:nth-child(5) { animation-delay: 0.5s, 1.9s; }

@keyframes star-pop {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes star-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
    }
    50% {
        transform: scale(1.15);
        filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
    }
}

/* Removendo keyframes nÃ£o utilizados e classes relacionadas Ã s avaliaÃ§Ãµes */

.support-text {
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    color: #1E3A8A;
    font-weight: 800;
    font-size: 18px;
    margin-top: 32px;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding: 0 12px;
}

.partners-container {
    background: rgba(255,255,255,0.9);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(37,99,235,0.06);
    backdrop-filter: blur(8px);
    margin: 8px 12px;
}

.header-icon {
    color: white;
    font-size: 24px;
    position: relative;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2));
}

.header-icon-coin {
    color: #FFD700;
    position: relative;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.15));
    margin-left: -12px;
    margin-bottom: 8px;
}

.header-icon-star {
    color: #FCD34D;
    position: relative;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.header-icon-star:hover {
    transform: scale(1.2);
}

.main-image {
    max-width: 85%;
}

.mockup-image {
    max-width: 75%; /* Reduzido de 90% para melhor proporÃ§Ã£o */
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(37,99,235,0.15);
    margin: 32px auto; /* Adicionado margin para melhor espaÃ§amento */
    display: block;
    transition: transform 0.3s ease;
}

.mockup-image:hover {
    transform: translateY(-4px);
}

.description-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: #1F2937;
    margin-bottom: 28px;
    font-weight: 500;
    letter-spacing: -0.2px;
    font-family: 'Outfit', sans-serif;
}

.text-highlight {
    color: #0a0b0d;
    font-weight: 700;
}

/* Estilos especÃ­ficos para a pÃ¡gina de tarefas (v1.html) */
.task-card {
    padding: 28px 20px;
}

.task-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1E3A8A;
    margin-bottom: 12px;
}

.task-reward {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #d1c81b;
    opacity: 0.9;
}

.selection-container {
    gap: 24px;
    padding: 24px 0;
    perspective: 1000px;
}

.apertar {
    background: white;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apertar::before {
    content: 'âœ“';
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(45deg, #d1c81b, #d1c81b);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: scale(0) rotate(-90deg);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 4px rgba(37,99,235,0.2);
    z-index: 2;
}

.apertar:hover {
    transform: 
        translateY(-4px) 
        scale(1.02) 
        rotateX(5deg) 
        rotateY(5deg);
    box-shadow: 
        0 8px 16px rgba(37,99,235,0.12),
        0 2px 4px rgba(37,99,235,0.05);
    border-color: #d1c81b;
}

.apertar.selecionado::before {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.apertar.selecionado {
    transform: 
        scale(1.05) 
        translateY(-4px) 
        rotateX(5deg) 
        rotateY(3deg);
    border: 2px solid #2563EB;
    background: rgba(37,99,235,0.03);
    box-shadow: 
        0 12px 24px rgba(37,99,235,0.15),
        0 4px 8px rgba(37,99,235,0.1);
    border-width: 2.5px;
}

.apertar::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(
        135deg,
        rgba(37,99,235,0.1),
        transparent 50%,
        rgba(37,99,235,0.1)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.apertar:hover::after {
    opacity: 0.5;
}

.apertar.selecionado::after {
    opacity: 1;
    animation: glowPulse 2s infinite, shimmer 2s infinite linear;
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

@keyframes ripple {
    0% {
        transform: scale(0.3);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes shimmer {
    from {
        background-position: 200% 0;
    }
    to {
        background-position: -200% 0;
    }
}

.selection-image {
    width: 100px;
    height: 100px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 4px rgba(37,99,235,0.1));
}

.apertar:hover .selection-image {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(37,99,235,0.2));
}

.apertar.selecionado .selection-image {
    transform: scale(1.15) translateY(-3px);
    filter: drop-shadow(0 6px 12px rgba(37,99,235,0.25));
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0% {
        filter: drop-shadow(0 6px 12px rgba(37,99,235,0.25));
    }
    50% {
        filter: drop-shadow(0 8px 16px rgba(37,99,235,0.35));
    }
    100% {
        filter: drop-shadow(0 6px 12px rgba(37,99,235,0.25));
    }
}

.apertar:hover .selection-image {
    transform: scale(1.1);
}

.apertar.selecionado .selection-image {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 6px rgba(37,99,235,0.2));
}

.apertar:hover .selection-image path,
.apertar.selecionado .selection-image path {
    fill: #d1c81b;
    transition: fill 0.3s ease;
}

.apertar:hover .selection-image {
    filter: grayscale(0%);
}

.apertar.selecionado .selection-image {
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes selectPulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1.05);
    }
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(37,99,235,0.3);
    transform: scale(0);
    animation: rippleEffect 1s linear;
    pointer-events: none;
}

@keyframes rippleEffect {
    0% {
        transform: scale(0);
        opacity: 0.8;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}
