/* Global Styles */
:root {
    --primary-color: #433156; /* Roxo metalizado */
    --secondary-color: #1F1D2B; /* Fundo escuro */
    --accent-color: #FF6B35; /* Laranja vibrante */
    --dark-bg: #1F1D2B;
    --light-text: #ffffff;
    --dark-text: #E0E0E0;
    --price-color: #FF6B35;
    --old-price-color: #999999;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--dark-bg);
    color: var(--light-text);
    position: relative;
    overflow-x: hidden;
}

.background-lights {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(67, 49, 86, 0.3) 0%, transparent 20%),
                radial-gradient(circle at 80% 70%, rgba(67, 49, 86, 0.3) 0%, transparent 20%),
                radial-gradient(circle at 30% 80%, rgba(138, 43, 226, 0.2) 0%, transparent 20%);
    z-index: -1;
}

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

section {
    padding: 60px 0;
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 20%, rgba(0,0,0,0) 80%, rgba(0,0,0,0.7) 100%);
    pointer-events: none;
    z-index: -1;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: #ccc;
}

.btn-primary, .btn-secondary, .btn-buy, .featured-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(67, 49, 86, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Header - Versão Ultra Premium Plus */
header {
    background: #110E1B;
    padding: 40px 0 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(115, 73, 229, 0.4);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.7),
        inset 0 -20px 60px rgba(115, 73, 229, 0.15);
    z-index: 1;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(115, 73, 229, 0.25) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(115, 73, 229, 0.25) 0%, transparent 25%),
        radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%);
    z-index: -1;
    animation: pulseLights 15s infinite alternate;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, transparent, rgba(115, 73, 229, 0.2));
    z-index: -1;
}

@keyframes pulseLights {
    0% {
        opacity: 0.7;
        background-position: 20% 30%, 80% 70%, 50% 20%;
    }
    50% {
        opacity: 1;
        background-position: 25% 35%, 75% 65%, 45% 25%;
    }
    100% {
        opacity: 0.7;
        background-position: 20% 30%, 80% 70%, 50% 20%;
    }
}

/* Logo Container */
.logo-container {
    position: relative;
    display: inline-block;
    margin: 0 auto;
    filter: drop-shadow(0 0 25px rgba(115, 73, 229, 0.8));
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.4);
    z-index: 3;
}

.logo-container:hover {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 0 35px rgba(115, 73, 229, 1));
}

.logo img {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(115, 73, 229, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% { 
        opacity: 0.6; 
        transform: translate(-50%, -50%) scale(0.9); 
    }
    100% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1.2); 
    }
}

/* Header Content */
.header-content {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.header-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    letter-spacing: -1.5px;
    line-height: 1.3;
    font-weight: 900;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Primeira linha com gradiente */
.header-content h1 .first-line {
    display: block;
    background: linear-gradient(to right, #ac7fd3, #2E53DC);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.9);
    line-height: 1;
}

/* Segunda linha personalizada */
.header-content h1 .second-line {
    display: block;
    color: #FFD700; /* Cor dourada - altere para a cor desejada */
    text-shadow: 
        0 5px 25px rgba(0, 0, 0, 0.9),
        0 0 20px rgba(255, 215, 0, 0.8);
    line-height: 1;
}

.header-content p {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    line-height: 1.6;
}

.header-content p::before,
.header-content p::after {
    content: '✦';
    position: absolute;
    color: #B9A1FF;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.5s ease;
    text-shadow: 0 0 15px rgba(115, 73, 229, 0.8);
}

.header-content p::before {
    left: -40px;
}

.header-content p::after {
    right: -40px;
}

.header-content:hover p::before,
.header-content:hover p::after {
    opacity: 1;
}

/* Countdown Container */
.countdown-container {
    background: rgba(25, 18, 43, 0.7);
    backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 50px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.7),
        inset 0 0 0 2px rgba(115, 73, 229, 0.3);
    border: 1px solid rgba(115, 73, 229, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.countdown-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        transparent 45%,
        rgba(115, 73, 229, 0.15) 50%,
        transparent 55%
    );
    animation: shine 6s infinite;
    z-index: -1;
}

@keyframes shine {
    0% { transform: translate(-50%, -50%) rotate(45deg); }
    100% { transform: translate(50%, 50%) rotate(45deg); }
}

.countdown p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #B9A1FF;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(115, 73, 229, 0.5);
}

#countdown-timer {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    display: flex;
    justify-content: center;
    gap: 25px;
    text-shadow: 0 0 20px rgba(115, 73, 229, 0.8);
}

#countdown-timer span {
    background: rgba(16, 13, 25, 0.6);
    padding: 15px 25px;
    border-radius: 15px;
    min-width: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(115, 73, 229, 0.3);
    box-shadow: 
        inset 0 0 15px rgba(115, 73, 229, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.5);
}

#countdown-timer span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.15) 100%
    );
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

#countdown-timer span:hover::before {
    transform: translateX(100%);
}

