/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-bg-dark: #0d0f12;
    --color-bg-card: #161920;
    --color-bg-card-hover: #1e222c;
    --color-glass-bg: rgba(22, 25, 32, 0.7);
    --color-glass-border: rgba(212, 175, 55, 0.15);
    --color-glass-border-hover: rgba(212, 175, 55, 0.4);
    
    --color-primary: #d4af37; /* Dourado Ouro */
    --color-primary-hover: #f3cf65;
    --color-primary-dark: #aa851a;
    
    --color-whatsapp: #25d366;
    --color-whatsapp-hover: #20ba5a;
    
    --color-text-main: #f8fafc;
    --color-text-muted: #94a3b8;
    --color-text-dark: #0f172a;
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #c5a059 0%, #d4af37 50%, #f3cf65 100%);
    --gradient-dark: linear-gradient(180deg, #161920 0%, #0d0f12 100%);
    --gradient-glow: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 70%);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --max-width: 1200px;
    --border-radius: 12px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-center { text-align: center; }
.gold-text { color: var(--color-primary); }

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

p {
    color: var(--color-text-muted);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #d4af37 0%, #f3cf65 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-instagram {
    background: transparent;
    color: var(--color-text-main);
    border: 1px solid rgba(255, 255, 255, 0.2);
    gap: 0.5rem;
}

.btn-instagram:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: #cc2366;
    color: var(--color-text-main);
    box-shadow: 0 4px 15px rgba(204, 35, 102, 0.15);
    transform: translateY(-2px);
}

.instagram-icon-btn {
    width: 18px;
    height: 18px;
    color: #e6683c;
    transition: var(--transition-smooth);
}

