* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tarja promoção */
.promo-banner {
    background: #1e293b;
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: #f1f5f9;
    text-align: center;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.promo-text {
    color: #f1f5f9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.promo-date {
    display: block;
    color: #94a3b8;
    font-size: 18px;
    margin-top: 4px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

@media screen and (min-width: 600px) {
    .promo-banner {
        font-size: 18px;
        padding: 14px 20px;
    }
    .promo-date {
        display: inline;
        margin-top: 0;
        margin-left: 10px;
    }
}

/* Hero Section */
.hero-section {
    background: #000000;
    padding: 60px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    display: block;
    width: 120px;
    height: 4px;
    background: #475569;
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    top: 20px;
}

.logo-small {
    margin-bottom: 20px;
    animation: none !important;
    transition: none !important;
}

.logo-small .logo-img {
    width: 108px;
    height: 105px;
    object-fit: cover;
    border-radius: 8px;
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
}

.logo-medium {
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

.logo-medium .logo-main {
    width: 272px;
    height: 76px;
    object-fit: contain;
    max-width: 100%;
    filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.1));
    transition: transform 0.3s ease;
}

.logo-medium .logo-main:hover {
    transform: scale(1.05);
}

.banner-main {
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.banner-main .banner-img {
    width: 100%;
    max-width: 720px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08);
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

/* Animação do Banner */
.animated-banner {
    animation: bannerPulse 3s ease-in-out infinite;
}

@keyframes bannerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
    }
}

.animated-banner:hover {
    animation: none;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.main-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #f8fafc;
    margin: 0 0 20px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    letter-spacing: 1px;
}

.description-hero {
    margin-bottom: 28px;
}

.description-hero .highlight-blue {
    background: #2563eb;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* Bloco de preço */
.price-block {
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.badge-pago {
    display: inline-block;
    background: #334155;
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.price-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.price-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 20px 32px;
    min-width: 180px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.price-box .price-label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-box .price-value {
    font-size: 26px;
    font-weight: 800;
    color: #f1f5f9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.price-box.price-result .price-value {
    color: #fff;
    font-size: 24px;
}

.description {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin: 25px auto;
    max-width: 900px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.35s both;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: inline-block;
    background: #475569;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    margin: 20px 0 60px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
    transition: all 0.3s ease;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background: #64748b;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Seção Planos */
.plans-section {
    background: #000000;
    padding: 80px 0;
    text-align: center;
}

.plans-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #f8fafc;
    margin: 0 auto 10px;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.plans-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 50px;
}

.plans-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 28px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 32px 36px;
    min-width: 260px;
    max-width: 320px;
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.plan-card.plan-featured {
    border-color: #2563eb;
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.35);
}

.plan-card.plan-featured:hover {
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.45);
}

.plan-badge {
    display: inline-block;
    background: #475569;
    color: #f1f5f9;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-card.plan-featured .plan-badge {
    background: #2563eb;
    color: #fff;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.4);
}

.plan-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #f8fafc;
    margin: 0 0 20px;
}

.plan-card.plan-featured .plan-name {
    color: #60a5fa;
}

.plan-price {
    margin-bottom: 24px;
}

.plan-only {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
}

.plan-card.plan-featured .plan-only {
    color: #60a5fa;
}

.plan-currency {
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.plan-value {
    font-size: 42px;
    font-weight: 800;
    color: #f1f5f9;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.plan-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.plan-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    text-align: left;
    flex: 1;
}

.plan-features li {
    font-size: 16px;
    color: #fff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features .check {
    color: #94a3b8;
    font-weight: 700;
    font-size: 18px;
}

.plan-features .cross {
    color: #64748b;
    font-weight: 700;
    font-size: 18px;
}

.plan-card:not(.plan-featured) .plan-features li {
    color: rgba(255, 255, 255, 0.5);
}

.plan-button {
    display: block;
    margin-top: auto;
    background: rgba(255, 255, 255, 0.08);
    color: #f1f5f9;
    font-size: 18px;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.plan-button:hover {
    background: #475569;
    color: #fff;
    transform: scale(1.02);
}

.plan-button-featured {
    background: #2563eb;
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.plan-button-featured:hover {
    background: #3b82f6;
    color: #fff;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
}

/* FAQ Section */
.faq-section {
    background: #000000;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.faq-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #f8fafc;
    margin: 0 auto 20px;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: block;
    text-align: center;
}

.faq-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #94a3b8;
    margin: 0 auto 50px;
    line-height: 1.15;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 15px;
    line-height: 1.4;
}

.faq-answer {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

.feedbacks-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #f8fafc;
    margin: 0 auto 50px;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    display: block;
    text-align: center;
}

.feedbacks-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #475569;
    border-radius: 2px;
}

.video-container {
    max-width: 916px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: #000000;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    z-index: 2;
}

.video-placeholder .play-btn {
    width: 68px;
    height: 48px;
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

.video-placeholder:hover .play-btn {
    opacity: 1;
}

.video-placeholder.hide {
    display: none;
}

.youtube-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 1;
}

.youtube-video.show {
    display: block !important;
}

/* Gallery Section - Carrossel */
.gallery-section {
    background: #000000;
    padding: 80px 0;
    position: relative;
}

.mql5-image-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mql5-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.carousel-container {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    background: #000000;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    background-color: #000000;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item.active {
    opacity: 1;
    z-index: 1;
}

.carousel-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    border: 2px solid #000000;
    background-color: #000000;
    display: block;
}


