/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Core color variables (laranja + preto premium) */
:root {
    --brand: #FF7A00;
    --brand-dark: #CC6200;
    --brand-muted: #9E4B00;

    --bg: #000000;
    --surface: #0A0A0A;
    --text: #ffffff;
    --muted: #bfc6cc;
    --muted-dark: #1f2937;
    --card-shadow: rgba(0,0,0,0.6);
}

/* Base */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--bg);
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

.btn-primary {
    background-color: var(--brand);
    color: var(--text);
}

.btn-primary:hover {
    background-color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 122, 0, 0.25);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--brand);
    color: var(--brand);
}

.btn-outline:hover {
    background-color: var(--brand);
    color: var(--text);
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--brand);
}

.section-title p {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 700px;
    margin: 0 auto;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--brand);
    margin: 20px auto;
    border-radius: 2px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0,0,0,0.9);
    box-shadow: 0 6px 20px rgba(0,0,0,0.6);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

/* Logo + texto no topo */
.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-area img {
    height: 48px;
    width: auto;
}

.logo-area span {
    color: var(--brand);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    font-weight: 600;
    position: relative;
    padding: 6px 0;
    color: var(--muted);
    transition: color 0.2s ease, text-shadow 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width 0.25s ease;
}

/* underline laranja cheio no hover/ativo */
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* texto laranja com leve brilho */
.nav-links a:hover,
.nav-links a.active {
    color: var(--brand);
    text-shadow: 0 0 8px rgba(255,122,0,0.7);
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Botão "Agendar Avaliação" – destaque no header */
.nav-buttons .btn-primary {
    border-radius: 999px;
    padding: 12px 34px;
    box-shadow: 0 0 0 2px rgba(255,122,0,0.35);
    letter-spacing: 0.3px;
    font-size: 1rem;
}

/* Hover ainda mais chamativo no topo */
.nav-buttons .btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 20px rgba(255,122,0,0.7);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--muted);
}

/* Hero */
#home {
    padding-top: 150px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, rgba(255,122,0,0.95) 0%, rgba(158,75,0,0.95) 100%);
    color: var(--text);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.05;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    color: rgba(255,255,255,0.95);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* FOTO REAL DO HERO */
.hero-photo {
    width: 100%;
    max-width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* About */
#about {
    background-color: var(--bg);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

/* FOTO REAL SOBRE MIM */
.about-photo {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text);
}

.about-text p {
    margin-bottom: 18px;
    color: var(--muted);
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature i {
    color: var(--brand);
    font-size: 1.5rem;
    margin-top: 5px;
}

/* Services */
#services {
    background-color: var(--bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--surface);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 30px var(--card-shadow);
    transition: all 0.25s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 50px rgba(0,0,0,0.75);
}

.service-icon {
    font-size: 3rem;
    color: var(--brand);
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text);
}

.service-card p {
    color: var(--muted);
}

/* Plans */
#plans {
    background-color: var(--bg);
}

.plans-layout {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.plan-card {
    background-color: var(--surface);
    border-radius: 18px;
    padding: 28px 26px;
    box-shadow: 0 14px 40px rgba(0,0,0,0.75);
    border: 1px solid rgba(255,122,0,0.25);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan-featured {
    border-width: 2px;
    border-color: var(--brand);
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    width: 100%;
}

.plan-featured::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255,122,0,0.16), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.plan-header {
    position: relative;
    z-index: 1;
    margin-bottom: 10px;
}

.plan-header h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--text);
}

.plan-header p {
    color: var(--muted);
    font-size: 0.95rem;
}

.plan-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,122,0,0.12);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Destaques com ícones no Plano Performance */
.plan-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 18px;
}

.plan-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 140, 0, 0.4);
    background: radial-gradient(circle at top left, rgba(255, 140, 0, 0.18), rgba(10, 10, 10, 0.9));
}

.plan-highlight i {
    color: var(--brand);
    font-size: 1rem;
}

.plan-highlight span {
    font-size: 0.9rem;
    color: #f5f5f5;
}

.plan-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.plan-block h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text);
}

.plan-block ul {
    margin-left: 16px;
    color: var(--muted);
    font-size: 0.96rem;
}

.plan-block ul li + li {
    margin-top: 4px;
}

.plan-sublist {
    margin-top: 4px;
    margin-left: 18px;
    font-size: 0.9rem;
    list-style: disc;
}

