/*
Theme Name: FitLocal
Theme URI: https://fitlocal.com.br
Author: Dev WordPress
Description: Diretório de Personal Trainers, Academias e Estúdios
Version: 2.0.0
Text Domain: fitlocal
*/

/* ========================================
   DESIGN SYSTEM - VARIÁVEIS
======================================== */
:root {
    /* Cores Principais - BuscaFit Opção 2 */
    --fp-primary: #7CB342;
    --fp-primary-hover: #689F38;
    --fp-primary-light: #E8F5E9;
    
    /* Cor Secundária */
    --fp-secondary: #37474F;
    --fp-secondary-hover: #263238;
    --fp-secondary-light: #ECEFF1;
    
    /* Cores Neutras */
    --fp-gray-50: #f9fafb;
    --fp-gray-100: #f3f4f6;
    --fp-gray-200: #e5e7eb;
    --fp-gray-300: #d1d5db;
    --fp-gray-400: #9ca3af;
    --fp-gray-500: #6b7280;
    --fp-gray-600: #4b5563;
    --fp-gray-700: #374151;
    --fp-gray-800: #1f2937;
    --fp-gray-900: #111827;
    
    /* Cores Semânticas */
    --fp-success: #10b981;
    --fp-success-light: #d1fae5;
    --fp-warning: #f59e0b;
    --fp-warning-light: #fef3c7;
    --fp-error: #ef4444;
    --fp-error-light: #fee2e2;
    --fp-info: #3b82f6;
    
    /* WhatsApp */
    --fp-whatsapp: #25d366;
    --fp-whatsapp-hover: #128c7e;
    
    /* Tipografia */
    --fp-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --fp-font-display: 'Montserrat', sans-serif;
    
    /* Espaçamento */
    --fp-space-1: 0.25rem;
    --fp-space-2: 0.5rem;
    --fp-space-3: 0.75rem;
    --fp-space-4: 1rem;
    --fp-space-5: 1.25rem;
    --fp-space-6: 1.5rem;
    --fp-space-8: 2rem;
    --fp-space-10: 2.5rem;
    --fp-space-12: 3rem;
    --fp-space-16: 4rem;
    --fp-space-20: 5rem;
    
    /* Border Radius */
    --fp-radius-sm: 6px;
    --fp-radius: 8px;
    --fp-radius-md: 12px;
    --fp-radius-lg: 16px;
    --fp-radius-xl: 24px;
    --fp-radius-full: 9999px;
    
    /* Sombras */
    --fp-shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --fp-shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --fp-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --fp-shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --fp-shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --fp-shadow-xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    
    /* Transições */
    --fp-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --fp-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --fp-transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--fp-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--fp-gray-700);
    background-color: var(--fp-gray-50);
}

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

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

ul, ol {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* ========================================
   TIPOGRAFIA
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--fp-font-display);
    font-weight: 600;
    color: var(--fp-gray-900);
    line-height: 1.3;
}

h1 { font-size: 2.25rem; letter-spacing: -0.025em; }
h2 { font-size: 1.875rem; letter-spacing: -0.025em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }

p { color: var(--fp-gray-600); }

.fp-text-sm { font-size: 0.875rem; }
.fp-text-xs { font-size: 0.75rem; }
.fp-text-lg { font-size: 1.125rem; }

.fp-text-muted { color: var(--fp-gray-500); }
.fp-text-center { text-align: center; }

/* ========================================
   LAYOUT
======================================== */
.fp-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--fp-space-6);
}

.fp-container--sm { max-width: 640px; }
.fp-container--md { max-width: 768px; }
.fp-container--lg { max-width: 1024px; }

.fp-section {
    padding: var(--fp-space-16) 0;
}

.fp-section--sm {
    padding: var(--fp-space-10) 0;
}

/* ========================================
   HEADER
======================================== */
.fp-header {
    background: white;
    border-bottom: 1px solid var(--fp-gray-200);
    position: sticky;
    top: 0;
    z-index: 100;
}

.fp-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.fp-header__logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    letter-spacing: -1px;
    text-decoration: none;
}

.fp-header__logo .logo-busca {
    color: var(--fp-primary);
    font-weight: 900;
}

.fp-header__logo .logo-fit {
    color: var(--fp-secondary);
    font-weight: 400;
}