#remaining-copies {
    font-size: 1.4rem;
    color: #B9A1FF;
    font-weight: 700;
    margin-top: 30px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 15px rgba(115, 73, 229, 0.5);
}

#remaining-copies::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #7349E5, #8E6AFF);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s ease;
    box-shadow: 0 0 15px rgba(115, 73, 229, 0.5);
}

#remaining-copies:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsividade */
@media (max-width: 1200px) {
    header {
        padding: 30px 0 60px;
    }
    
    .logo img {
        max-width: 100px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 0 40px;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .header-content p {
        font-size: 1.2rem;
    }
    
    #countdown-timer {
        font-size: 2rem;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    #countdown-timer span {
        min-width: 80px;
        padding: 10px 15px;
        font-size: 1.8rem;
    }
    
    .countdown-container {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .header-content p {
        font-size: 1rem;
    }
    
    #countdown-timer {
        gap: 10px;
    }
    
    #countdown-timer span {
        min-width: 70px;
        font-size: 1.5rem;
        padding: 8px 12px;
    }
    
    .countdown p {
        font-size: 1.1rem;
    }
    
    #remaining-copies {
        font-size: 1.2rem;
    }
}
/* Hero Section - Versão Ultra Premium Plus */
.hero {
    position: relative;
    background-color: #100D19;
    padding: 140px 0 180px;
    overflow: hidden;
    border-bottom: 1px solid rgba(115, 73, 229, 0.3);
    box-shadow: inset 0 -40px 80px rgba(115, 73, 229, 0.1);
    z-index: 1;
}

/* Efeitos de luz de fundo dinâmicos */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(115, 73, 229, 0.25) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(115, 73, 229, 0.25) 0%, transparent 25%),
        radial-gradient(circle at 50% 20%, rgba(115, 73, 229, 0.15) 0%, transparent 20%);
    z-index: -1;
    animation: pulseLights 15s infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(115, 73, 229, 0.15));
    z-index: -1;
}

/* Container principal */
.hero-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Seção de imagem */
.hero-image {
    flex: 1;
    min-width: 400px;
    position: relative;
    perspective: 1200px;
    transform-style: preserve-3d;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.4);
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.8),
        0 0 40px rgba(115, 73, 229, 0.5);
    border: 2px solid rgba(115, 73, 229, 0.6);
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.4);
    filter: 
        drop-shadow(0 0 20px rgba(115, 73, 229, 0.7))
        contrast(1.05)
        brightness(1.05);
    position: relative;
    z-index: 2;
}

.hero-image:hover .hero-image-container {
    transform: translateZ(60px);
}

.hero-image:hover img {
    transform: scale(1.06) rotateY(10deg) rotateX(5deg);
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(115, 73, 229, 0.7);
    filter: 
        drop-shadow(0 0 25px rgba(115, 73, 229, 0.9))
        contrast(1.1)
        brightness(1.1);
}

/* Reflexo da imagem */
.hero-image-reflection {
    position: absolute;
    bottom: -60px;
    left: 5%;
    width: 90%;
    height: 80px;
    background: linear-gradient(to bottom, rgba(115, 73, 229, 0.4), transparent);
    border-radius: 50%;
    filter: blur(20px);
    transform: rotateX(75deg) scale(0.9);
    transform-origin: center top;
    opacity: 0.8;
    transition: all 0.8s ease;
    z-index: 1;
}

.hero-image:hover .hero-image-reflection {
    opacity: 1;
    height: 100px;
    bottom: -80px;
    filter: blur(25px);
    background: linear-gradient(to bottom, rgba(115, 73, 229, 0.5), transparent);
}

/* Selo de garantia */
.guarantee-badge {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    background: linear-gradient(135deg, #7349E5, #8E6AFF);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 
        0 20px 40px rgba(115, 73, 229, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 4;
    animation: 
        pulse 3s infinite,
        float 6s ease-in-out infinite;
    border: 2px solid white;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.guarantee-badge::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50px;
    border: 2px dashed rgba(255, 255, 255, 0.4);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

/* Texto do hero */
.hero-text {
    flex: 1;
    min-width: 400px;
    position: relative;
}

.hero-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 35px;
    color: white;
    line-height: 1.2;
    font-weight: 900;
    text-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(115, 73, 229, 0.6);
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
}

.hero-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 150px;
    height: 5px;
    background: linear-gradient(to right, #7349E5, #8E6AFF);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(115, 73, 229, 0.8);
    transform-origin: left;
    animation: lineGrow 1.5s ease-out forwards;
}

.highlight-text {
    background: linear-gradient(90deg, #8E6AFF, #B9A1FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding: 0 5px;
    text-shadow: 0 0 25px rgba(115, 73, 229, 0.7);
}

.highlight-text::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    height: calc(100% + 10px);
    background: rgba(115, 73, 229, 0.2);
    border-radius: 5px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s ease;
}

.hero-text:hover .highlight-text::before {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-left: 25px;
    max-width: 600px;
    line-height: 1.6;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #7349E5;
    border-radius: 50%;
    box-shadow: 0 0 15px #7349E5;
    animation: pulse 2s infinite;
}

/* Lista de features */
.features-list {
    list-style: none;
    margin-bottom: 50px;
}

.features-list li {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(25, 18, 43, 0.6);
    padding: 25px;
    border-radius: 15px;
    border-left: 5px solid #7349E5;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateX(-20px);
    opacity: 0;
    animation: slideIn 0.8s forwards;
}

.features-list li:nth-child(1) { animation-delay: 0.3s; }
.features-list li:nth-child(2) { animation-delay: 0.5s; }
.features-list li:nth-child(3) { animation-delay: 0.7s; }

.features-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(115, 73, 229, 0.3), transparent);
    transition: all 0.8s ease;
}

