.max-w-7xl {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem
}

.banner-carousel {
    background-color: #1f2937;
    border-radius: .5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
    padding-bottom: 30px;
    position: relative;
    transition: box-shadow .4s ease;
    width: 100%
}

.banner-carousel:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, .3)
}

.el-carousel__item {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    transform-origin: center;
    transition: opacity .8s ease, transform .8s ease, filter .8s ease;
    width: 100%
}

.el-carousel__item.active {
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    display: block !important;
    filter: brightness(1);
    left: 0;
    opacity: 1;
    position: relative;
    transform: scale(1);
    z-index: 0
}

.el-carousel__item:not(.active) {
    display: block !important;
    filter: brightness(.8);
    opacity: 0;
    position: absolute;
    transform: scale(1.05);
    z-index: 1
}

.el-carousel__container {
    background-color: #1f2937;
    min-height: auto;
    overflow: hidden;
    padding-bottom: 40px;
    position: relative;
    width: 100%
}

.el-carousel__indicators {
    transition: opacity .3s ease
}

.el-carousel__indicator .el-carousel__button {
    transition: background-color .3s ease, transform .3s ease
}

.el-carousel__indicator.is-active .el-carousel__button {
    box-shadow: 0 0 8px hsla(0, 0%, 100%, .5);
    transform: scale(1.3)
}

.el-carousel__item.banner-item {
    display: block;
    margin-bottom: 0
}

.el-carousel__item .banner-content {
    display: block;
    width: 100%
}

.el-carousel__item .banner-image {
    display: block;
    height: auto;
    max-width: 100%;
    object-fit: cover !important;
    transition: transform .8s ease, filter .8s ease;
    width: 100%
}

.el-carousel__item.active .banner-image {
    filter: brightness(1) contrast(1);
    transform: scale(1)
}

.el-carousel__item:not(.active) .banner-image {
    filter: brightness(.8) blur(2px);
    transform: scale(1.05)
}

.el-carousel__arrow {
    align-items: center;
    background-color: rgba(0, 0, 0, .5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    opacity: .7;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(.95);
    transition: opacity .3s ease, transform .3s ease, background-color .3s ease;
    width: 40px;
    z-index: 20
}

.el-carousel__arrow:hover {
    background-color: rgba(0, 0, 0, .7);
    opacity: 1;
    transform: translateY(-50%) scale(1)
}

.el-carousel__arrow--left {
    left: 10px
}

.el-carousel__arrow--right {
    right: 10px
}

.el-carousel__arrow svg {
    height: 20px;
    width: 20px;
    fill: #fff
}

.el-carousel__indicators {
    bottom: 5px;
    display: flex;
    left: 50%;
    list-style: none;
    margin: 0;
    padding: 3px 0;
    position: absolute;
    transform: translateX(-50%);
    z-index: 20
}

.el-carousel__indicator {
    margin: 0 4px
}

.el-carousel__button {
    background-color: hsla(0, 0%, 100%, .5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    height: 10px;
    transition: background-color .3s, transform .3s;
    width: 10px
}

.el-carousel__indicator.is-active .el-carousel__button {
    background-color: #fff;
    transform: scale(1.2)
}

.banner-content a {
    color: #fff;
    display: block;
    height: 100%;
    text-decoration: none;
    width: 100%
}

.banner-image {
    aspect-ratio: auto;
    margin: 0 auto;
    object-fit: cover;
    object-position: center
}

.banner-section {
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 100%
}

@media (min-width:1200px) {
    .banner-carousel,
    .banner-image {
        height: auto;
        max-width: 1200px;
        width: 100%
    }
}

@media (min-width:768px) and (max-width:1199px) {
    .banner-carousel,
    .banner-image,
    .banner-item,
    .el-carousel__container {
        height: auto;
        width: 100%
    }
}

@media (max-width:767px) {
    .banner-carousel,
    .banner-item,
    .el-carousel__container {
        height: auto;
        width: 100%
    }
    .banner-content {
        background-position: 50%;
        background-size: contain
    }
    .banner-image {
        height: auto;
        width: 100%
    }
    .el-carousel__arrow {
        height: 36px;
        width: 36px
    }
    .el-carousel__arrow svg {
        height: 16px;
        width: 16px
    }
    .el-carousel__button {
        height: 2px;
        width: 20px
    }
    .el-carousel__indicator.is-active .el-carousel__button {
        width: 28px
    }
}

.full-width-text {
    font-size: clamp(20px, 5vw, 80px);
    font-weight: 700;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase
}

@media (max-width:600px) {
    .full-width-text {
        font-size: 5vw !important
    }
}

.card {
    background-color: #1f2937;
    border-radius: .5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .2);
    transition: all .3s ease
}

.card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, .3);
    transform: translateY(-4px)
}

