:root {
    --primary-color: #00B2FF;
    --secondary-color: #0090cc;
    --accent-color: #00D9B2;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: #f8f9fa;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 2rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 178, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0,178,255,0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(0,217,178,0.15) 0%, transparent 25%);
    animation: gradientMove 20s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

/* Logo */
.header-container {
    padding: 2rem 0;
    margin-bottom: 2rem;
    gap: 3rem;
    width: 100%;
    position: relative;
}

.logo-container {
    flex-shrink: 0;
}

.logo-container img {
    width: 220px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* Mega Title */
.mega-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #00B2FF;
    flex-grow: 1;
    padding-left: 1rem;
    position: relative;
}

.mega-title .title-line {
    font-size: 5.2rem;
    line-height: 1;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #00B2FF 0%, #0091ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 178, 255, 0.1);
    position: relative;
    z-index: 1;
}

.mega-title .highlight {
    font-size: 3.2rem;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.9;
    margin-top: 0.2rem;
    line-height: 1;
    letter-spacing: -0.01em;
}

/* Typography */
h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #404040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    opacity: 0.9;
}

.lead {
    font-size: 1.25rem;
    color: #4a5568;
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Buttons */
.btn, 
.btn-outline-primary {
    position: relative;
    z-index: 1000;
    pointer-events: auto;
    cursor: pointer;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0,178,255,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,178,255,0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-outline-primary:hover {
    color: white;
    border-color: transparent;
}

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

/* Cards */
.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
    box-shadow: 
        0 4px 6px rgba(0,0,0,0.05),
        0 10px 15px rgba(0,178,255,0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 8px 12px rgba(0,0,0,0.05),
        0 15px 25px rgba(0,178,255,0.2);
}

.benefit-card i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.benefit-card p {
    color: #4a5568;
    line-height: 1.7;
}

/* Price Card */
.price-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 6px rgba(0,0,0,0.05),
        0 10px 15px rgba(0,178,255,0.1);
}

.price-card.popular {
    border: 2px solid transparent;
    background: 
        linear-gradient(white, white) padding-box,
        linear-gradient(135deg, var(--primary-color), var(--accent-color)) border-box;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0,178,255,0.2);
}

.price {
    margin: 2rem 0;
}

.price .currency {
    font-size: 2rem;
    font-weight: 600;
    vertical-align: top;
    color: #2d3748;
}

.price .amount {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.features li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
}

.features li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--accent-color);
}

/* Video Container */
.video-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 20px rgba(0,0,0,0.1),
        0 20px 40px rgba(0,178,255,0.2);
}

/* Sections */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(0,178,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0,217,178,0.05) 0%, transparent 50%);
}

/* Guarantee Section */
.guarantee {
    background: #f8f9fa;
}

.guarantee img {
    max-width: 200px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 3rem 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
        transparent,
        rgba(0, 178, 255, 0.2),
        transparent
    );
}

.guarantee-section {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.guarantee-seal {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.guarantee-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.guarantee-text {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.footer-content {
    padding-left: 2rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.copyright {
    color: #718096;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #718096;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.social-link:hover {
    color: #00B2FF;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 178, 255, 0.2);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00B2FF;
}

/* Ajuste responsivo do footer */
@media (max-width: 768px) {
    .footer-content {
        padding-left: 0;
        border-left: none;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .benefit-card,
    .price-card {
        margin-bottom: 2rem;
    }
}

/* Métricas */
.metrics {
    margin-top: 3rem;
}

.metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 178, 255, 0.1);
    transition: transform 0.3s ease;
}

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

.metric .number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.metric .label {
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Headers */
.section-header {
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #404040 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header .lead {
    color: #4a5568;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Guarantee Features */
.guarantee-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.guarantee-features li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #4a5568;
}

.guarantee-features li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #10B981;
}

/* Payment Methods */
.payment-methods {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
}

.payment-methods img {
    max-height: 30px;
    opacity: 0.8;
}

/* Footer Customization */
.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.social-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: white;
}

/* Enhanced Button Styles */
.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Floating Animation for Hero Image */
.hero-image-container {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 178, 255, 0.2));
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }

    .metric {
        margin-bottom: 1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-image-container {
        margin-top: 3rem;
        animation: none;
    }

    .social-links {
        margin: 2rem 0;
    }
}

/* Loading Animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: loading 1.5s infinite;
}

@keyframes loading {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

/* Ajuste responsivo */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .mega-title {
        padding-left: 0;
    }

    .mega-title .title-line {
        font-size: 3.5rem;
    }

    .mega-title .highlight {
        font-size: 2.2rem;
    }
}

/* Garantir que elementos decorativos não interfiram */
.hero::before,
.hero::after,
.price-card::before,
.price-card::after {
    pointer-events: none !important;
}