.fp-header__nav {
    display: flex;
    align-items: center;
    gap: var(--fp-space-8);
}

.fp-header__nav a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--fp-gray-600);
    padding: var(--fp-space-2) 0;
    position: relative;
}

.fp-header__nav a:hover,
.fp-header__nav a.active {
    color: var(--fp-gray-900);
}

.fp-header__nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fp-primary);
    transition: width var(--fp-transition);
}

.fp-header__nav a:hover::after,
.fp-header__nav a.active::after {
    width: 100%;
}

.fp-header__actions {
    display: flex;
    align-items: center;
    gap: var(--fp-space-3);
}

/* Mobile Menu Toggle */
.fp-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--fp-space-2);
    cursor: pointer;
    border-radius: var(--fp-radius-sm);
}

.fp-menu-toggle:hover {
    background: var(--fp-gray-100);
}

.fp-menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--fp-gray-600);
    border-radius: 1px;
    transition: var(--fp-transition);
}

/* ========================================
   BOTÕES
======================================== */
.fp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--fp-space-2);
    padding: var(--fp-space-3) var(--fp-space-5);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--fp-radius);
    cursor: pointer;
    transition: all var(--fp-transition);
    white-space: nowrap;
}

.fp-btn--primary {
    background: var(--fp-primary);
    color: white;
}

.fp-btn--primary:hover {
    background: var(--fp-primary-hover);
    transform: translateY(-1px);
    box-shadow: var(--fp-shadow);
}

.fp-btn--secondary {
    background: var(--fp-gray-900);
    color: white;
}

.fp-btn--secondary:hover {
    background: var(--fp-gray-800);
}

.fp-btn--outline {
    background: white;
    color: var(--fp-gray-700);
    border: 1px solid var(--fp-gray-300);
}

.fp-btn--outline:hover {
    background: var(--fp-gray-50);
    border-color: var(--fp-gray-400);
}

.fp-btn--ghost {
    background: transparent;
    color: var(--fp-gray-600);
}

.fp-btn--ghost:hover {
    background: var(--fp-gray-100);
    color: var(--fp-gray-900);
}

.fp-btn--success {
    background: var(--fp-success);
    color: white;
}

.fp-btn--success:hover {
    background: #059669;
}

.fp-btn--whatsapp {
    background: var(--fp-whatsapp);
    color: white;
}

.fp-btn--whatsapp:hover {
    background: var(--fp-whatsapp-hover);
}

.fp-btn--sm {
    padding: var(--fp-space-2) var(--fp-space-4);
    font-size: 0.875rem;
}

.fp-btn--lg {
    padding: var(--fp-space-4) var(--fp-space-8);
    font-size: 1rem;
}

.fp-btn--block {
    width: 100%;
}

.fp-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ========================================
   CARDS
======================================== */
.fp-card {
    background: white;
    border-radius: var(--fp-radius-lg);
    border: 1px solid var(--fp-gray-200);
    overflow: hidden;
    transition: all var(--fp-transition);
}

.fp-card:hover {
    border-color: var(--fp-gray-300);
    box-shadow: var(--fp-shadow-md);
    transform: translateY(-4px);
}

.fp-card__image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--fp-gray-100);
}

.fp-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--fp-transition-slow);
}

.fp-card:hover .fp-card__image img {
    transform: scale(1.05);
}

.fp-card__badges {
    position: absolute;
    top: var(--fp-space-3);
    left: var(--fp-space-3);
    display: flex;
    flex-direction: column;
    gap: var(--fp-space-2);
}

.fp-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--fp-space-1);
    padding: var(--fp-space-1) var(--fp-space-3);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--fp-radius-full);
    backdrop-filter: blur(8px);
}

.fp-badge--featured {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.fp-badge--verified {
    background: rgba(16, 185, 129, 0.9);
    color: white;
}

.fp-badge--online {
    background: rgba(99, 102, 241, 0.9);
    color: white;
}

.fp-badge--new {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.fp-card__body {
    padding: var(--fp-space-5);
}

.fp-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--fp-gray-900);
    margin-bottom: var(--fp-space-1);
    display: flex;
    align-items: center;
    gap: var(--fp-space-2);
}

.fp-card__subtitle {
    font-size: 0.875rem;
    color: var(--fp-primary);
    font-weight: 500;
    margin-bottom: var(--fp-space-2);
}