/* Indicadores do Carrossel */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    z-index: 10;
    position: relative;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    border: 2px solid transparent;
}

.indicator.active {
    background-color: #94a3b8;
    transform: scale(1.3);
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Botões de Navegação */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: #475569;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(1.05);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.gallery-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.gallery-item {
    max-width: 260px;
    width: 100%;
}

.gallery-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #000000;
}

.gallery-video {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    border: 2px solid #000000;
    background-color: #000000;
}

/* Animações de Entrada */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 1023px) {
    .gallery-grid {
        gap: 15px;
    }
    
    .gallery-item {
        max-width: 260px;
    }
}

@media screen and (max-width: 833px) {
    .hero-section {
        padding: 20px 0 40px;
    }
    
    .price-row {
        gap: 14px;
    }
    
    .price-box {
        padding: 16px 24px;
        min-width: 140px;
    }
    
    .price-box .price-value {
        font-size: 22px;
    }
    
    .price-box.price-result .price-value {
        font-size: 20px;
    }
    
    .badge-pago {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .plans-section {
        padding: 50px 0;
    }
    
    .plans-title {
        font-size: 32px;
    }
    
    .plans-subtitle {
        font-size: 17px;
        margin-bottom: 36px;
    }
    
    .plans-grid {
        gap: 20px;
    }
    
    .plan-card {
        min-width: 100%;
        padding: 28px 24px;
    }
    
    .plan-value {
        font-size: 36px;
    }
    
    .logo-small .logo-img {
        width: 90px;
        height: 87px;
    }
    
    .logo-medium .logo-main {
        width: 240px;
        height: 67px;
    }
    
    .banner-main .banner-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }
    
    .main-title {
        font-size: 35px;
    }
    
    .description {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .cta-button {
        font-size: 19px;
        padding: 6px 20px;
        max-width: 276px;
        margin: 13px 0 1px;
    }
    
    .feedbacks-section {
        padding: 40px 0;
    }
    
    .feedbacks-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .video-container {
        max-width: 354px;
    }
    
    .video-wrapper {
        padding-bottom: 56.25%;
    }
    
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-grid {
        gap: 10px;
    }
    
    .gallery-item {
        max-width: 215px;
    }
    
    .gallery-img {
        height: 400px;
    }
    
    .gallery-video {
        height: 400px;
    }
    
    .carousel-wrapper {
        height: 500px;
    }
    
    .carousel-container {
        max-width: 90%;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .footer {
        padding: 20px 0;
    }
    
    .copyright {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }
    
    .plans-title {
        font-size: 28px;
    }
    
    .plan-name {
        font-size: 24px;
    }
    
    .plan-value {
        font-size: 34px;
    }
    
    .plan-button {
        font-size: 16px;
        padding: 14px 24px;
    }
    
    .price-row {
        flex-direction: column;
        align-items: center;
    }
    
    .price-box {
        width: 100%;
        max-width: 260px;
    }
    
    .price-box .price-value {
        font-size: 24px;
    }
    
    .description {
        font-size: 14px;
    }
    
    .feedbacks-title {
        font-size: 20px;
    }
    
    .faq-title {
        font-size: 32px;
    }
    
    .faq-subtitle {
        font-size: 22px;
    }
    
    .faq-question {
        font-size: 18px;
    }
    
    .faq-answer {
        font-size: 14px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .banner-main .banner-img {
        width: 100%;
        max-width: 100%;
    }
    
    .gallery-item {
        max-width: 100%;
    }
    
    .gallery-img {
        height: auto;
        max-height: 400px;
    }
    
    .gallery-video {
        height: auto;
        max-height: 400px;
    }
    
    .carousel-wrapper {
        height: 400px;
    }
    
    .carousel-container {
        max-width: 95%;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* Botão Telegram flutuante - Suporte */
.telegram-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #0088cc;
    color: #fff;
    padding: 14px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 136, 204, 0.5);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
}

.telegram-float:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(0, 136, 204, 0.6);
    color: #fff;
}

.telegram-icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.telegram-label {
    white-space: nowrap;
}

@media screen and (max-width: 480px) {
    .telegram-float {
        bottom: 16px;
        right: 16px;
        padding: 12px 16px;
        font-size: 14px;
    }
    .telegram-icon {
        width: 24px;
        height: 24px;
    }
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

/* Melhorias de performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video {
    image-rendering: -webkit-optimize-contrast;
}