.features-list li:hover {
    background: rgba(35, 25, 60, 0.8);
    transform: translateX(15px) translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-left-color: #8E6AFF;
}

.features-list li:hover::before {
    left: 100%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7349E5, #8E6AFF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 
        0 10px 30px rgba(115, 73, 229, 0.6),
        inset 0 5px 15px rgba(255, 255, 255, 0.3),
        inset 0 -5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 50%);
}

.features-list li:hover .feature-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 
        0 15px 40px rgba(115, 73, 229, 0.8),
        inset 0 5px 15px rgba(255, 255, 255, 0.4),
        inset 0 -5px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #8E6AFF, #B9A1FF);
}

.feature-text {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #fff;
    font-weight: 500;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    flex: 1;
}

.feature-text strong {
    color: #B9A1FF;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(115, 73, 229, 0.7);
}

/* Botões CTA */
.cta-buttons {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #7349E5, #8E6AFF);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 
        0 15px 40px rgba(115, 73, 229, 0.6),
        0 0 0 2px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 1;
    min-width: 220px;
    text-align: center;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(115, 73, 229, 0.8),
        0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 20px 40px;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    z-index: 1;
    min-width: 220px;
    text-align: center;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    z-index: -1;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Animações */
@keyframes pulseLights {
    0% {
        opacity: 0.7;
        background-position: 20% 30%, 80% 70%, 50% 20%;
    }
    50% {
        opacity: 1;
        background-position: 25% 35%, 75% 65%, 45% 25%;
    }
    100% {
        opacity: 0.7;
        background-position: 20% 30%, 80% 70%, 50% 20%;
    }
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) rotate(-5deg) scale(1);
        box-shadow: 0 20px 40px rgba(115, 73, 229, 0.6);
    }
    50% {
        transform: translateX(-50%) rotate(-5deg) scale(1.1);
        box-shadow: 0 25px 50px rgba(115, 73, 229, 0.8);
    }
    100% {
        transform: translateX(-50%) rotate(-5deg) scale(1);
        box-shadow: 0 20px 40px rgba(115, 73, 229, 0.6);
    }
}

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

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes lineGrow {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes slideIn {
    0% {
        transform: translateX(-20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Efeitos de luz dinâmicos adicionais */
.light-spot {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(115, 73, 229, 0.25) 0%, transparent 70%);
    filter: blur(40px);
    z-index: 0;
    animation: floatLight 25s infinite linear;
    opacity: 0.8;
}

.light-spot:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 30s;
}

.light-spot:nth-child(2) {
    top: 70%;
    right: 10%;
    animation-delay: -10s;
    width: 500px;
    height: 500px;
    animation-duration: 35s;
}

.light-spot:nth-child(3) {
    bottom: 5%;
    left: 25%;
    animation-delay: -15s;
    width: 300px;
    height: 300px;
    animation-duration: 25s;
}

@keyframes floatLight {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(5deg);
    }
    50% {
        transform: translate(0, 100px) rotate(0deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(-5deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

/* Responsividade */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 100px 0 140px;
    }
    
    .hero-content-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .hero-image, .hero-text {
        min-width: 100%;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 120px;
    }
    
    .hero-content-wrapper {
        padding: 0 25px;
    }
    
    .cta-buttons {
        gap: 15px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 18px 30px;
    }
    
    .guarantee-badge {
        font-size: 1rem;
        padding: 12px 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 100px;
    }
    
    .hero-text h2 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding-left: 20px;
    }
    
    .features-list li {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-bottom: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
    }
}
/* Package Options - Versão Ultra Premium */
.package-options {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    margin: 80px 0;
    flex-wrap: wrap;
    position: relative;
    padding: 60px 0;
    background: radial-gradient(circle at center, rgba(115, 73, 229, 0.05) 0%, transparent 50%);
}

.package-options::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #7349E5, transparent);
    box-shadow: 0 0 20px rgba(115, 73, 229, 0.5);
}

.package-options::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #7349E5, transparent);
    box-shadow: 0 0 20px rgba(115, 73, 229, 0.5);
}

.package-option {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: rgba(16, 13, 25, 0.8);
    border: 1px solid rgba(115, 73, 229, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(115, 73, 229, 0.2);
    z-index: 1;
}

.package-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(115, 73, 229, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: all 0.6s ease;
}

.package-option:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.8),
        0 0 0 2px rgba(115, 73, 229, 0.4);
    border-color: rgba(115, 73, 229, 0.6);
}