.plan-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, rgba(255,122,0,0.1), rgba(255,255,255,0.04), rgba(255,122,0,0.1));
    margin: 6px 0;
}

.plan-credencial {
    margin-top: 10px;
    font-size: 0.88rem;
    color: var(--muted);
}

/* Footer do card de plano */
.plan-footer {
    position: relative;
    z-index: 1;
    margin-top: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.plan-footer .btn {
    align-self: flex-start;
}

.plan-note {
    font-size: 0.85rem;
    color: var(--muted);
}

/* FAQ abaixo do plano */
.faq-wrapper {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.faq-card {
    background: linear-gradient(145deg, #101010, #050505);
    border-radius: 18px;
    max-width: 800px;
    width: 100%;
}

.faq-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item h4 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--text);
}

.faq-item p {
    font-size: 0.92rem;
    color: var(--muted);
}

/* Subtítulo da segunda parte de planos */
.section-subtitle-center {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 24px;
}

.section-subtitle-center h3 {
    font-size: 1.6rem;
    color: var(--text);
    margin-bottom: 8px;
}

.section-subtitle-center p {
    font-size: 1rem;
    color: var(--muted);
}

/* Grid dos outros planos (Trimestral, Semestral, Anual) */
.plans-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.plan-option {
    min-height: 100%;
}

.plan-option-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.plan-option-header h4 {
    font-size: 1.2rem;
    color: var(--text);
}

.plan-option-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand);
    background: rgba(255,122,0,0.14);
    padding: 4px 10px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.plan-option-body p {
    font-size: 0.95rem;
    color: var(--muted);
    margin-bottom: 8px;
}

/* Testimonials */
#testimonials {
    background-color: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--surface);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 30px var(--card-shadow);
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--muted-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--muted);
}

.client-details h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text);
}

.rating {
    color: #fbbf24;
}

.testimonial-text {
    font-style: italic;
    color: var(--muted);
    margin-bottom: 18px;
}

.before-after {
    display: flex;
    gap: 15px;
}

.ba-image {
    flex: 1;
    height: 120px;
    background-color: var(--muted-dark);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
}

/* Contact */
#contact {
    background-color: var(--bg);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-form {
    background-color: var(--surface);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.75);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--muted);
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 8px;
    font-size: 1rem;
    background: transparent;
    color: var(--text);
    transition: all 0.2s ease;
}

.form-control::placeholder {
    color: rgba(255,255,255,0.45);
}

.form-control:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 6px rgba(255,122,0,0.18);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    background-color: var(--surface);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.7);
    color: var(--muted);
}

.info-item {
    display: flex;
    margin-bottom: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,122,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--brand);
}

.info-icon i {
    font-size: 1.15rem;
}

.info-details h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text);
}

/* Social links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand);
    color: var(--text);
    transition: all 0.2s ease;
}

.social-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(255,122,0,0.3);
}

/* Footer */
footer {
    background-color: #070707;
    color: var(--muted);
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Logo + texto no rodapé */
.footer-logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-logo-area img {
    height: 48px;
    width: auto;
    display: block;
}

.footer-logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brand);
}

.footer-about-text {
    color: var(--muted);
    margin-top: 5px;
}

.footer-heading {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: var(--text);
    position: relative;
    padding-bottom: 8px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--brand);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--muted);
    transition: all 0.15s ease;
}

.footer-links a:hover {
    color: var(--text);
    padding-left: 6px;
}

.footer-contact address p {
    margin-bottom: 6px;
}

.copyright {
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.04);
    color: var(--muted);
    font-size: 0.9rem;
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    z-index: 999;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.85);
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content,
    .about-content {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.6rem;
    }

    .plans-options-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        color: var(--muted);
    }

    .nav-links,
    .nav-buttons {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(0,0,0,0.96);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: all 0.2s ease;
    }

    .nav-links.active,
    .nav-buttons.active {
        left: 0;
    }

    .nav-links {
        gap: 24px;
    }

    .nav-buttons {
        gap: 18px;
    }

    .section {
        padding: 70px 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .plans-options-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }

    .section {
        padding: 60px 0;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .contact-form,
    .contact-info {
        padding: 20px;
    }

    .plan-highlights {
        flex-direction: column;
        align-items: flex-start;
    }
}
