/* Reset básico */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Montserrat', sans-serif; }

body {
    background-color: #050505;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden; /* Evita rolagem lateral indesejada */
}

/* Header */
header {
    background: #000;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.logo { 
    display: flex; 
    align-items: center; 
    gap: 15px; /* Espaço entre o logo e o texto */
    font-weight: bold; 
    font-size: 1.5rem; 
    color: #ffffff; 
}

.logo img {
    height: 50px; /* Tamanho do logo */
    width: auto;
}

nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 20px; }
nav ul li a { text-decoration: none; color: #fff; transition: 0.3s; }
nav ul li a:hover { color: #999; }

/* Hero Section */
.hero {
    min-height: 100vh; /* Garante que não corte em telas pequenas */
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito parallax na capa de fundo */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Espaço para o header fixo */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.hero-name {
    color: #ccc;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero h1 { 
    font-size: 3.5rem; 
    margin-bottom: 20px; 
    line-height: 1.2;
}

.hero-img-container {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
}

.hero-img-container img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    border: 3px solid #333;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #ffffff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}
.cta-button:hover { background: #ccc; }

.cta-button.outline {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}
.cta-button.outline:hover { background: #ffffff; color: #000; }

/* Responsividade Hero */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding-bottom: 50px;
    }
    .hero-text { text-align: center; }
    .hero-buttons { justify-content: center; }
    .hero h1 { font-size: 2.5rem; }
}

/* Stats Bar */
.stats-bar {
    background-color: #111;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 30px 10%;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item { margin: 10px; }
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
}
.stat-text { font-size: 1rem; font-weight: bold; text-transform: uppercase; }

/* Sections Gerais */
.container { padding: 80px 5%; text-align: center; }
h2 { font-size: 2.5rem; margin-bottom: 40px; border-bottom: 2px solid #fff; display: inline-block; }

/* Sobre Mim (Novo Layout) */
.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    text-align: left;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 15px 15px 0px #333; /* Efeito visual moderno */
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    text-align: left; /* Alinha o título à esquerda neste contexto */
}

.features-list {
    margin-top: 20px;
}

.feature-item {
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: #fff;
}

/* Grid de Passos (Metodologia) */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.step-item {
    text-align: center;
    padding: 20px;
}

.step-item i {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
}

/* Galeria */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-item {
    width: 300px;           /* Largura fixa */
    height: 300px;          /* Altura fixa */
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #333; /* Borda escura padrão */
    transition: border-color 0.3s ease;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    border-color: #fff; /* Borda branca ao passar o mouse */
}

/* Diferenciais (Features) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background: linear-gradient(145deg, #1e1e1e, #252525);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #333;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #fff;
}

.feature-card i {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 50%;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Resultados / Depoimentos */
.bg-darker {
    background-color: #0a0a0a; /* Fundo levemente mais escuro para contraste */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #fff;
    text-align: left;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    color: #ddd;
}

.testimonial-card h4 {
    color: #ccc;
    text-align: right;
}

/* Tabela de Preços */
.pricing-table {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.plan-card {
    background: #1e1e1e;
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    cursor: pointer; /* Indica que é clicável */
    transition: transform 0.3s, border-color 0.3s;
    border: 2px solid transparent;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: #fff;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.plan-card.featured {
    border-color: #fff;
    background: #222;
}

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

.price { font-size: 2rem; font-weight: bold; margin: 20px 0; color: #fff; }
.price span { font-size: 1rem; color: #ccc; }

.plan-card ul { list-style: none; margin-bottom: 20px; text-align: left; }
.plan-card ul li { margin-bottom: 10px; border-bottom: 1px solid #333; padding-bottom: 5px; }

.select-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
}

.plan-card:hover .select-btn { background: #fff; color: #000; }

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.faq-item {
    background: #1e1e1e;
    padding: 25px;
    border-radius: 8px;
}

.faq-item h3 { color: #fff; margin-bottom: 10px; font-size: 1.2rem; }

/* Modal Styles */
.modal {
    display: none; /* Escondido por padrão */
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #1e1e1e;
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    border: 1px solid #fff;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
}

.modal-price { font-size: 2rem; color: #fff; margin-bottom: 30px; }

.payment-options { display: flex; flex-direction: column; gap: 10px; }

.pay-btn {
    padding: 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.2s;
}

.pay-btn.pix { background-color: #32bcad; color: white; }
.pay-btn.card { background-color: #444; color: white; }
.pay-btn.boleto { background-color: #f0ad4e; color: white; }

.pay-btn:hover { opacity: 0.9; transform: scale(1.02); }

/* Detalhes do PIX */
.pix-details {
    display: none; /* Oculto por padrão */
    background: #252525;
    padding: 20px;
    margin: 15px 0;
    border-radius: 10px;
    border: 1px solid #333;
}

.pix-details img {
    width: 150px;
    height: 150px;
    margin: 10px 0;
    border: 5px solid #fff;
    border-radius: 5px;
}

.pix-copy-box {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.pix-copy-box input {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #444;
    background: #111;
    color: #fff;
    text-align: center;
}

.pix-copy-box button {
    padding: 10px 20px;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.pix-copy-box button:hover { background: #128c7e; }

.pix-note {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 10px;
}

/* Footer Melhorado */
footer { background: #000; padding-top: 60px; margin-top: 50px; }

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-bottom: 40px;
    width: 90%;
    margin: 0 auto;
    text-align: left;
}

.footer-section { margin-bottom: 20px; min-width: 200px; }
.footer-section h3 { color: #fff; margin-bottom: 20px; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 10px; }
.footer-section ul li a { color: #ccc; text-decoration: none; transition: 0.3s; }
.footer-section ul li a:hover { color: #fff; padding-left: 5px; }

/* Newsletter Form */
.newsletter-form {
    display: flex;
    margin-top: 15px;
}
.newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    width: 70%;
}
.newsletter-form button {
    padding: 10px;
    background: #fff;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: bold;
}

.footer-bottom {
    background: #0a0a0a;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #222;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: 0.3s;
}
.social-links a:hover { color: #ccc; }

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover { background-color: #128c7e; transform: scale(1.1); }

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

/* Animação de Scroll (Reveal) */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