.package-option:hover::before {
    opacity: 1;
}

.package-option.popular {
    border: 2px solid rgba(115, 73, 229, 0.6);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 0 0 3px rgba(115, 73, 229, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #7349E5, #8E6AFF);
    color: white;
    padding: 8px 25px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 10px 25px rgba(115, 73, 229, 0.6);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.package-option h3 {
    color: #B9A1FF;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 25px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.package-option h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #7349E5;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(115, 73, 229, 0.8);
}

.package-price {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin: 30px 0;
    position: relative;
    text-shadow: 0 0 15px rgba(115, 73, 229, 0.5);
}

.package-price::before {
  
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    color: #B9A1FF;
    font-weight: normal;
    letter-spacing: 2px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 40px 0;
    text-align: left;
}

.package-features li {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #E0D6FF;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
}

.package-features li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237349E5'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") no-repeat center;
    filter: drop-shadow(0 0 8px rgba(115, 73, 229, 0.8));
}

.or-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #B9A1FF;
    font-weight: 800;
    font-size: 1.5rem;
    position: relative;
    min-width: 60px;
    text-shadow: 0 0 10px rgba(115, 73, 229, 0.5);
}

.or-divider::before,
.or-divider::after {
    content: "";
    display: block;
    width: 4px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, #7349E5, transparent);
    margin: 15px 0;
    box-shadow: 0 0 15px rgba(115, 73, 229, 0.7);
}

.btn-package {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #7349E5, #8E6AFF);
    color: white;
    padding: 20px 35px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    margin-top: 30px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 
        0 15px 40px rgba(115, 73, 229, 0.6),
        0 0 0 2px rgba(255, 255, 255, 0.1);
}

.btn-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-package:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 50px rgba(115, 73, 229, 0.8),
        0 0 0 3px rgba(255, 255, 255, 0.2);
}

.btn-package:hover::before {
    left: 100%;
}

.package-savings {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: #B9A1FF;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    margin-top: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(115, 73, 229, 0.4);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #B9A1FF;
    font-size: 1rem;
    margin-top: 30px;
    text-shadow: 0 0 10px rgba(115, 73, 229, 0.3);
}

/* Efeitos de brilho pulsante */
@keyframes pulse-glow {
    0% { box-shadow: 0 0 30px rgba(115, 73, 229, 0.3); }
    50% { box-shadow: 0 0 60px rgba(115, 73, 229, 0.6); }
    100% { box-shadow: 0 0 30px rgba(115, 73, 229, 0.3); }
}

.package-option {
    animation: pulse-glow 5s infinite;
}

/* Responsividade */
@media (max-width: 1200px) {
    .package-options {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .package-options {
        flex-direction: column;
        align-items: center;
    }
    
    .or-divider {
        flex-direction: row;
        min-width: 100%;
        margin: 30px 0;
    }
    
    .or-divider::before,
    .or-divider::after {
        width: 60px;
        height: 4px;
        background: linear-gradient(to right, transparent, #7349E5, transparent);
    }
}

@media (max-width: 768px) {
    .package-option {
        min-width: 100%;
        max-width: 450px;
    }
    
    .btn-package {
        padding: 18px 30px;
    }
}
/* Instruments Section - Versão Premium */
.instruments-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    background: radial-gradient(ellipse at center, #1a1526 0%, #0d0a15 100%);
}

.instruments-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(103, 58, 183, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(156, 39, 176, 0.15) 0%, transparent 25%);
    animation: pulse 15s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.7; }
}

.instruments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.instrument-card {
    background: rgba(30, 25, 45, 0.85);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(103, 58, 183, 0.3);
    border: none;
    position: relative;
    backdrop-filter: blur(5px);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.instrument-card:hover {
    transform: translateY(-10px) scale(1.03) rotateX(5deg);
    box-shadow: 
        0 25px 40px rgba(0, 0, 0, 0.8),
        0 0 25px rgba(156, 39, 176, 0.5),
        0 0 0 2px var(--primary-color);
    z-index: 10;
}

.instrument-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.3) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instrument-card:hover::before {
    opacity: 1;
}

.instrument-card::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 5%;
    width: 90%;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(156, 39, 176, 0.4) 0%, transparent 80%);
    filter: blur(10px);
    transition: all 0.4s ease;
    opacity: 0;
}

.instrument-card:hover::after {
    opacity: 1;
    bottom: -15px;
}

.instrument-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, #222 0%, #2a1a3a 100%);
    position: relative;
}

.instrument-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(103, 58, 183, 0.2) 0%, transparent 50%);
}

.instrument-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.instrument-card:hover .instrument-image img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(1.1) contrast(1.05);
}

.instrument-card h3 {
    padding: 18px 15px 8px;
    font-size: 1.3rem;
    text-align: center;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    position: relative;
    background: linear-gradient(to right, transparent, rgba(103, 58, 183, 0.2), transparent);
}