.btn-instagram:hover .instagram-icon-btn {
    color: #cc2366;
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: #fff;
    width: 100%;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-nav {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 4px;
}

.btn-nav:hover {
    background: var(--gradient-gold);
    color: var(--color-text-dark);
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

.btn-block {
    width: 100%;
}

.icon-whatsapp {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 15, 18, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
    padding: 1.25rem 0;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: var(--color-bg-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
}

.logo-icon {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    outline: none;
}

.hamburger-bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-text-main);
    transition: var(--transition-smooth);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    position: relative;
    padding: 9rem 0 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: var(--gradient-glow);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.tagline {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Hero Interactive Card */
.hero-visual {
    position: relative;
}

.hero-card-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 60%);
    filter: blur(10px);
    z-index: 0;
}

.hero-card {
    background: var(--color-glass-bg);
    border: 1px solid var(--color-glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.hero-card:hover {
    border-color: var(--color-glass-border-hover);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.08);
}

.card-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ef4444;
}

.dots span:nth-child(2) { background-color: #eab308; }
.dots span:nth-child(3) { background-color: #22c55e; }

.card-header-title {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.card-body {
    padding: 2rem;
}

.badge-online {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 211, 102, 0.1);
    color: var(--color-whatsapp);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.dot-online {
    width: 6px;
    height: 6px;
    background-color: var(--color-whatsapp);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.card-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.card-text {
    font-size: 0.925rem;
    margin-bottom: 1.5rem;
}

/* ==========================================================================
   PRACTICE AREAS / ESPECIALIDADES
   ========================================================================== */
.practice-areas {
    padding: 6rem 0;
    background: var(--gradient-dark);
}

.section-header {
    margin-bottom: 4rem;
}

.section-subtitle {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.practice-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.practice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition-smooth);
}

.practice-card:hover {
    background: var(--color-bg-card-hover);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.1);
}

.practice-card:hover::before {
    opacity: 1;
}

.practice-icon {
    width: 44px;
    height: 44px;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.practice-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.practice-card-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 6rem 0;
    background-color: var(--color-bg-dark);
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-glow {
    position: absolute;
    inset: -15px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 65%);
    z-index: 0;
}

.about-image {
    width: 100%;
    border-radius: var(--border-radius);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    position: relative;
    z-index: 1;
    background-color: var(--color-bg-card);
}

.about-content {
    position: relative;
    z-index: 2;
}

.lead-text {
    font-size: 1.15rem;
    color: var(--color-text-main);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.about-badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.oab-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.instagram-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(204, 35, 102, 0.05);
    border: 1px solid rgba(204, 35, 102, 0.3);
    color: #cc2366;
    padding: 0.35rem 0.9rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
}

.instagram-badge:hover {
    background: rgba(204, 35, 102, 0.1);
    border-color: #cc2366;
    box-shadow: 0 4px 10px rgba(204, 35, 102, 0.15);
    transform: translateY(-1px);
}

.instagram-icon-badge {
    width: 14px;
    height: 14px;
}

.instagram-nav-link {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    margin-right: 1.5rem;
}

.instagram-nav-link:hover {
    color: #cc2366;
    transform: scale(1.15);
}

.instagram-icon-small {
    width: 20px;
    height: 20px;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.about-text {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
}

.badge-icon {
    color: var(--color-primary);
    font-weight: bold;
}

/* ==========================================================================
   LEAD CAPTURE FORM SECTION
   ========================================================================== */
.lead-section {
    padding: 6rem 0;
    position: relative;
    background: var(--gradient-dark);
}

.lead-bg-glow {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 50%;
    height: 85%;
    background: var(--gradient-glow);
    pointer-events: none;
    z-index: 0;
}

.lead-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
    align-items: center;
}

.lead-info .section-title {
    margin-bottom: 1.5rem;
}

.lead-info .lead-description {
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.contact-item h4 {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--color-text-main);
    font-weight: 600;
}

/* Form Styles */
.lead-form-wrapper {
    background: rgba(22, 25, 32, 0.6);
    border: 1px solid var(--color-glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    padding: 3rem 2.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

label {
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--color-text-main);
    letter-spacing: 0.02em;
}

.form-control {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 0.85rem 1rem;
    color: var(--color-text-main);
    transition: var(--transition-smooth);
    width: 100%;
    outline: none;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
    background-color: rgba(255, 255, 255, 0.04);
}

select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10L12 15L17 10' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.25rem;
    cursor: pointer;
}

select.form-control option {
    background-color: var(--color-bg-card);
    color: var(--color-text-main);
}

.text-area {
    min-height: 110px;
    resize: vertical;
}

.form-terms {
    font-size: 0.725rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 1.25rem;
}

/* Validation states */
.form-group.error .form-control {
    border-color: #ef4444;
}

.error-msg {
    color: #ef4444;
    font-size: 0.75rem;
    display: none;
}

.form-group.error .error-msg {
    display: block;
}

/* Submit loading state */
#btn-submit-lead {
    position: relative;
    height: 48px;
}

#btn-submit-lead.loading .btn-text {
    opacity: 0;
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(15, 23, 42, 0.2);
    border-top: 2px solid var(--color-text-dark);
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 10px);
    top: calc(50% - 10px);
    animation: spin 0.8s linear infinite;
}

#btn-submit-lead.loading .spinner {
    display: block;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 6rem 0;
    background: var(--color-bg-dark);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--color-bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(212, 175, 55, 0.15);
}

.faq-trigger {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    color: var(--color-text-main);
    text-align: left;
    cursor: pointer;
    outline: none;
}