.animate-float {
    animation: float 3s ease-in-out infinite
}

@keyframes float {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-15px)
    }
    to {
        transform: translateY(0)
    }
}

.btn-primary {
    background-color: #14b8a6;
    border-radius: .375rem;
    font-weight: 600;
    text-align: center;
    transition: background-color .2s ease
}

.btn-primary:hover {
    background-color: #0d9488
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #14b8a6;
    border-radius: .375rem;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 600;
    padding: .75rem 1.5rem;
    text-align: center;
    transition: all .2s ease
}

.btn-outline:hover {
    background-color: rgba(20, 184, 166, .1)
}

.text-primary-500 {
    color: #14b8a6
}

.text-primary-600 {
    color: #0d9488
}

.text-gray-300 {
    color: #d1d5db
}

.text-gray-400 {
    color: #9ca3af
}

.border-primary-500 {
    border-color: #14b8a6
}

.bg-primary-500 {
    background-color: #14b8a6
}

.bg-primary-600 {
    background-color: #0d9488
}

.bg-primary-700 {
    background-color: #0f766e
}

.bg-gray-800 {
    background-color: #1f2937
}

.mb-12 {
    margin-bottom: 3rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-2 {
    margin-bottom: .5rem
}

.space-x-4 {
    margin-left: -1rem
}

.space-x-4>* {
    margin-left: 1rem
}

.space-y-3>*+* {
    margin-top: .75rem
}

@media (min-width:768px) {
    .md\:flex-row {
        flex-direction: row
    }
    .md\:w-1\/2 {
        width: 50%
    }
    .md\:w-1\/3 {
        width: 33.333333%
    }
    .md\:w-2\/3 {
        width: 66.666667%
    }
    .md\:mb-0 {
        margin-bottom: 0
    }
    .md\:pr-8 {
        padding-right: 2rem
    }
    .md\:p-8 {
        padding: 2rem
    }
    .md\:p-6 {
        padding: 1.5rem
    }
    .md\:p-4 {
        padding: 1rem
    }
    .md\:ml-4 {
        margin-left: 1rem
    }
    .md\:text-base {
        font-size: 1rem
    }
    .md\:text-sm {
        font-size: .875rem
    }
    .md\:text-xl {
        font-size: 1.25rem
    }
    .md\:text-3xl {
        font-size: 1.875rem
    }
    .md\:h-12 {
        height: 3rem
    }
    .md\:w-12 {
        width: 3rem
    }
    .md\:gap-6 {
        gap: 1.5rem
    }
    .md\:mx-0 {
        margin-left: 0;
        margin-right: 0
    }
    .md\:pt-6 {
        padding-top: 1.5rem
    }
}

.grid-cols-1 {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, minmax(0, 1fr))
}

@media (min-width:640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }
}

@media (min-width:1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr))
    }
    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr))
    }
}

.video-section {
    background-color: #1f2937;
    border-radius: .5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .2);
    overflow: hidden;
    padding: 2rem 0;
    width: 100%
}

.video-section h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin: 0 auto;
    max-width: 1200px
}

.video-card {
    background-color: #1f2937;
    border-radius: .5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .2);
    flex: 0 0 auto;
    overflow: hidden;
    transition: transform .3s ease;
    width: 280px
}

.video-card:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, .3);
    transform: translateY(-4px)
}

.aspect-video {
    background: #000;
    border-radius: .5rem;
    height: 498px;
    overflow: hidden;
    position: relative;
    width: 280px
}

.aspect-video iframe {
    border: none;
    border-radius: .5rem;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%
}

.video-title {
    border-top: 1px solid #333;
    color: #f9f9f9;
    font-size: 1rem;
    font-weight: 600;
    overflow: hidden;
    padding: .75rem .75rem .25rem;
    text-overflow: ellipsis;
    white-space: nowrap
}

.video-meta {
    color: #aaa;
    display: flex;
    font-size: .8rem;
    justify-content: space-between;
    padding: 0 .75rem .75rem
}

.video-date,
.video-views {
    align-items: center;
    display: flex
}

.video-views:before {
    content: "\f06e"
}

.video-date:before,
.video-views:before {
    font-family: FontAwesome;
    margin-right: .25rem
}

.video-date:before {
    content: "\f073"
}