.instrument-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.instrument-card:hover h3::after {
    transform: scaleX(1);
}

.instrument-description {
    padding: 0 15px 15px;
    text-align: center;
    color: #ddd;
    min-height: 50px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    position: relative;
}

.old-price {
    text-decoration: line-through;
    color: #a0a0a0;
    font-size: 0.95rem;
    position: relative;
}

.old-price::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    width: 110%;
    height: 1px;
    background: #ff3d3d;
    transform: rotate(-10deg);
}

.new-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: #ffeb3b;
    text-shadow: 0 2px 5px rgba(255, 235, 59, 0.3);
    position: relative;
}

.new-price::after {
    content: 'PROMOÇÃO';
    position: absolute;
    top: -15px;
    right: -25px;
    background: #ff4081;
    color: white;
    font-size: 0.6rem;
    padding: 2px 5px;
    border-radius: 3px;
    transform: rotate(15deg);
    animation: pulsePrice 2s infinite;
}

@keyframes pulsePrice {
    0% { transform: rotate(15deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
    100% { transform: rotate(15deg) scale(1); }
}

.btn-buy {
    display: block;
    width: calc(100% - 30px);
    margin: 0 auto 15px;
    background: linear-gradient(45deg, var(--primary-color), #7c4dff);
    color: white;
    border: none;
    padding: 10px;
    font-size: 0.95rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(103, 58, 183, 0.4);
}

.btn-buy::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -50%; }
    100% { left: 150%; }
}

.btn-buy:hover {
    background: linear-gradient(45deg, #7c4dff, var(--primary-color));
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(103, 58, 183, 0.6);
}

/* Efeito de partículas */
.particle {
    position: absolute;
    background: rgba(156, 39, 176, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Responsivo para telas muito pequenas */
@media (max-width: 480px) {
    .instruments-grid {
        gap: 12px;
    }
    
    .instrument-image {
        height: 150px;
    }
    
    .instrument-card h3 {
        font-size: 1.1rem;
        padding: 12px 10px 5px;
    }
    
    .instrument-description {
        font-size: 0.8rem;
        padding: 0 10px 10px;
    }
    
    .price-container {
        gap: 8px;
    }
    
    .old-price {
        font-size: 0.85rem;
    }
    
    .new-price {
        font-size: 1.2rem;
    }
    
    .new-price::after {
        font-size: 0.5rem;
        top: -12px;
        right: -20px;
    }
    
    .btn-buy {
        font-size: 0.85rem;
        padding: 8px;
    }
}


.instrument-card.full-width {
    grid-column: 1 / -1;
}


/* Ajustes para o terceiro card */
.instrument-card.centered-card {
    grid-column: 1 / -1;
    max-width: 500px; /* Largura máxima para desktop */
    margin: 0 auto; /* Centraliza o card */
}

/* Em telas pequenas, ocupa a largura total */
@media (max-width: 768px) {
    .instrument-card.centered-card {
        max-width: 100%;
    }
}
/* Featured Combo - Versão Ultra Chamativa */
.featured-combo {
    background-color: #100D19;
    padding: 40px 20px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
}

/* Efeitos de luz de fundo */
.featured-combo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(115, 73, 229, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 70% 70%, rgba(115, 73, 229, 0.1) 0%, transparent 35%),
        radial-gradient(circle at center, rgba(115, 73, 229, 0.08) 0%, transparent 40%);
    z-index: -1;
    animation: rotate-lights 25s linear infinite;
}

.featured-description {
    text-align: center;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    margin-bottom: 30px;
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.featured-description::before,
.featured-description::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #7349E5, transparent);
    transform: translateY(-50%);
}

.featured-description::before {
    left: -20px;
    background: linear-gradient(90deg, transparent, #7349E5);
}

.featured-description::after {
    right: -20px;
}

.featured-instrument {
    display: flex;
    justify-content: center;
    background: rgba(16, 13, 25, 0.8);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(115, 73, 229, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.8),
        0 0 60px rgba(115, 73, 229, 0.2);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(115, 73, 229, 0.2);
    backdrop-filter: blur(4px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 30px;
}

.featured-info {
    width: 100%;
    box-sizing: border-box;
}

.featured-info h3 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    background: linear-gradient(90deg, white, #B9A1FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(115, 73, 229, 0.3);
    text-align: center;
}

.combo-features {
    list-style: none;
    margin: 0 auto 30px;
    padding: 0;
    display: inline-block;
    text-align: left;
    max-width: 100%;
}

.combo-features li {
    margin-bottom: 16px;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    display: flex;
    align-items: center;
    color: #E0D6FF;
    position: relative;
    padding-left: 35px;
}

.combo-features li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%237349E5'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E") no-repeat center;
    filter: drop-shadow(0 0 5px rgba(115, 73, 229, 0.7));
}

.price-comparison {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.final-price {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: white;
    margin: 15px 0;
    text-align: center;
    display: block;
}

/* Animações */
@keyframes rotate-lights {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 30px rgba(115, 73, 229, 0.3); }
    50% { box-shadow: 0 0 50px rgba(115, 73, 229, 0.5); }
    100% { box-shadow: 0 0 30px rgba(115, 73, 229, 0.3); }
}

.featured-instrument {
    animation: pulse-glow 4s infinite;
}

/* Media Query para desktop */
@media (min-width: 768px) {
    .featured-combo {
        padding: 60px 20px;
    }
    
    .featured-instrument {
        padding: 40px;
    }
}
/* Song List - Versão Premium */
.songs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    gap: 25px;
    position: relative;
}

.songs-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #7349E5, transparent);
    box-shadow: 0 0 15px rgba(115, 73, 229, 0.5);
}

.song-column {
    flex: 1;
    min-width: 280px;
    background: rgba(16, 13, 25, 0.7);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 
        0 5px 20px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(115, 73, 229, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.song-column:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(115, 73, 229, 0.5);
}

.song-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #7349E5, transparent);
}

.song-column h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(115, 73, 229, 0.3);
    position: relative;
}

.song-column h3::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #7349E5;
    box-shadow: 0 0 10px #7349E5;
}