.faq-question {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* FAQ Active state */
.faq-item.active {
    border-color: rgba(212, 175, 55, 0.25);
    background-color: rgba(22, 25, 32, 0.9);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #08090b;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 5rem 0 2rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-desc {
    font-size: 0.9rem;
    margin-top: 1.25rem;
    max-width: 280px;
}

.footer h4 {
    color: var(--color-primary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 2rem;
}

.oab-disclaimer {
    font-size: 0.725rem;
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto 1rem;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (Requisitado)
   ========================================================================== */
.float-whatsapp {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--color-whatsapp);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.float-whatsapp svg {
    width: 32px;
    height: 32px;
}

.float-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.float-whatsapp::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid var(--color-whatsapp);
    opacity: 0.6;
    animation: ringPulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
    pointer-events: none;
}

/* WhatsApp Tooltip */
.tooltip-whatsapp {
    position: absolute;
    right: 75px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-glass-border);
    color: var(--color-text-main);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-smooth);
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

.float-whatsapp:hover .tooltip-whatsapp {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background: rgba(22, 25, 32, 0.95);
    border: 1px solid var(--color-primary);
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
    padding: 1.25rem;
    width: 380px;
    display: flex;
    gap: 1rem;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(-120%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.5s ease;
    pointer-events: none;
}

.toast-container.show {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.toast-icon {
    width: 24px;
    height: 24px;
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.toast-body {
    flex-grow: 1;
}

.toast-title {
    display: block;
    color: var(--color-text-main);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.toast-desc {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.toast-close {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    align-self: flex-start;
    line-height: 1;
}

.toast-close:hover {
    color: var(--color-text-main);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.5; }
}

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================================
   TOPICS / SLIDER SECTION
   ========================================================================== */
.topics-section {
    padding: 6rem 0;
    background-color: var(--color-bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.tabs-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-muted);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    outline: none;
}

.tab-btn:hover {
    color: var(--color-primary);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.03);
}

.tab-btn.active {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
}

.tab-content-wrapper {
    position: relative;
}

.tab-panel {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.tab-panel.active {
    display: block;
    opacity: 1;
}

.panel-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.panel-info {
    display: flex;
    flex-direction: column;
}

.panel-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.panel-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.panel-desc {
    font-size: 1.15rem;
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-style: italic;
}

.panel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.panel-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.panel-list li::before {
    content: '•';
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.attention-box {
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-left: 4px solid var(--color-primary);
    padding: 1.25rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
    display: flex;
    gap: 1rem;
}

.attention-icon {
    width: 22px;
    height: 22px;
    background: var(--color-primary);
    color: var(--color-text-dark);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.panel-image {
    position: relative;
}

.slide-graphic {
    width: 100%;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
}

.slide-graphic:hover {
    transform: scale(1.02);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.08);
}

.btn-tab-action {
    margin-top: 1.5rem;
    align-self: flex-start;
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
}

/* FGTS Guide Accordion */
.fgts-guide-wrapper {
    margin: 1.5rem 0 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    overflow: hidden;
}

.fgts-guide-trigger {
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    transition: var(--transition-smooth);
}

.fgts-guide-trigger:hover {
    background: rgba(212, 175, 55, 0.03);
}

.fgts-guide-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(0, 0, 0, 0.1);
}

.fgts-steps {
    padding: 1.25rem 1.5rem 1.25rem 2.25rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.fgts-steps li {
    line-height: 1.5;
}

.fgts-guide-wrapper.active .fgts-guide-content {
    max-height: 350px;
}

.fgts-guide-wrapper.active .fgts-guide-trigger {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* ==========================================================================
   QUIZ SECTION (SIMULADOR)
   ========================================================================== */
.quiz-section {
    padding: 6rem 0;
    position: relative;
    background: var(--color-bg-dark);
}

.quiz-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: var(--gradient-glow);
    pointer-events: none;
    z-index: 0;
}

.quiz-card-wrapper {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quiz-card {
    background: rgba(22, 25, 32, 0.75);
    border: 1px solid var(--color-glass-border);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.quiz-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.quiz-progress-fill {
    display: block;
    height: 100%;
    background: var(--gradient-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quiz-step-indicator {
    font-size: 0.75rem;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2.5rem;
}

.quiz-question-step {
    display: none;
    flex-direction: column;
    flex-grow: 1;
    animation: fadeIn 0.4s ease;
}

.quiz-question-step.active {
    display: flex;
}

.quiz-question-title {
    font-size: 1.45rem;
    color: var(--color-text-main);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}

.quiz-question-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.quiz-opt-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-main);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    text-align: left;
    transition: var(--transition-smooth);
    outline: none;
}

.quiz-opt-btn:hover {
    background: rgba(212, 175, 55, 0.03);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(4px);
}

/* Quiz Result styles */
.quiz-result-header {
    text-align: center;
    margin-bottom: 2rem;
}

.quiz-result-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

.quiz-result-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.quiz-result-desc {
    font-size: 1.1rem;
    color: var(--color-primary);
    font-style: italic;
}

.quiz-summary-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2.5rem;
}

.quiz-summary-box h4 {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.quiz-summary-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quiz-summary-box li {
    font-size: 0.875rem;
    color: var(--color-text-main);
}

.quiz-result-actions {
    margin-top: auto;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--gradient-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.testimonial-card:hover {
    background: var(--color-bg-card-hover);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(212, 175, 55, 0.08);
}

.t-stars {
    color: var(--color-primary);
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.1em;
}

.t-text {
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
}

.t-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.t-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.t-user h4 {
    font-size: 0.95rem;
    color: var(--color-text-main);
    margin-bottom: 0.15rem;
    font-family: var(--font-body);
}

.t-user span {
    font-size: 0.775rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   RESPONSIVENESS (MOBILE FIRST)
   ========================================================================== */
@media (max-width: 992px) {
    /* Base typography */
    html { font-size: 15px; }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding-bottom: 2rem;
    }
    
    .hero-subtitle {
        margin: 0 auto 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    
    .panel-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .lead-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-info {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Menu Navigation for Mobile */
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: rgba(13, 15, 18, 0.98);
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    /* Cross symbol hamburger toggle active */
    .navbar.active-nav #menu-hamburger .hamburger-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .navbar.active-nav #menu-hamburger .hamburger-bar:nth-child(2) {
        opacity: 0;
    }
    
    .navbar.active-nav #menu-hamburger .hamburger-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .btn-nav {
        display: none; /* Hide header CTA button on small tablets */
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-info {
        grid-column: span 1;
    }
    
    .toast-container {
        width: calc(100% - 3rem);
        left: 1.5rem;
        bottom: 1.5rem;
    }
    
    .float-whatsapp {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .lead-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   SECRET ADMIN MODAL DASHBOARD (CRM DE LEADS)
   ========================================================================== */
.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(6, 8, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
}

.admin-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.admin-modal-content {
    background: linear-gradient(135deg, rgba(22, 25, 32, 0.9) 0%, rgba(13, 15, 18, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 1000px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.08);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.admin-modal.show .admin-modal-content {
    transform: scale(1);
}

.admin-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, 0.15);
}

.admin-modal-header h3 {
    font-family: var(--font-body);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0;
    letter-spacing: 0.03em;
}

.admin-modal-close {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    font-size: 2.25rem;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition-smooth);
    padding: 0;
}

.admin-modal-close:hover {
    color: #ef4444;
    transform: rotate(90deg);
}

.admin-modal-body {
    padding: 2rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.admin-modal-intro {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.admin-controls {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1.5rem;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.25rem;
    border-radius: 8px;
}

.admin-actions-row {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.admin-table-wrapper {
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow-x: auto;
    background-color: rgba(0, 0, 0, 0.2);
    position: relative;
    min-height: 200px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    text-align: left;
}

.admin-table th {
    background-color: rgba(13, 15, 18, 0.85);
    color: var(--color-primary);
    font-weight: 600;
    padding: 1rem 1.25rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    font-family: var(--font-body);
    white-space: nowrap;
}

.admin-table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--color-text-main);
    max-width: 300px;
    word-wrap: break-word;
    vertical-align: top;
}

.admin-table tr {
    transition: var(--transition-smooth);
}

.admin-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.01);
}

.admin-table tr:hover {
    background-color: rgba(212, 175, 55, 0.04);
}

.admin-empty-state {
    padding: 3.5rem 2rem;
    text-align: center;
    color: var(--color-text-muted);
    font-style: italic;
    font-size: 0.95rem;
}

/* Scrollbar premium para modal e tabela */
.admin-modal-body::-webkit-scrollbar,
.admin-table-wrapper::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.admin-modal-body::-webkit-scrollbar-track,
.admin-table-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
}

.admin-modal-body::-webkit-scrollbar-thumb,
.admin-table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.25);
    border-radius: 4px;
}

.admin-modal-body::-webkit-scrollbar-thumb:hover,
.admin-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.4);
}

/* Responsividade do modal */
@media (max-width: 768px) {
    .admin-controls {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .admin-actions-row {
        justify-content: stretch;
    }
    
    .admin-actions-row button {
        flex: 1;
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
    
    .admin-modal-body {
        padding: 1.25rem;
    }
    
    .admin-modal-header {
        padding: 1rem 1.25rem;
    }
}