.fp-card__location {
    display: flex;
    align-items: center;
    gap: var(--fp-space-1);
    font-size: 0.875rem;
    color: var(--fp-gray-500);
    margin-bottom: var(--fp-space-4);
}

.fp-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--fp-space-4);
    border-top: 1px solid var(--fp-gray-100);
}

.fp-card__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fp-gray-900);
}

.fp-card__price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--fp-gray-500);
}

.fp-card__actions {
    display: flex;
    gap: var(--fp-space-2);
}

/* ========================================
   GRID
======================================== */
.fp-grid {
    display: grid;
    gap: var(--fp-space-6);
}

.fp-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.fp-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.fp-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.fp-grid--auto {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

/* ========================================
   FORMULÁRIOS
======================================== */
.fp-form-group {
    margin-bottom: var(--fp-space-5);
}

.fp-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--fp-gray-700);
    margin-bottom: var(--fp-space-2);
}

.fp-form-control {
    width: 100%;
    padding: var(--fp-space-3) var(--fp-space-4);
    font-size: 0.9375rem;
    color: var(--fp-gray-900);
    background: white;
    border: 1px solid var(--fp-gray-300);
    border-radius: var(--fp-radius);
    transition: all var(--fp-transition);
}

.fp-form-control:focus {
    border-color: var(--fp-primary);
    box-shadow: 0 0 0 3px var(--fp-primary-light);
}

.fp-form-control::placeholder {
    color: var(--fp-gray-400);
}

select.fp-form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

textarea.fp-form-control {
    resize: vertical;
    min-height: 100px;
}

/* ========================================
   HERO
======================================== */
.fp-hero {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    padding: 100px 0 80px;
    overflow: hidden;
}

.fp-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.fp-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(55, 71, 79, 0.92) 0%, rgba(38, 50, 56, 0.95) 100%);
}

.fp-hero .fp-container {
    position: relative;
    z-index: 2;
}

.fp-hero__content {
    text-align: center;
    margin-bottom: 40px;
}

.fp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 179, 66, 0.2);
    border: 1px solid rgba(124, 179, 66, 0.4);
    color: #9CCC65;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.fp-hero__badge i {
    font-size: 0.75rem;
}

.fp-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    line-height: 1.15;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fp-hero__subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.fp-hero__search {
    max-width: 560px;
    margin: 0 auto 40px;
}

.fp-hero__form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 60px;
    padding: 6px 6px 6px 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.fp-hero__input-wrap {
    flex: 1;
    min-width: 0;
}

.fp-hero__input-wrap + .fp-hero__input-wrap {
    border-left: 1px solid var(--fp-gray-200);
}

.fp-hero__input-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
}

.fp-hero__input-group i {
    color: var(--fp-primary);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.fp-hero__input-group select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.9375rem;
    color: var(--fp-gray-700);
    outline: none;
    font-family: inherit;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-width: 0;
}

.fp-hero__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--fp-primary);
    color: #fff;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.fp-hero__btn:hover {
    background: var(--fp-primary-hover);
    transform: translateY(-1px);
}

/* Autocomplete */
.fp-hero__input-group input[type="text"] {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.9375rem;
    color: var(--fp-gray-700);
    outline: none;
    font-family: inherit;
    min-width: 0;
}

.fp-hero__input-group input[type="text"]::placeholder {
    color: var(--fp-gray-400);
}

/* Botão X limpar */
.fp-input-clear {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--fp-gray-400);
    transition: color 0.15s ease;
    flex-shrink: 0;
    padding: 0;
}

.fp-input-clear:hover {
    color: var(--fp-gray-600);
}

/* Dropdown */
.fp-autocomplete {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    max-height: 320px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    padding: 8px 0;
}

.fp-autocomplete.active {
    display: block;
}

/* Item simples */
.fp-autocomplete__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s ease;
    font-size: 0.9375rem;
    color: var(--fp-gray-700);
}

.fp-autocomplete__item:hover,
.fp-autocomplete__item.highlighted {
    background: var(--fp-gray-50);
}

.fp-autocomplete__item i {
    color: var(--fp-primary);
    font-size: 0.875rem;
    width: 16px;
    text-align: center;
}

.fp-autocomplete__item strong {
    color: var(--fp-primary);
    font-weight: 600;
}

/* Empty/Loading */
.fp-autocomplete__empty,
.fp-autocomplete__loading {
    padding: 24px 16px;
    text-align: center;
    color: var(--fp-gray-400);
    font-size: 0.875rem;
}