.song-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.song-column li {
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: rgba(40, 37, 53, 0.5);
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-left: 3px solid transparent;
}

.song-column li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: #7349E5;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.song-column li:hover {
    background: rgba(115, 73, 229, 0.15);
    transform: translateX(8px);
    border-left: 3px solid #7349E5;
    box-shadow: 0 5px 15px rgba(115, 73, 229, 0.2);
}

.song-column li:hover::before {
    transform: scaleY(1);
}

.song-column i {
    margin-right: 12px;
    color: #B9A1FF;
    font-size: 1.2rem;
    text-shadow: 0 0 8px rgba(115, 73, 229, 0.5);
    transition: all 0.3s ease;
}

.song-column li:hover i {
    transform: scale(1.2);
    color: #7349E5;
}

/* Testimonials - Versão Premium */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
    position: relative;
}

.testimonial-grid::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #7349E5, transparent);
    box-shadow: 0 0 20px rgba(115, 73, 229, 0.5);
}

.testimonial-card {
    background: rgba(16, 13, 25, 0.8);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(115, 73, 229, 0.2);
    border: 1px solid rgba(115, 73, 229, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(115, 73, 229, 0.1) 0%, transparent 70%);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(115, 73, 229, 0.4);
    border-color: rgba(115, 73, 229, 0.5);
}

.testimonial-content {
    position: relative;
    z-index: 2;
}

