/* ==========================================
   LANDING PAGE - VERSÃO FUSÃO (PRETO/DOURADO + ULTRA)
   ========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --dark-gold: #b8860b;
    --silver: #c0c0c0;
    --background: #0a0a0a;
    --surface: #1a1a1a;
    --text-primary: #e0e0e0;
    --text-secondary: #aaaaaa;
    --border-color: #333;
    
    /* Gradiente Dourado */
    --gradient-gold: linear-gradient(135deg, var(--gold), var(--dark-gold));
    
    /* Sombras (do design Ultra, adaptadas) */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 48px rgba(0, 0, 0, 0.4);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   ELEMENTO DECORATIVO (ADICIONADO)
   ========================================== */
.bg-decoration {
    position: fixed;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 100%;
    /* Adaptado para dourado */
    background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ==========================================
   HEADER
   ========================================== */
header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px); /* Efeito do design Ultra */
    padding: 10px 0;
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 60px;
    transition: transform 0.3s ease;
    /* Garante que a logo com fundo transparente não tenha borda */
    border-radius: 0; 
}
.header-logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px; /* Mais espaço (do design Ultra) */
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

/* Efeito sublinhado (Adicionado do design Ultra) */
.nav-links a:not(.nav-btn-login)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-btn-login):hover {
    color: var(--gold);
}

.nav-links a:not(.nav-btn-login):hover::after {
    width: 100%;
}


/* Botão de Login (Adaptado do CTA Button) */
.nav-btn-login {
    background: var(--gradient-gold);
    color: black !important;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    border: none;
}
.nav-btn-login:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    color: black !important;
}

/* ==========================================
   BOTÃO CTA (Dourado)
   ========================================== */
.cta-button {
    display: inline-block;
    background: var(--gradient-gold);
    color: black;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    border: none;
}
.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

/* Botão Secundário (Adaptado do design Ultra) */
.btn-secondary {
    display: inline-block;
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 16px 36px; /* Tamanho do .cta-button */
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--background);
    border-color: var(--text-primary);
    transform: translateY(-3px);
}


/* ==========================================
   ESTILOS GERAIS DE SEÇÃO
   ========================================== */
section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

section.pricing, section.contact {
    background: var(--background);
}

section.features {
    background: #111;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffd700, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   ANIMAÇÕES
   ========================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    background-image: url('fundo.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 160px 20px 120px;
    margin-top: 80px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Pré-título (Adicionado do design Ultra) */
.hero-preheadline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border-radius: 30px;
    background: rgba(212, 175, 55, 0.1); /* Dourado transparente */
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.3;
    color: white;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}
.hero-text h1 span {
    background: linear-gradient(135deg, #ffd700, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--text-primary);
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.hero .cta-button {
    animation: fadeInUp 0.8s ease-out 0.8s backwards;
}

.hero-image {
    text-align: center;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}
.profile-photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    object-fit: contain; /* Ajustado para 'contain' para a logo */
    border: none; /* Removida a borda dourada */
    box-shadow: none; /* Removida a sombra */
}

/* ==========================================
   STATS SECTION (Adicionado do design Ultra)
   ========================================== */
.stats {
    padding: 80px 0;
    background: #111; /* Mesmo fundo das features */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ==========================================
   CARD FLUTUANTE (Estilo Base)
   ========================================== */
.floating-card {
    background: var(--surface);
    padding: 40px 30px;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.floating-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--gold);
}

/* ==========================================
   FEATURES (Funcionalidades)
   ========================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}
.feature-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--gold);
}
.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--silver);
}
.feature-card p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ==========================================
   PRICING (Planos)
   ========================================== */
.pricing-card-container {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pricing-card {
    text-align: center;
    width: 350px; /* Reduzido para caber 3 lado a lado melhor */
    min-width: 300px; /* Garante que não fique muito pequeno */
    display: flex;
    flex-direction: column;
}

.pricing-card.popular {
    border: 2px solid var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    transform: scale(1.05); /* Destaque do design Ultra */
    padding-top: 60px;
}
.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-15px);
}

.popular-badge {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: black;
    padding: 6px 40px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--silver);
}