.fp-autocomplete__loading i {
    margin-right: 8px;
    color: var(--fp-primary);
}

.fp-hero__trust {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.fp-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
}

.fp-hero__trust-item i {
    color: var(--fp-primary);
}

/* ========================================
   TABS DE NAVEGAÇÃO (HOME EXPANDIDA)
======================================== */
.fp-tabs-section {
    padding: 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.fp-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.fp-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 16px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--fp-gray-700);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

.fp-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    color: var(--fp-primary);
}

.fp-tab i {
    font-size: 1.125rem;
    color: var(--fp-primary);
}

@media (max-width: 768px) {
    .fp-tabs {
        flex-direction: column;
        padding: 0 20px;
    }
    
    .fp-tab {
        justify-content: center;
    }
}

/* ========================================
   CATEGORIAS
======================================== */
.fp-categories {
    padding: 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.fp-categories__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.fp-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 24px 16px;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.2s ease;
}

.fp-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.fp-category-card__icon {
    width: 48px;
    height: 48px;
    background: var(--fp-primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fp-primary);
    font-size: 1.25rem;
    transition: all 0.2s ease;
}

.fp-category-card:hover .fp-category-card__icon {
    background: var(--fp-primary);
    color: #fff;
}

.fp-category-card span {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--fp-gray-700);
}

.fp-category-card--all {
    background: var(--fp-secondary);
}

.fp-category-card--all .fp-category-card__icon {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.fp-category-card--all:hover .fp-category-card__icon {
    background: rgba(255,255,255,0.25);
}

.fp-category-card--all span {
    color: #fff;
}

/* ========================================
   SEÇÃO HEADER
======================================== */
.fp-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 24px;
}

.fp-section__header--center {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.fp-section__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--fp-gray-900);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.fp-section__subtitle {
    font-size: 1rem;
    color: var(--fp-gray-500);
}

.fp-section--gray {
    background: var(--fp-gray-50);
}

/* ========================================
   COMO FUNCIONA - STEPS
======================================== */
.fp-how-it-works {
    padding: 80px 0;
    background: #fff;
}

.fp-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.fp-step {
    flex: 1;
    text-align: center;
    position: relative;
    max-width: 260px;
}

.fp-step__number {
    position: absolute;
    top: -8px;
    right: 50%;
    transform: translateX(60px);
    width: 28px;
    height: 28px;
    background: var(--fp-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.fp-step__icon {
    width: 80px;
    height: 80px;
    background: var(--fp-primary-light);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--fp-primary);
}

.fp-step__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--fp-gray-900);
    margin-bottom: 8px;
}

.fp-step__desc {
    font-size: 0.9375rem;
    color: var(--fp-gray-500);
    line-height: 1.6;
}

.fp-step__connector {
    width: 60px;
    height: 2px;
    background: var(--fp-gray-200);
    margin-top: 40px;
    flex-shrink: 0;
}

/* ========================================
   BENEFÍCIOS
======================================== */
.fp-benefits {
    padding: 100px 0;
    background: #fff;
}

.fp-benefits__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fp-badge {
    display: inline-block;
    background: var(--fp-primary-light);
    color: var(--fp-primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.fp-badge--light {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.fp-benefits__title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--fp-gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.fp-benefits__desc {
    font-size: 1rem;
    color: var(--fp-gray-500);
    margin-bottom: 32px;
    line-height: 1.7;
}

.fp-benefits__list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.fp-benefits__list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--fp-gray-100);
}

.fp-benefits__list li:last-child {
    border-bottom: none;
}

.fp-benefits__list li i {
    width: 24px;
    height: 24px;
    background: var(--fp-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.fp-benefits__list li strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--fp-gray-900);
    margin-bottom: 2px;
}

.fp-benefits__list li span {
    font-size: 0.875rem;
    color: var(--fp-gray-500);
}

.fp-benefits__image {
    position: relative;
}

.fp-benefits__image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.fp-benefits__stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
}

.fp-stat-card {
    background: #fff;
    padding: 20px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.fp-stat-card strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--fp-primary);
    line-height: 1;
}

.fp-stat-card span {
    font-size: 0.8125rem;
    color: var(--fp-gray-500);
}