.animated-header {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    overflow: hidden;
    padding: 2rem 0;
    position: relative
}

.animated-header:before {
    animation: pulse 15s infinite;
    background: radial-gradient(ellipse at center, rgba(250, 184, 0, .1) 0, rgba(250, 184, 0, 0) 70%);
    content: "";
    height: 200%;
    left: -50%;
    position: absolute;
    top: -50%;
    width: 200%;
    z-index: 1
}

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

.glowing-text {
    animation: glow 2s ease-in-out infinite alternate;
    text-shadow: 0 0 10px rgba(250, 184, 0, .7), 0 0 20px rgba(250, 184, 0, .5)
}

@keyframes pulse {
    0% {
        opacity: .5;
        transform: scale(1)
    }
    50% {
        opacity: .7;
        transform: scale(1.05)
    }
    to {
        opacity: .5;
        transform: scale(1)
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(250, 184, 0, .5), 0 0 10px rgba(250, 184, 0, .3)
    }
    to {
        text-shadow: 0 0 10px rgba(250, 184, 0, .7), 0 0 20px rgba(250, 184, 0, .5), 0 0 30px rgba(250, 184, 0, .3)
    }
}

.cta-section {
    background: linear-gradient(135deg, #121212, #202020);
    border-bottom: 1px solid hsla(0, 0%, 100%, .05);
    border-top: 1px solid hsla(0, 0%, 100%, .05);
    overflow: hidden;
    position: relative
}

.cta-section:before {
    background: url(/assets/images/pattern.png) repeat;
    bottom: 0;
    content: "";
    left: 0;
    opacity: .05;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1
}

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

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center
}

.btn-primary {
    background: linear-gradient(135deg, #e50914, #f9b233);
    border: none;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(249, 178, 51, .3);
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    letter-spacing: .5px;
    padding: .75rem 1.5rem;
    text-transform: uppercase;
    transition: all .3s ease
}

.btn-primary:hover {
    box-shadow: 0 6px 15px rgba(249, 178, 51, .4);
    transform: translateY(-2px)
}

.btn-secondary {
    background: transparent;
    border: 2px solid #f9b233;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    letter-spacing: .5px;
    padding: .75rem 1.5rem;
    text-transform: uppercase;
    transition: all .3s ease
}

.btn-secondary:hover {
    background-color: rgba(249, 178, 51, .1);
    transform: translateY(-2px)
}

@media (max-width:640px) {
    .cta-buttons {
        align-items: center;
        flex-direction: column
    }
}

.social-share-section {
    background-color: #121212;
    border-top: 1px solid hsla(0, 0%, 100%, .05);
    padding: 2rem 0
}

.social-buttons {
    flex-wrap: wrap;
    gap: 1rem
}

.social-btn,
.social-buttons {
    display: flex;
    justify-content: center
}

.social-btn {
    align-items: center;
    border: none;
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    min-width: 140px;
    padding: .75rem 1.25rem;
    transition: all .3s ease
}

.social-btn i {
    font-size: 1.25rem;
    margin-right: .5rem
}

.social-btn.facebook {
    background-color: #3b5998
}

.social-btn.twitter {
    background-color: #1da1f2
}

.social-btn.whatsapp {
    background-color: #25d366
}

.social-btn:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .3);
    transform: translateY(-2px)
}

@media (max-width:640px) {
    .social-buttons {
        align-items: center;
        flex-direction: column
    }
    .social-btn {
        max-width: 280px;
        width: 100%
    }
}

.banner-loading {
    align-items: center;
    background-color: #1f2937;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 5
}

.banner-loading:after {
    animation: banner-spin 1s linear infinite;
    border: 3px solid #d1d5db;
    border-radius: 50%;
    border-top-color: #14b8a6;
    content: "";
    height: 2rem;
    width: 2rem
}

@keyframes banner-spin {
    to {
        transform: rotate(1turn)
    }
}

.banner-link {
    color: #fff;
    display: block;
    height: 100%;
    position: relative;
    text-decoration: none;
    width: 100%
}

.banner-overlay {
    align-items: center;
    background-color: rgba(0, 0, 0, .4);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .3s ease
}

.banner-link:hover .banner-overlay {
    opacity: 1
}

.banner-cta-button {
    background-color: #0d9488;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 700;
    padding: .75rem 1.5rem;
    transition: background-color .2s ease, transform .2s ease
}

.banner-cta-button:hover {
    background-color: #0f766e;
    transform: scale(1.05)
}

.banner-section .banner-carousel {
    border-radius: .5rem;
    height: auto;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden
}

