/* === NAVBAR OCULTA GLOBALMENTE === */
* {
    /* Remove qualquer navbar que possa aparecer */
}

/* Ocultar todos os elementos de navegação */
header,
.header,
.navbar,
.nav-bar,
.navigation,
.nav-container,
.nav-menu,
nav {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* Garantir que o body comece do topo */
body {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h2 {
    color: #4F46E5;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo .tagline {
    font-size: 0.8rem;
    color: #666;
    font-weight: 400;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #4F46E5;
}

.btn-primary {
    background: #4F46E5;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #3730A3;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx=".5" cy=".5" r=".5"><stop offset="0%" stop-color="%23ffffff" stop-opacity=".1"/><stop offset="100%" stop-color="%23ffffff" stop-opacity="0"/></radialGradient></defs><circle cx="200" cy="200" r="100" fill="url(%23a)"><animate attributeName="cx" values="200;800;200" dur="20s" repeatCount="indefinite"/></circle><circle cx="800" cy="800" r="150" fill="url(%23a)"><animate attributeName="cy" values="800;200;800" dur="25s" repeatCount="indefinite"/></circle></svg>') no-repeat center center;
    background-size: cover;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title .highlight {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.btn-hero {
    display: inline-block;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.guarantee {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.hero-mockup {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.section-header .highlight {
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #0f0f23;
    font-size: 1.5rem;
    font-weight: bold;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(100, 255, 218, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #64ffda;
}

.category-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.category-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Portfolio Section */
.portfolio {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
}

.portfolio .highlight {
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.portfolio-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 30px 60px rgba(100, 255, 218, 0.1);
}

.card-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.9), rgba(0, 188, 212, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none; /* Impede que o overlay interfira no scroll */
}

.portfolio-card:hover .image-overlay {
    opacity: 0; /* Mantém a opacidade em 0 mesmo no hover */
}

.overlay-content {
    text-align: center;
    color: #0f0f23;
    padding: 2rem;
}

.overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.metrics {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.metric {
    background: rgba(15, 15, 35, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.browser-mockup {
    height: 100%;
    background: #1a1a2e;
    position: relative;
}

.browser-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #10b981; }

.browser-url {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.70rem;
    color: rgba(255, 255, 255, 0.7);
    flex: 1;
    max-width: 200px;
}

.browser-content {
    height: calc(100% - 40px);
    overflow: hidden;
}

.browser-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    transform: scale(0.4);
    transform-origin: 0 0;
    width: 250%;
    height: 250%;
}

.card-footer {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.view-project {
    color: #64ffda;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.view-project:hover {
    color: #00bcd4;
    transform: translateX(5px);
}

.portfolio-stats-section {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Promotional Offer Section */
.promo-offer {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: white;
    text-align: center;
}

.promo-badge {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.promo-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: white;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.8em;
}

.new-price {
    color: #64ffda;
    font-size: 1.2em;
}

.countdown-timer {
    margin: 2rem 0;
}

.timer-label {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.timer {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.time-unit {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    min-width: 60px;
}

.time-unit span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #64ffda;
}

.time-unit label {
    font-size: 0.8rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.7);
}

.btn-promo {
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    color: #0f0f23;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
}

.btn-promo:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.4);
}

.promo-guarantee {
    font-size: 0.9rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.7);
}

/* Testimonials Section - New Design */
.testimonials {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card-new {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.testimonial-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #64ffda, #00bcd4);
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.2);
    border-color: rgba(100, 255, 218, 0.3);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-photo {
    position: relative;
}

.client-photo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(100, 255, 218, 0.3);
    object-fit: cover;
}

.verified-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: #64ffda;
    color: #0f0f23;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid #0f0f23;
}

.client-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.client-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.client-info .stars {
    font-size: 0.9rem;
    color: #64ffda;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 3rem;
    color: rgba(100, 255, 218, 0.2);
    font-family: serif;
    line-height: 1;
}

.testimonial-quote p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin: 0;
    padding-left: 1rem;
}

.testimonial-metrics {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-highlight {
    text-align: center;
}

.stat-highlight .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

.stat-highlight .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .testimonial-card-new {
        padding: 1.5rem;
    }
    
    .stat-highlight .stat-number {
        font-size: 2rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch; /* Força todos os cards a terem a mesma altura */
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex; /* Flexbox para controlar o layout interno */
    flex-direction: column; /* Organiza elementos verticalmente */
    min-height: 600px; /* Altura mínima garantida */
}

/* Força a lista de features a ocupar o espaço disponível */
.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    flex-grow: 1; /* Ocupa o espaço restante */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Mantém o botão sempre no final do card */
.btn-plan {
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    color: #0f0f23;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
    margin-top: auto; /* Empurra o botão para o final */
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
}

.pricing-card.featured {
    border-color: #64ffda;
    transform: scale(1.05);
    background: rgba(100, 255, 218, 0.05);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    color: #0f0f23;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Estilos modernos para os ícones dos planos */
.plan-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.plan-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(100, 255, 218, 0.3));
    transition: all 0.3s ease;
    animation: iconGlow 2s ease-in-out infinite alternate;
}

.plan-icon:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(100, 255, 218, 0.5));
}

/* Animação de brilho sutil para os ícones */
@keyframes iconGlow {
    0% {
        filter: drop-shadow(0 4px 8px rgba(100, 255, 218, 0.3)) brightness(1);
    }
    100% {
        filter: drop-shadow(0 4px 8px rgba(100, 255, 218, 0.5)) brightness(1.1);
    }
}

/* Efeito especial para o plano em destaque */
.pricing-card.featured .plan-icon {
    filter: drop-shadow(0 4px 8px rgba(100, 255, 218, 0.6));
    animation: iconGlowFeatured 1.5s ease-in-out infinite alternate;
}

@keyframes iconGlowFeatured {
    0% {
        filter: drop-shadow(0 4px 8px rgba(100, 255, 218, 0.6)) brightness(1.1);
    }
    100% {
        filter: drop-shadow(0 4px 8px rgba(100, 255, 218, 0.8)) brightness(1.2);
    }
}

/* Ajuste do título para harmonizar com o ícone */
.plan-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.plan-header:hover h3 {
    color: #64ffda;
    text-shadow: 0 2px 8px rgba(100, 255, 218, 0.4);
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    vertical-align: top;
    color: #64ffda;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #64ffda;
}

.period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.promo-badge {
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    color: #0f0f23;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-left: 1.5rem;
}

.plan-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #64ffda;
    font-weight: bold;
}

.btn-plan {
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    color: #0f0f23;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.4);
}

.btn-plan.featured {
    background: linear-gradient(45deg, #64ffda, #00bcd4);
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.faq-icon {
    font-size: 1.5rem;
    color: #64ffda;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-consultant {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-consultant:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #64ffda;
    color: #64ffda;
}

/* Simple Footer */
.simple-footer {
    background: #0f0f23;
    color: white;
    padding: 3rem 0 1rem;
}

.simple-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64ffda;
}

.simple-footer .social-links {
    display: flex;
    gap: 1rem;
}

.simple-footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 50%;
    color: #64ffda;
    text-decoration: none;
    transition: all 0.3s ease;
}

.simple-footer .social-links a:hover {
    background: #64ffda;
    color: #0f0f23;
    transform: translateY(-2px);
}

.simple-footer .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@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);
    }
}