/* ========================================
   DEPOIMENTOS
======================================== */
.fp-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.fp-testimonial {
    background: #fff;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.fp-testimonial__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #FBBF24;
    font-size: 0.875rem;
}

.fp-testimonial__text {
    font-size: 1rem;
    color: var(--fp-gray-700);
    line-height: 1.7;
    margin-bottom: 20px;
}

.fp-testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fp-testimonial__avatar {
    width: 44px;
    height: 44px;
    background: var(--fp-primary-light);
    color: var(--fp-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.fp-testimonial__author strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--fp-gray-900);
}

.fp-testimonial__author span {
    font-size: 0.8125rem;
    color: var(--fp-gray-500);
}
}

.fp-hero__badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.9);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.15);
}

.fp-hero__title {
    font-size: 3.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.fp-hero__subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.fp-hero--sm {
    min-height: auto;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--fp-secondary) 0%, #263238 100%);
}

.fp-hero--sm .fp-hero__bg,
.fp-hero--sm .fp-hero__overlay {
    display: none;
}

.fp-hero--sm .fp-hero__content {
    margin-bottom: 0;
}

.fp-hero--sm .fp-hero__title {
    font-size: 2.25rem;
    color: #fff;
    margin-bottom: 8px;
}

.fp-hero--sm .fp-hero__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
}

/* ========================================
   CTA
======================================== */
.fp-cta {
    background: linear-gradient(135deg, var(--fp-secondary) 0%, #263238 100%);
    padding: 80px 0;
}

.fp-cta__content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.fp-cta__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.fp-cta__desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.fp-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.fp-cta__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
}

.fp-cta__note i {
    color: var(--fp-primary);
}

.fp-btn--white {
    background: #fff;
    color: var(--fp-secondary);
}

.fp-btn--white:hover {
    background: var(--fp-gray-100);
}

.fp-btn--outline-white {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.3);
}

.fp-btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* ========================================
   FOOTER
======================================== */
.fp-footer {
    background: var(--fp-gray-900);
    color: var(--fp-gray-400);
    padding: var(--fp-space-16) 0 var(--fp-space-8);
}

.fp-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--fp-space-12);
    margin-bottom: var(--fp-space-12);
}

.fp-footer__brand {
    max-width: 280px;
}

.fp-footer__logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    letter-spacing: -1px;
    margin-bottom: var(--fp-space-4);
}

.fp-footer__logo .logo-busca {
    color: var(--fp-primary);
    font-weight: 900;
}

.fp-footer__logo .logo-fit {
    color: #fff;
    font-weight: 400;
}

.fp-footer__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.fp-footer__title {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--fp-space-4);
}

.fp-footer__links li {
    margin-bottom: var(--fp-space-3);
}

.fp-footer__links a {
    font-size: 0.9375rem;
    transition: color var(--fp-transition);
}

.fp-footer__links a:hover {
    color: white;
}

.fp-footer__bottom {
    padding-top: var(--fp-space-8);
    border-top: 1px solid var(--fp-gray-800);
    text-align: center;
    font-size: 0.875rem;
}

/* ========================================
   ALERTS
======================================== */
.fp-alert {
    display: flex;
    align-items: flex-start;
    gap: var(--fp-space-3);
    padding: var(--fp-space-4);
    border-radius: var(--fp-radius);
    margin-bottom: var(--fp-space-4);
}

.fp-alert--success {
    background: var(--fp-success-light);
    color: #065f46;
}

.fp-alert--error {
    background: var(--fp-error-light);
    color: #991b1b;
}

.fp-alert--warning {
    background: var(--fp-warning-light);
    color: #92400e;
}

.fp-alert--info {
    background: #dbeafe;
    color: #1e40af;
}

/* ========================================
   LOADING
======================================== */
.fp-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--fp-space-10);
}

.fp-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--fp-gray-200);
    border-top-color: var(--fp-primary);
    border-radius: 50%;
    animation: fp-spin 0.8s linear infinite;
}

@keyframes fp-spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   EMPTY STATE
======================================== */
.fp-empty {
    text-align: center;
    padding: var(--fp-space-16) var(--fp-space-6);
    background: white;
    border-radius: var(--fp-radius-lg);
    border: 1px dashed var(--fp-gray-300);
}

.fp-empty__icon {
    font-size: 3rem;
    margin-bottom: var(--fp-space-4);
}