.banner-section .banner-item {
    align-items: center;
    display: flex;
    height: auto;
    justify-content: center
}

.banner-section .banner-content {
    height: auto;
    position: relative;
    width: 100%
}

.banner-section .banner-image {
    display: block;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center;
    width: 100%
}

@media (min-width:769px) {
    .banner-section .el-carousel__container {
        height: auto;
        max-width: 1200px;
        width: 100%
    }
}

.banner-image-fixed {
    height: auto;
    max-width: 100%;
    object-fit: contain !important;
    width: 100%
}

.banner-image {
    display: block;
    max-width: 100%;
    width: 100%
}

.banner-fixed {
    background-color: #1f2937;
    border-radius: .5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, .1);
    height: auto;
    margin: 0 auto;
    max-width: 1200px;
    overflow: hidden;
    position: relative;
    width: 100%
}

.banner-fixed .banner-link {
    display: block;
    position: relative
}

.banner-fixed:hover {
    transform: translateY(-2px);
    transition: transform .3s ease
}

@media (min-width:768px) {
    .el-carousel__container {
        min-height: 300px
    }
    .el-carousel__indicators {
        bottom: 20px
    }
    .el-carousel__arrow {
        height: 48px;
        width: 48px
    }
    .el-carousel__arrow svg {
        height: 24px;
        width: 24px
    }
}

@media (max-width:767px) {
    .el-carousel__indicators {
        bottom: 10px
    }
    .el-carousel__arrow {
        height: 36px;
        width: 36px
    }
    .el-carousel__arrow svg {
        height: 18px;
        width: 18px
    }
}

@media (min-width:576px) {
    .banner-carousel,
    .el-carousel__container {
        min-height: auto
    }
}

@media (min-width:768px) {
    .banner-carousel,
    .el-carousel__container {
        min-height: auto
    }
}

@media (min-width:992px) {
    .banner-carousel,
    .el-carousel__container {
        min-height: auto
    }
}

@media (min-width:1200px) {
    .banner-carousel,
    .el-carousel__container {
        min-height: auto
    }
    .video-grid {
        grid-template-columns: repeat(4, 280px);
        justify-content: center
    }
}

@media (min-width:900px) and (max-width:1199px) {
    .video-grid {
        grid-template-columns: repeat(3, 280px);
        justify-content: center
    }
}

@media (min-width:600px) and (max-width:899px) {
    .video-grid {
        grid-template-columns: repeat(2, 280px);
        justify-content: center
    }
}

@media (max-width:599px) {
    .video-grid {
        grid-template-columns: 280px;
        justify-content: center
    }
}

.banner-content .hover\:opacity-100:hover {
    opacity: 1
}

.banner-content .transition-opacity {
    transition-duration: .3s;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1)
}

.banner-content .opacity-0 {
    opacity: 0
}

.banner-content .bg-opacity-40 {
    --tw-bg-opacity: 0.4
}

.banner-content .bg-black {
    --tw-bg-color: rgba(0, 0, 0, var(--tw-bg-opacity))
}

.banner-content .inset-0 {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0
}

.banner-content .absolute {
    position: absolute
}

.banner-content .flex {
    display: flex
}

.banner-content .items-center {
    align-items: center
}

.banner-content .justify-center {
    justify-content: center
}

.banner-carousel:after {
    background: radial-gradient(ellipse at center, transparent 80%, rgba(0, 0, 0, .2) 100%);
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity .8s ease;
    z-index: 3
}

.banner-carousel:hover:after {
    opacity: 1
}

.carousel-loading-overlay {
    align-items: center;
    background-color: #1f2937;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    transition: opacity .5s ease;
    width: 100%;
    z-index: 30
}

.carousel-loading-overlay.loaded {
    opacity: 0;
    pointer-events: none
}

.carousel-spinner {
    animation: carousel-spin 1s linear infinite;
    border: 4px solid hsla(0, 0%, 100%, .1);
    border-radius: 50%;
    border-top-color: #f9b233;
    height: 50px;
    margin-bottom: 10px;
    width: 50px
}

.carousel-loading-text {
    animation: pulse-text 1.5s ease-in-out infinite;
    color: #f9b233;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 10px;
    opacity: .8
}