.pricing-card.popular .pricing-header h3 {
    color: var(--gold);
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.price {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}
.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.pricing-features li i {
    color: var(--gold);
    font-size: 1.1rem;
}

.pricing-card .btn-secondary {
    background: var(--surface);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 18px 40px; /* Mesmo tamanho do .cta-button */
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.pricing-card .btn-secondary:hover {
    background: var(--text-primary);
    color: var(--background);
    border-color: var(--text-primary);
    transform: translateY(-3px);
}

.pricing-card .cta-button {
    width: 100%;
}

/* ==========================================
   CONTACT
   ========================================== */
.contact { background: var(--background); }
.contact p {
    color: var(--text-secondary);
    font-size: 15px;
}

/* ==========================================
   FOOTER (Estrutura do design Ultra)
   ========================================== */
.footer {
    background: #000; /* Fundo do seu portfólio */
    color: var(--text-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-decoration: none;
}
.footer-logo img {
    height: 60px; /* Mesmo tamanho do header */
    width: auto;
    transition: transform 0.3s ease;
}
.footer-logo:hover img {
    transform: scale(1.05);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.footer-bottom strong {
    color: white;
    font-weight: 600;
}

/* ==========================================
   BOTÕES FLUTUANTES (WhatsApp + Voltar ao Topo)
   ========================================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 32px;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}
.whatsapp-float i {
    font-size: 2rem;
    line-height: 0;
}
.whatsapp-float:hover {
    background-color: #1fb855;
    transform: scale(1.1);
}

/* Adicionado do design Ultra */
.scroll-to-top {
    position: fixed;
    bottom: 100px; /* Posição acima do WhatsApp */
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    color: black;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}


/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-image {
        /* Remove a logo duplicada no hero em telas menores */
        display: none; 
    }
    .pricing-card-container {
        flex-direction: column;
        align-items: center;
    }
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
    .pricing-card.popular {
        transform: scale(1); /* Remove o zoom no tablet */
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 10px;
    }
    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero {
        padding-top: 150px; /* Ajuste para o header mobile */
    }
    .hero-text h1 {
        font-size: 36px;
    }
    .hero-text p {
        font-size: 18px;
    }
    .section-title {
        font-size: 32px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr; /* Coluna única no mobile */
        gap: 32px;
    }
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .whatsapp-float {
        bottom: 20px;
        right: 80px; /* Move para o lado para não sobrepor */
    }
}
/* ==========================================
   SOBRE O IDEALIZADOR (NOVA SEÇÃO)
   ========================================== */
.about { 
    background: #111; /* Fundo levemente diferente para destacar */
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-photo { 
    text-align: center; 
}

.about-photo img {
    width: 100%;
    max-width: 300px;
    height: 300px;
    border-radius: 50%; /* Deixa a foto redonda */
    object-fit: cover;
    border: 4px solid var(--gold);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.about-text p {
    color: var(--text-secondary); 
    font-size: 1.1rem; 
    line-height: 1.7; 
    margin-bottom: 30px;
}

.credentials {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.credential {
    background: var(--surface);
    border: 1px solid var(--border-color);
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: bold;
    color: var(--silver);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.credential i {
    color: var(--gold);
    font-size: 1.1rem;
}

.credential:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

/* Responsividade para a seção 'About' */
@media (max-width: 992px) {
    .about-grid { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .about-photo { 
        margin-bottom: 40px; 
    }
    .about-text .section-title {
        text-align: center !important;
        margin-left: auto !important;
    }
    .credentials { 
        justify-content: center; 
    }
}
/* ==========================================
   ESTILO PREÇO MENSAL/ANUAL (NOVO)
   ========================================== */

.pricing-sub-price {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: -15px; /* Puxa para perto do preço principal */
    margin-bottom: 24px;
    line-height: 1.5;
}

.pricing-sub-price strong {
    color: var(--gold);
    font-weight: 700;
}

/* Garante que o botão secundário também ocupe 100% */
.pricing-card .btn-secondary {
    width: 100%;
}

/* ==========================================
   SEÇÃO DE VÍDEO DEMO
   ========================================== */
.video-demo {
    background: var(--background);
    text-align: center;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.video-wrapper:hover {
    transform: scale(1.02);
    border-color: var(--gold);
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #1a1a1a 0%, #000 100%);
    color: var(--text-secondary);
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.video-wrapper:hover .play-button {
    background: var(--gold);
    color: black;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
   SEÇÃO DE DEPOIMENTOS (TESTIMONIALS)
   ========================================== */
.testimonials {
    background: #111;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-icon {
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.client-info strong {
    display: block;
    color: white;
    font-size: 0.95rem;
}

.client-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}