.fp-empty__title {
    margin-bottom: var(--fp-space-2);
}

.fp-empty__desc {
    margin-bottom: var(--fp-space-6);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   UTILITIES
======================================== */
.fp-mt-1 { margin-top: var(--fp-space-1); }
.fp-mt-2 { margin-top: var(--fp-space-2); }
.fp-mt-4 { margin-top: var(--fp-space-4); }
.fp-mt-6 { margin-top: var(--fp-space-6); }
.fp-mt-8 { margin-top: var(--fp-space-8); }

.fp-mb-1 { margin-bottom: var(--fp-space-1); }
.fp-mb-2 { margin-bottom: var(--fp-space-2); }
.fp-mb-4 { margin-bottom: var(--fp-space-4); }
.fp-mb-6 { margin-bottom: var(--fp-space-6); }
.fp-mb-8 { margin-bottom: var(--fp-space-8); }

.fp-hidden { display: none !important; }

/* ========================================
   RESPONSIVO
======================================== */
@media (max-width: 1024px) {
    .fp-grid--3,
    .fp-grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fp-footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .fp-header__nav {
        display: none;
    }
    
    .fp-menu-toggle {
        display: flex;
    }
    
    .fp-hero {
        min-height: auto;
        padding: 60px 0 50px;
    }
    
    .fp-hero__title {
        font-size: 1.875rem;
    }
    
    .fp-hero__subtitle {
        font-size: 1rem;
    }
    
    .fp-hero__form {
        flex-direction: column;
        gap: 0;
    }
    
    .fp-hero__input-group {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 16px 20px;
    }
    
    .fp-hero__input-group:last-of-type {
        border-bottom: none;
    }
    
    .fp-hero__btn {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
    
    .fp-hero__stats {
        gap: 24px;
    }
    
    .fp-hero__stat strong {
        font-size: 1.5rem;
    }
    
    .fp-grid--2,
    .fp-grid--3,
    .fp-grid--4 {
        grid-template-columns: 1fr;
    }
    
    .fp-footer__grid {
        grid-template-columns: 1fr;
        gap: var(--fp-space-8);
    }
    
    .fp-section {
        padding: var(--fp-space-10) 0;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .fp-container {
        padding: 0 var(--fp-space-4);
    }
    
    .fp-header__inner {
        height: 60px;
    }
    
    .fp-btn--lg {
        padding: var(--fp-space-3) var(--fp-space-5);
    }
}

/* ========================================
   RESPONSIVO - NOVAS SEÇÕES
======================================== */
@media (max-width: 992px) {
    .fp-categories__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .fp-benefits__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .fp-benefits__image {
        order: -1;
    }
    
    .fp-testimonials {
        grid-template-columns: 1fr;
    }
    
    .fp-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .fp-step__connector {
        display: none;
    }
    
    .fp-step {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .fp-hero {
        min-height: auto;
        padding: 80px 0 100px;
    }
    
    .fp-hero__title {
        font-size: 2rem;
    }
    
    .fp-hero__subtitle {
        font-size: 1rem;
    }
    
    .fp-hero__form {
        flex-direction: column;
        border-radius: 16px;
    }
    
    .fp-hero__btn {
        width: 100%;
        justify-content: center;
        border-radius: 12px;
    }
    
    .fp-hero__trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .fp-categories {
        margin-top: -50px;
    }
    
    .fp-categories__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .fp-category-card {
        padding: 16px 12px;
    }
    
    .fp-category-card__icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .fp-category-card span {
        font-size: 0.75rem;
    }
    
    .fp-section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .fp-section__title {
        font-size: 1.5rem;
    }
    
    .fp-benefits {
        padding: 60px 0;
    }
    
    .fp-benefits__title {
        font-size: 1.75rem;
    }
    
    .fp-benefits__stats {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 24px;
        justify-content: center;
    }
    
    .fp-stat-card {
        padding: 16px 20px;
    }
    
    .fp-stat-card strong {
        font-size: 1.5rem;
    }
    
    .fp-how-it-works {
        padding: 60px 0;
    }
    
    .fp-cta {
        padding: 60px 0;
    }
    
    .fp-cta__title {
        font-size: 1.75rem;
    }
    
    .fp-cta__buttons {
        flex-direction: column;
    }
    
    .fp-cta__buttons .fp-btn {
        width: 100%;
        justify-content: center;
    }
}