@keyframes carousel-spin {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

@keyframes pulse-text {
    0%,
    to {
        opacity: .6
    }
    50% {
        opacity: 1
    }
}

.el-carousel__item.loading .banner-image {
    opacity: 0;
    transition: opacity .3s ease
}

.el-carousel__item .banner-image.loaded {
    opacity: 1
}

.slide-loading-indicator {
    animation: carousel-spin 1s linear infinite;
    border: 3px solid hsla(0, 0%, 100%, .2);
    border-radius: 50%;
    border-top-color: #f9b233;
    height: 30px;
    left: 50%;
    opacity: 1;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .3s ease;
    width: 30px;
    z-index: 4
}

.slide-loading-indicator.hidden {
    opacity: 0
}

@keyframes pulse-circle {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 171, 252, .4)
    }
    70% {
        box-shadow: 0 0 0 10px rgba(240, 171, 252, 0)
    }
    to {
        box-shadow: 0 0 0 0 rgba(240, 171, 252, 0)
    }
}

@keyframes gradient-animation {
    0% {
        background-position: 0 50%
    }
    50% {
        background-position: 100% 50%
    }
    to {
        background-position: 0 50%
    }
}

.premio-card {
    animation: gradient-animation 8s ease infinite;
    background: linear-gradient(135deg, #6b21a8, #9333ea, #7e22ce, #6b21a8);
    background-size: 300% 300%;
    border: 1px solid hsla(0, 0%, 100%, .1);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
    overflow: hidden;
    position: relative
}

.premio-card:after {
    background: linear-gradient(90deg, #f59e0b, #f97316);
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.premio-header {
    align-items: center;
    background-color: rgba(0, 0, 0, .2);
    border-bottom: 1px solid hsla(0, 0%, 100%, .1);
    display: flex;
    justify-content: space-between;
    padding: 12px 16px
}

.premio-header h2 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin: 0
}

.premio-data {
    color: #f0abfc;
    font-size: 14px;
    font-weight: 500
}

.premio-content {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 16px
}

.premio-info {
    flex: 1
}

.premio-info h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px
}

.premio-valor {
    color: #fbbf24;
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .3)
}

.premio-valor:after {
    background: linear-gradient(90deg, #f59e0b, transparent);
    border-radius: 2px;
    bottom: -3px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%
}

.premio-tempo {
    padding-left: 16px
}

.tempo-circle {
    align-items: center;
    animation: pulse-circle 2s infinite;
    background: rgba(0, 0, 0, .2);
    border: 2px solid #f0abfc;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(240, 171, 252, .3);
    display: flex;
    flex-direction: column;
    height: 64px;
    justify-content: center;
    position: relative;
    width: 64px
}

.tempo-circle:before {
    background: linear-gradient(135deg, #d946ef, #8b5cf6);
    border-radius: 50%;
    bottom: -2px;
    content: "";
    left: -2px;
    opacity: .2;
    position: absolute;
    right: -2px;
    top: -2px;
    z-index: -1
}

.tempo-dias {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    line-height: 1
}

.tempo-label {
    color: #e9d5ff;
    font-size: 12px;
    margin-top: 2px
}

.premio-button {
    background: linear-gradient(90deg, #9333ea, #7e22ce);
    border: none;
    border-top: 1px solid hsla(0, 0%, 100%, .1);
    color: #fff;
    display: block;
    font-weight: 600;
    overflow: hidden;
    padding: 12px;
    position: relative;
    text-align: center;
    transition: all .3s ease;
    width: 100%
}

.premio-button i {
    margin-left: 8px
}

.premio-button:after {
    background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, .2), transparent);
    content: "";
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transition: all .6s ease;
    width: 100%
}

.premio-button:hover:after {
    left: 100%
}

.premio-button:active {
    transform: translateY(1px)
}

@media (max-width:480px) {
    .premio-card {
        border-radius: 10px;
        margin: 0 -8px
    }
    .premio-content {
        padding: 12px
    }
    .premio-header {
        align-items: flex-start;
        flex-direction: column
    }
    .premio-data {
        font-size: 12px;
        margin-top: 4px
    }
    .premio-valor {
        font-size: 20px
    }
    .tempo-circle {
        height: 56px;
        width: 56px
    }
    .tempo-dias {
        font-size: 20px
    }
    .premio-button {
        font-size: 14px;
        padding: 10px
    }
}

@media (max-width:360px) {
    .premio-content {
        align-items: center;
        flex-direction: column;
        text-align: center
    }
    .premio-info {
        flex: none;
        margin-bottom: 12px;
        width: 100%
    }
    .premio-tempo {
        margin-bottom: 8px;
        padding-left: 0
    }
    .premio-data {
        text-align: left;
        width: 100%
    }
    .tempo-circle {
        margin: 0 auto
    }
    .premio-button {
        font-size: 13px
    }
}