.testimonial-content i {
    position: absolute;
    top: -25px;
    left: -15px;
    font-size: 4rem;
    color: rgba(115, 73, 229, 0.15);
    z-index: -1;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-content i {
    color: rgba(115, 73, 229, 0.25);
    transform: scale(1.1);
}

.testimonial-content p {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
    color: #E0D6FF;
    font-size: 1.1rem;
    padding-left: 15px;
    border-left: 2px solid rgba(115, 73, 229, 0.5);
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 2px solid #7349E5;
    box-shadow: 0 0 20px rgba(115, 73, 229, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author img {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(115, 73, 229, 0.5);
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author span {
    font-weight: bold;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-author small {
    color: #B9A1FF;
    font-size: 0.9rem;
}

/* Efeitos de brilho */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.testimonial-card {
    animation: float 6s ease-in-out infinite;
}

.testimonial-card:nth-child(2n) {
    animation-delay: 0.5s;
}

.testimonial-card:nth-child(3n) {
    animation-delay: 1s;
}

/* Responsividade */
@media (max-width: 768px) {
    .song-column {
        min-width: 100%;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}
/* CTA Section - Versão Otimizada */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, #100D19, #1E1735);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(115, 73, 229, 0.2);
    border-bottom: 1px solid rgba(115, 73, 229, 0.2);
}

.cta-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    line-height: 1.3;
}

.cta-header h2 span {
    background: linear-gradient(90deg, #B9A1FF, #8E6AFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    line-height: 1.6;
}

/* Highlight Box */
.cta-highlight {
    display: flex;
    flex-wrap: wrap;
    background: rgba(25, 18, 43, 0.7);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(115, 73, 229, 0.3);
    margin: 0 auto 40px;
    max-width: 1000px;
    transition: transform 0.3s ease;
}

.cta-highlight:hover {
    transform: translateY(-5px);
}

.highlight-content {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    text-align: left;
}

.highlight-content h3 {
    font-size: 1.5rem;
    color: #B9A1FF;
    margin-bottom: 15px;
}

.highlight-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #E0D6FF;
    line-height: 1.6;
}

.highlight-image {
    flex: 1;
    min-width: 300px;
    background: #1A1526;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cta-highlight:hover .highlight-image img {
    transform: scale(1.03);
}

/* Packages Grid */
.cta-packages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px auto;
    max-width: 1000px;
}

.cta-package {
    background: rgba(25, 18, 43, 0.7);
    border: 1px solid rgba(115, 73, 229, 0.3);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.cta-package:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(115, 73, 229, 0.5);
}

.best-value {
    border: 2px solid rgba(255, 215, 0, 0.5);
    position: relative;
}

.best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

.cta-package h4 {
    font-size: 1.4rem;
    color: #B9A1FF;
    margin-bottom: 15px;
}

.price-comparison {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.original-price {
    font-size: 1.1rem;
    color: #8E8E8E;
    text-decoration: line-through;
}

.discount-badge {
    background: #7349E5;
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.final-price-combo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 15px 0;
}

.final-price-combo span {
    color: #B9A1FF;
}

/* Guarantee Box */
.guarantee-box {
    display: flex;
    align-items: center;
    background: rgba(35, 25, 60, 0.6);
    border-radius: 12px;
    padding: 20px;
    margin: 40px auto 0;
    gap: 15px;
    border-left: 4px solid #7349E5;
    max-width: 700px;
}

.guarantee-box i {
    font-size: 2rem;
    color: #B9A1FF;
}

.guarantee-content h4 {
    color: #B9A1FF;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.guarantee-content p {
    color: #E0D6FF;
    font-size: 0.95rem;
    margin: 0;
}

/* Alternative Option */
.alternative-option {
    margin: 40px 0 30px;
}

.alternative-option p {
    font-size: 1rem;
    color: #B9A1FF;
    margin-bottom: 20px;
}

.btn-alternative {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #B9A1FF;
    border: 2px solid rgba(115, 73, 229, 0.5);
    transition: all 0.3s ease;
    background: transparent;
}

.btn-alternative:hover {
    background: rgba(115, 73, 229, 0.1);
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }
    
    .cta-highlight {
        flex-direction: column;
    }
    
    .highlight-image {
        min-height: 250px;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
    }
}
/* Footer - Versão Premium */
footer {
    background: linear-gradient(to bottom, #100D19, #1A1526);
    padding: 60px 0 30px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(115, 73, 229, 0.3);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, #7349E5, transparent);
    box-shadow: 0 0 15px rgba(115, 73, 229, 0.5);
}

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

.footer-logo {
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-logo img {
    max-width: 100px;
    filter: drop-shadow(0 0 10px rgba(115, 73, 229, 0.5));
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #B9A1FF;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #7349E5;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(115, 73, 229, 0.5);
}

.footer-links a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(115, 73, 229, 0.2);
    color: #B9A1FF;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #7349E5;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(115, 73, 229, 0.4);
}

.footer-copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(115, 73, 229, 0.2);
}

.footer-copyright p {
    color: #8E6AFF;
    font-size: 0.9rem;
    margin: 0;
}

.footer-copyright a {
    color: #B9A1FF;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-copyright a:hover {
    color: white;
    text-decoration: underline;
}

/* Efeito de partículas no footer */
.footer-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(115, 73, 229, 0.5);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-links {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .social-links {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .footer-copyright {
        margin-top: 30px;
    }
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Botão Flutuante da Lista de Músicas */
.floating-music-btn {
    position: fixed;
    bottom: 90px;
    right: 30px;
    z-index: 999;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-music-btn .btn-alternative {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(67, 49, 86, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-music-btn .btn-alternative:hover {
    background-color: #352742;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(67, 49, 86, 0.7);
}

.floating-music-btn .btn-alternative i {
    font-size: 1.2rem;
}

/* Animação de flutuar */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive para mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .floating-music-btn {
        bottom: 80px;
        right: 15px;
    }
    
    .floating-music-btn .btn-alternative {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .package-options {
        flex-direction: column;
    }
    
    .or-divider {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    
    .or-divider::before,
    .or-divider::after {
        width: 30px;
        height: 2px;
        margin: 0 5px;
    }
    
    .featured-instrument {
        flex-direction: column;
    }
    
    .featured-image {
        max-height: 200px;
    }
    
    .cta-packages {
        flex-direction: column;
    }
}

.competing-offers {
  padding: 20px 10px;
  background: linear-gradient(135deg, #1a1629 0%, #110e1b 100%);
  border-top: 1px solid rgba(115, 73, 229, 0.3);
  border-bottom: 1px solid rgba(115, 73, 229, 0.3);
  overflow: hidden;
}

.offer-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  max-width: 100%;
  box-sizing: border-box;
}

/* Cada caixa ocupa cerca de 45%, e o "OU" 10% */
.offer-box {
  width: 45%;
  min-width: 140px;
  background: rgba(25, 18, 43, 0.7);
  border-radius: 10px;
  padding: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(115, 73, 229, 0.4);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5),
              inset 0 0 10px rgba(115, 73, 229, 0.2);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.offer-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10%;
  min-width: 40px;
  position: relative;
}

.offer-divider span {
  background: rgba(25, 18, 43, 0.9);
  color: #B9A1FF;
  font-weight: bold;
  padding: 6px 10px;
  font-size: 0.8rem;
  border-radius: 50%;
  border: 1px solid rgba(115, 73, 229, 0.5);
  box-shadow: 0 0 15px rgba(115, 73, 229, 0.3);
  z-index: 2;
}

/* Demais estilos seguem iguais */
.offer-box h3 {
  color: #B9A1FF;
  font-size: 1.1rem;
  margin-bottom: 12px;
  text-align: center;
  text-shadow: 0 0 8px rgba(115, 73, 229, 0.5);
}

.offer-content {
  text-align: center;
}

.offer-content h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 10px;
}

.old-price {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-bottom: 3px;
}

.new-price {
  color: #FFAA33;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 3px;
  text-shadow: 0 0 10px rgba(255, 170, 51, 0.4);
}

.per-item {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.checkmark {
  font-size: 1.2rem;
  margin-bottom: 12px;
  animation: float 3s ease-in-out infinite;
}

.pulse-button {
  background: linear-gradient(135deg, #7349E5, #8E6AFF);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(115, 73, 229, 0.5);
  animation: pulse 0,10s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-5px); }
  100% { transform: translateY(0px); }
}
.connecting-arrow {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: -30px auto 20px;
  text-align: center;
}

.connecting-arrow svg {
  width: 100%;
  height: 80px;
}

.arrow-text {
  color: #B9A1FF;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 0 10px rgba(185, 161, 255, 0.5);
  margin-top: -15px;
  background: rgba(25, 18, 43, 0.7);
  display: inline-block;
  padding: 0 15px;
  border-radius: 15px;
  border: 1px solid rgba(115, 73, 229, 0.4);
}

/* Ajustes para mobile */
@media (max-width: 767px) {
  .connecting-arrow {
    margin-top: -20px;
    margin-bottom: 15px;
  }
  
  .connecting-arrow svg {
    height: 60px;
  }
  
  .arrow-text {
    font-size: 0.8rem;
    margin-top: -10px;
  }
}
.instrument-description {
    text-align: center;
    margin: 10px 0;
}

.instrument-types {
    margin: 0;
    padding: 0;
    font-style: italic;
    color: #ccc;
    font-size: 0.9em;
}

/* Estilos adicionais para manter consistência */
.instrument-card {
    text-align: center;
    padding: 20px;
    /* outros estilos do card */
}

.instrument-image img {
    max-width: 100%;
    height: auto;
}
/* Container para alinhamento */
.whatsapp-container {
  text-align: center;
  margin: 30px 0;
  padding: 0 15px;
}

/* Estilo do botão */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #25D366;
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
  border: 2px solid transparent;
  max-width: 100%;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
}

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

/* Responsivo */
@media (max-width: 768px) {
  .whatsapp-btn {
    font-size: 1rem;
    padding: 12px 20px;
  }
  
  .whatsapp-btn i {
    font-size: 1.3rem;
  }
}
/* Video Section Styles */
.video-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a1526 0%, #0d0a15 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(115, 73, 229, 0.3);
  border-bottom: 1px solid rgba(115, 73, 229, 0.3);
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(115, 73, 229, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(115, 73, 229, 0.15) 0%, transparent 25%);
  z-index: 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
  text-align: center;
  color: #B9A1FF;
  font-size: 1.2rem;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.video-container {
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(115, 73, 229, 0.5);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

.video-cta {
  text-align: center;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.video-cta p {
  color: #E0D6FF;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #7349E5, #8E6AFF);
  color: white;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(115, 73, 229, 0.5);
  border: none;
  font-size: 1.1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(115, 73, 229, 0.7);
  background: linear-gradient(135deg, #8E6AFF, #B9A1FF);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .video-section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .video-cta p {
    font-size: 1.1rem;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

.title-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.title-line-1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  background: linear-gradient(to right, #ac7fd3, #2E53DC);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.9);
  line-height: 1;
  font-weight: 900;
}

.title-line-2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #FFD700; /* Ou qualquer cor que você preferir */
  text-shadow: 
    0 5px 25px rgba(0, 0, 0, 0.9),
    0 0 20px rgba(255, 215, 0, 0.8);
  line-height: 1;
  font-weight: 900;
}

#urgencia-banner {
    background-color: #261B46;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { background-color: #261B46; }
    50% { background-color: #120F1D; }
    100% { background-color: #261B46; }
}
#autoridade-box {
    background-color: #261B46;
    color: #fff;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 300px;
}

#selo-img {
    width: 80px;
    margin-bottom: 10px;
}
#clientes-online {
    background-color: #120F1D;
    color: #fff;
    text-align: center;
    padding: 10px;
    margin: 20px auto;
    max-width: 400px;
    border-radius: 5px;
    font-weight: bold;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 999;
}

.whatsapp-button:hover {
    background-color: #1ebe5b;
}
.floating-songlist-btn {
  position: fixed;
  bottom: 150px; /* Antes era 120px — agora subiu bem mais */
  right: 20px;
  z-index: 1000;
}

.floating-songlist-btn .btn-alternative {
  background: #B9A1FF;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.floating-songlist-btn .btn-alternative:hover {
  background: #9b80f0;
}