/* Reset previous header styles */
.header {
    display: none;
}

/* Minimalist Hero Section */
.minimalist-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-wrapper {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.hero-content-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.brand-logo {
    margin-bottom: 3rem;
}

.brand-logo h1 {
    font-size: 2rem;
    font-weight: 300;
    color: #64ffda;
    letter-spacing: 2px;
    margin: 0;
}

.hero-main {
    margin-bottom: 4rem;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.text-highlight {
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtext {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-weight: 300;
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.metric-item {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 0.5rem;
}

.metric-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-action {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-main {
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    color: #0f0f23;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
}

.btn-hero-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.4);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #64ffda;
    color: #64ffda;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64ffda;
    font-size: 1.5rem;
    animation: float-around 20s linear infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 30%;
    right: 15%;
    animation-delay: 5s;
}

.element-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 10s;
}

.element-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 15s;
}

@keyframes float-around {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(0px) rotate(180deg);
        opacity: 0.3;
    }
    75% {
        transform: translateY(20px) rotate(270deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(0px) rotate(360deg);
        opacity: 0.3;
    }
}


.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #64ffda, transparent);
    animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-action {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-main,
    .btn-hero-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .floating-elements {
        display: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-card {
        margin: 0 1rem;
    }
    
    .card-image {
        height: 250px;
    }
    
    .card-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .timer {
        gap: 0.5rem;
    }
    
    .time-unit {
        padding: 0.5rem;
        min-width: 50px;
    }
    
    .time-unit span {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .simple-footer .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .brand-logo h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
    
    .portfolio {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .btn-hero-secondary {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        gap: 0.3rem;
    }
    
    .btn-hero-secondary i {
        font-size: 0.8rem;
    }
}

/* Extras Section */
.extras {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.extra-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.extra-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
}

.extra-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.extra-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.extra-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.extra-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64ffda;
    background: rgba(100, 255, 218, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(100, 255, 218, 0.3);
    display: inline-block;
}

/* Responsive adjustments for extras */
@media (max-width: 768px) {
    .extras-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .extra-card {
        margin: 0 1rem;
    }
}

/* Seção de Conversão Final Ultra Persuasiva */
.ultimate-conversion {
    position: relative;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
    padding: 4rem 0;
    overflow: hidden;
    border-top: 3px solid #64ffda;
    border-bottom: 3px solid #64ffda;
}

.ultimate-conversion .conversion-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(100, 255, 218, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%);
}

.ultimate-conversion .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ultimate-conversion .float-element {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float-conversion 6s ease-in-out infinite;
}

.ultimate-conversion .float-element:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.ultimate-conversion .float-element:nth-child(2) { top: 20%; right: 15%; animation-delay: 1s; }
.ultimate-conversion .float-element:nth-child(3) { top: 60%; left: 20%; animation-delay: 2s; }
.ultimate-conversion .float-element:nth-child(4) { bottom: 20%; right: 20%; animation-delay: 3s; }
.ultimate-conversion .float-element:nth-child(5) { bottom: 40%; left: 15%; animation-delay: 4s; }
.ultimate-conversion .float-element:nth-child(6) { top: 40%; right: 10%; animation-delay: 5s; }

@keyframes float-conversion {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.ultimate-conversion .conversion-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.ultimate-conversion .urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.ultimate-conversion .pulsing {
    animation: pulse-conversion 2s ease-in-out infinite;
}

@keyframes pulse-conversion {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6); }
}

.ultimate-conversion .conversion-headline {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.ultimate-conversion .highlight-red {
    color: #ff6b6b;
    text-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.ultimate-conversion .highlight-gold {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.ultimate-conversion .conversion-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ultimate-conversion .stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.ultimate-conversion .stat-item:hover {
    transform: translateY(-5px);
    border-color: #64ffda;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.2);
}

.ultimate-conversion .stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.ultimate-conversion .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #64ffda;
    display: block;
    margin-bottom: 0.5rem;
}

.ultimate-conversion .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.ultimate-conversion .conversion-warning {
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.1), rgba(255, 140, 140, 0.1));
    border: 2px solid #ff6b6b;
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: warningGlow 3s ease-in-out infinite;
}

@keyframes warningGlow {
    0%, 100% { border-color: #ff6b6b; box-shadow: 0 0 20px rgba(255, 107, 107, 0.3); }
    50% { border-color: #ff8e8e; box-shadow: 0 0 30px rgba(255, 107, 107, 0.5); }
}

.ultimate-conversion .warning-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.ultimate-conversion .warning-content h3 {
    color: #ff6b6b;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.ultimate-conversion .warning-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.ultimate-conversion .social-proof-mini {
    margin: 3rem 0;
}

.ultimate-conversion .social-proof-mini p {
    color: white;
    font-size: 1rem;
    margin: 0;
}

.ultimate-conversion .proof-avatars {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 1rem;
}

.ultimate-conversion .proof-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #64ffda;
    margin-left: -0.5rem;
}

.ultimate-conversion .more-clients {
    background: #64ffda;
    color: #0f0f23;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    margin-left: -0.5rem;
}

.ultimate-conversion .final-offer {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 223, 0, 0.1));
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 2rem;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.ultimate-conversion .final-offer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.ultimate-conversion .offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #0f0f23;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.ultimate-conversion .offer-discount {
    background: #ff6b6b;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

.ultimate-conversion .mega-cta {
    margin: 3rem 0;
}

.ultimate-conversion .btn-mega-conversion {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, #64ffda, #00bcd4);
    color: #0f0f23;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.ultimate-conversion .btn-mega-conversion:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(100, 255, 218, 0.6);
}

.ultimate-conversion .btn-mega-conversion::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.ultimate-conversion .btn-mega-conversion:hover::before {
    left: 100%;
}

.ultimate-conversion .btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ultimate-conversion .btn-text small {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 500;
}

.ultimate-conversion .guarantee-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.ultimate-conversion .scarcity-timer {
    margin-top: 2rem;
}

.ultimate-conversion .timer-label {
    color: #ff6b6b;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.ultimate-conversion .countdown-mini {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.ultimate-conversion .time-unit {
    background: rgba(255, 107, 107, 0.2);
    border: 2px solid #ff6b6b;
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
    min-width: 60px;
}

.ultimate-conversion .time-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6b6b;
}

.ultimate-conversion .time-label {
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.ultimate-conversion .time-separator {
    color: #ff6b6b;
    font-size: 1.5rem;
    font-weight: 800;
    animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

/* Responsividade */
@media (max-width: 768px) {
    .ultimate-conversion .conversion-headline {
        font-size: 1.8rem;
    }
    
    .ultimate-conversion .conversion-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .ultimate-conversion .conversion-warning {
        flex-direction: column;
        text-align: center;
    }
    
    .ultimate-conversion .btn-mega-conversion {
        padding: 1.25rem 2rem;
        font-size: 1rem;
    }
    
    .ultimate-conversion .countdown-mini {
        flex-wrap: wrap;
    }
}

