/* =============================================
   ADMINISTRA FÁCIL - CSS PROFISSIONAL
   Design Clean com Padrão Laranja/Branco
   ============================================= */

/* FONTES LOCAIS */
@font-face {
    font-family: 'Ethnocentric';
    src: url('../../fontes/ethnocentric/Ethnocentric-Regular.otf') format('opentype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'DM Sans';
    src: url('../../fontes/DM_Sans/DMSans-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('../../fontes/IBM_Plex_Mono/IBMPlexMono-Regular.ttf') format('truetype');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('../../fontes/IBM_Plex_Mono/IBMPlexMono-Medium.ttf') format('truetype');
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('../../fontes/IBM_Plex_Mono/IBMPlexMono-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: 'IBM Plex Mono';
    src: url('../../fontes/IBM_Plex_Mono/IBMPlexMono-Bold.ttf') format('truetype');
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../../fontes/Roboto/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-display: swap;
}

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta Principal */
    --primary-gold: #dead74;
    --primary-gray: #6f747b;
    --accent-orange: #f59e0b;
    --white: #FFFFFF;
    
    /* Textos */
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6f747b;
    
    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light: #f8f9fa;
    --bg-gray: #e5e7eb;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;
}

html {
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

::selection {
    background: var(--accent-orange);
    color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid var(--accent-orange);
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-brand .logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-brand .logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-brand .logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    font-family: 'Roboto', sans-serif;
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-orange);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gray);
    transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path fill="rgba(245,158,11,0.05)" d="M0,300 Q300,450 600,300 T1200,300 L1200,600 L0,600 Z"/></svg>') no-repeat bottom;
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--accent-orange);
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.hero-cta {
    margin: 3rem 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--accent-orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e08e00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 4rem 0 3rem;
}

.feature-card {
    background: var(--white);
    border: 2px solid var(--bg-gray);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-md);
}

/* PADRÃO ÍCONE LARANJA/BRANCO */
.feature-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e08e00 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.feature-card .icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.target-audience {
    text-align: center;
    margin-top: 3rem;
}

.target-audience h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.audience-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.audience-tag {
    padding: 0.75rem 2rem;
    background: var(--white);
    border: 2px solid var(--accent-orange);
    border-radius: var(--radius-lg);
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.audience-tag:hover {
    background: var(--accent-orange);
    color: var(--white);
}

/* ===== SEÇÕES ===== */
section {
    padding: 80px 0;
}

/* Lazy Loading de Seções */
section.lazy-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

section.lazy-section.loaded {
    opacity: 1;
    transform: translateY(0);
}

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

.section-title {
    font-family: 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-gold));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

/* ===== SOBRE - MVV ===== */
.about {
    background: var(--bg-light);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mission-vision-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mvv-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.mvv-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* PADRÃO ÍCONE LARANJA/BRANCO */
.mvv-item .icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e08e00 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.mvv-item .icon-wrapper i {
    font-size: 2.5rem;
    color: var(--white);
}

.mvv-item h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.mvv-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===== CONSULTOR ===== */
.consultant-profile {
    margin-top: 4rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.consultant-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.consultant-photo {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--primary-gray), var(--primary-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.consultant-info {
    margin-top: 4rem;
}

.consultant-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.consultant-intro {
    color: var(--text-medium);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.consultant-description {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.professional-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-orange);
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.badge-item span {
    font-weight: 600;
    color: var(--text-dark);
}

.certifications {
    margin-top: 3rem;
}

.certifications h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.certification-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.certification-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--bg-gray);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.certification-item:hover {
    border-color: var(--accent-orange);
    box-shadow: var(--shadow-sm);
}

/* PADRÃO ÍCONE LARANJA/BRANCO */
.certification-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e08e00 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.certification-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.certification-text {
    font-weight: 500;
    color: var(--text-medium);
}

.consultant-content {
    margin-top: 2rem;
}

.consultant-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: var(--accent-orange);
    opacity: 0.2;
}

.testimonial-text {
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.client-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange), #e08e00);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.client-details h4 {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.client-details p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.metric-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--accent-orange);
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--accent-orange);
    font-size: 0.9rem;
}

/* ===== SERVIÇOS ===== */
.services {
    background: var(--bg-light);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 1.75rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.services-intro p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.services-intro strong {
    color: var(--accent-orange);
    font-weight: 600;
}

/* Card Horizontal (Principal) */
.service-card-horizontal {
    background: var(--white);
    padding: 2rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border-top: 5px solid var(--accent-orange);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-card-horizontal:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.service-horizontal-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-gray);
}

.service-icon-large {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e08e00 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card-horizontal:hover .service-icon-large {
    transform: scale(1.05) rotate(5deg);
}

.service-icon-large i {
    font-size: 2.2rem;
    color: var(--white);
}

.service-horizontal-header h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.service-horizontal-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: start;
}

.service-column {
    display: flex;
    flex-direction: column;
}

.service-column h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-list-compact {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 2rem;
    align-self: center;
}

.service-list-compact li {
    color: var(--text-medium);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.service-list-compact li::before {
    content: '✓';
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.service-highlight-horizontal {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--accent-orange);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    min-width: 280px;
    max-width: 340px;
    align-self: center;
}

/* Grid para dois cards lado a lado */
.services-grid-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card-half {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border-top: 5px solid var(--accent-orange);
    display: flex;
    flex-direction: column;
}

.service-card-half:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-header {
    margin-bottom: 1.25rem;
    text-align: center;
}

.service-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e08e00 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.35);
    transition: all 0.3s ease;
}

.service-card-half:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card-half h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.service-subtitle {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-radius: var(--radius-lg);
    color: var(--accent-orange);
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.service-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-description {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    text-align: center;
    padding: 0 0.5rem;
}

.service-content h4 {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin: 1.25rem 0 0.85rem;
    font-weight: 600;
    border-bottom: 2px solid var(--bg-gray);
    padding-bottom: 0.5rem;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-list li {
    padding: 0.55rem 0;
    color: var(--text-medium);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.service-list li::before {
    content: '✓';
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.service-highlight {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.03) 100%);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-orange);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: auto;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-orange);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.1rem;
    color: var(--white);
}

.service-highlight h4 {
    color: var(--accent-orange);
    font-size: 0.95rem;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    border: none;
    padding: 0;
}

.service-highlight p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.services-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--white) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-radius: var(--radius-md);
    border: 2px solid var(--accent-orange);
    box-shadow: var(--shadow-md);
}

.services-cta h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-cta p {
    color: var(--text-medium);
    margin-bottom: 1.75rem;
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-lg {
    padding: 1.1rem 2.75rem;
    font-size: 1.1rem;
}

/* ===== METODOLOGIA ===== */
.methodology {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 50%, var(--white) 100%);
    position: relative;
}

.methodology::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(111, 116, 123, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.methodology h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.methodology-steps {
    margin-bottom: 4rem;
}

.methodology-steps h3 {
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

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

.step {
    position: relative;
    padding: 2rem;
    background: var(--white);
    border: 2px solid var(--bg-gray);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-orange);
}

/* PADRÃO ÍCONE LARANJA/BRANCO */
.step-number {
    font-family: 'IBM Plex Mono', monospace;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e08e00 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.step i {
    font-size: 2.5rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.step h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===== PLANOS ===== */
.pricing-table {
    margin-top: 4rem;
}

.pricing-table h3 {
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.plan-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid var(--bg-gray);
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.plan-card.featured {
    border-color: var(--accent-orange);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, var(--white) 100%);
    transform: scale(1.05);
}

.plan-card h4 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.plan-card .duration {
    font-family: 'IBM Plex Mono', monospace;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.plan-card .price {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 2rem;
}

.plan-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-card ul li {
    padding: 0.75rem 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--bg-gray);
}

.plan-card ul li:last-child {
    border-bottom: none;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--accent-orange);
    border: 2px solid var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--accent-orange);
    color: var(--white);
}

/* ===== CASE DE SUCESSO ===== */
.case-success {
    padding: 5rem 0;
    background: var(--white);
    position: relative;
}

.case-success::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.02) 0%, transparent 50%, rgba(111, 116, 123, 0.02) 100%);
    pointer-events: none;
}

.case-content {
    position: relative;
    z-index: 1;
}

.case-situation,
.case-actions,
.case-results {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.case-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e08e00 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.3);
}

.case-icon.success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.case-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.case-situation h3,
.case-actions h3,
.case-results h3 {
    font-size: 2rem;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.case-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 2rem;
}

.case-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.case-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.case-list i {
    color: #ef4444;
    font-size: 1.2rem;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.action-category {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.action-category h4 {
    color: var(--accent-orange);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.action-category ul {
    list-style: none;
}

.action-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-medium);
    position: relative;
}

.action-category li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-weight: bold;
}

.results-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.highlight-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid var(--accent-orange);
    transition: all 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-number {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

/* Classe para todos os números que são métricas */
.metric {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 600;
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 0.5rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e08e00 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon i {
    font-size: 2rem;
    color: var(--white);
}

.highlight-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.case-benefits {
    list-style: none;
    max-width: 800px;
    margin: 2rem auto 0;
}

.case-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.case-benefits i {
    color: #10b981;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.case-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e08e00 100%);
    border-radius: var(--radius-md);
    color: var(--white);
}

.case-cta h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
}

/* ===== RESULTADOS ===== */
.results {
    background: linear-gradient(135deg, #fff9f0 0%, var(--white) 100%);
    position: relative;
}

.results::before {
    content: '';
    position: absolute;
    top: 15%;
    right: 8%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.results h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 4rem;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.result-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.result-item i {
    font-size: 3rem;
    color: var(--accent-orange);
    margin-bottom: 1rem;
}

.result-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.result-item p {
    color: var(--text-medium);
}

.deliverables,
.expected-results {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.deliverables h3,
.expected-results h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.deliverables ul,
.expected-results ul {
    list-style: none;
}

.deliverables li,
.expected-results li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-gray);
}

.deliverables li:last-child,
.expected-results li:last-child {
    border-bottom: none;
}

.deliverables i,
.expected-results i {
    font-size: 1.2rem;
    color: var(--accent-orange);
    margin-top: 0.25rem;
}

.cta-secondary {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(222, 173, 116, 0.1) 100%);
    border-radius: var(--radius-md);
    border: 2px solid var(--accent-orange);
}

.cta-secondary h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-secondary p {
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ===== CONTATO ===== */
.contact {
    background: var(--white);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--accent-orange) 50%, transparent 100%);
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 4rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
}

/* PADRÃO ÍCONE LARANJA/BRANCO */
.contact-item i {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #e08e00 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.contact-item a,
.contact-item a:hover,
.contact-item a:visited,
.contact-item a:active {
    text-decoration: none !important;
}

.contact-method-btn,
.contact-method-btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    text-decoration: none !important;
    color: inherit;
    cursor: pointer;
}

.contact-method-btn *,
.contact-method-btn-whatsapp * {
    text-decoration: none !important;
}

.contact-method-btn:hover,
.contact-method-btn-whatsapp:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(5px);
    background: var(--white);
    text-decoration: none !important;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--radius-md);
}

.form-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-urgency {
    background: rgba(245, 158, 11, 0.1);
    padding: 1rem;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent-orange);
    margin-bottom: 2rem;
}

.form-urgency p {
    color: var(--accent-orange);
    font-weight: 600;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--bg-gray);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.next-steps {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-sm);
    margin: 2rem 0;
}

.next-steps h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.next-steps-list {
    list-style: none;
}

.next-steps-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-medium);
}

.next-steps-list i {
    color: var(--accent-orange);
    font-size: 1.1rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #e08e00;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--primary-gray);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    opacity: 0.9;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    padding: 0.5rem 0;
    opacity: 0.9;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-orange);
}

.footer-section ul li i {
    margin-right: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(0, 255, 70, 1);
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: rgba(0, 255, 70, 0.8);
    text-shadow: 0 0 10px rgba(0, 255, 70, 0.5);
}

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    font-size: 2rem;
    color: var(--white);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 24px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-brand .logo {
        height: 28px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }
    
    .hero .subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }

    .audience-tags {
        flex-direction: column;
        align-items: center;
    }

    .audience-tag {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.75rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .consultant-header {
        flex-direction: column;
        text-align: center;
    }
    
    .mission-vision-values,
    .steps-grid,
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    /* Serviços Responsivo */
    .services-intro {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .services-intro p {
        font-size: 1rem;
    }

    .service-horizontal-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .service-horizontal-header h3 {
        font-size: 1.4rem;
    }

    .service-icon-large {
        width: 75px;
        height: 75px;
    }

    .service-icon-large i {
        font-size: 2rem;
    }

    .service-horizontal-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-column {
        order: 1;
    }

    .service-column h4 {
        text-align: center;
    }

    .service-list-compact {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        align-self: auto;
    }

    .service-highlight-horizontal {
        min-width: 100%;
        max-width: 100%;
        order: 2;
        align-self: auto;
    }

    .services-grid-two {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card-horizontal {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .service-card-half {
        padding: 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
    }

    .service-icon i {
        font-size: 1.8rem;
    }

    .service-card-half h3 {
        font-size: 1.3rem;
    }

    .services-cta {
        padding: 2rem 1.5rem;
    }

    .services-cta h3 {
        font-size: 1.5rem;
    }

    .services-cta p {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Metodologia */
    .methodology h2 {
        font-size: 2rem;
    }

    .methodology-steps h3 {
        font-size: 1.5rem;
    }

    .pricing-table h3 {
        font-size: 1.5rem;
    }

    /* Resultados */
    .results h2 {
        font-size: 2rem;
    }

    .deliverables h3,
    .expected-results h3 {
        font-size: 1.5rem;
    }

    /* Contato */
    .contact h2 {
        font-size: 2rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* Case de Sucesso */
    .case-situation,
    .case-actions,
    .case-results {
        padding: 2rem 1.5rem;
    }

    .case-icon {
        width: 70px;
        height: 70px;
    }

    .case-icon i {
        font-size: 2rem;
    }

    .case-situation h3,
    .case-actions h3,
    .case-results h3 {
        font-size: 1.5rem;
    }

    .actions-grid {
        grid-template-columns: 1fr;
    }

    .action-category {
        padding: 1.5rem;
    }

    .action-category h4 {
        font-size: 1.1rem;
    }

    .results-highlights {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .highlight-number {
        font-size: 2.5rem;
    }

    .highlight-icon {
        width: 70px;
        height: 70px;
    }

    .highlight-icon i {
        font-size: 1.75rem;
    }

    .case-cta {
        padding: 2rem 1.5rem;
    }

    .case-cta h3 {
        font-size: 1.5rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .nav-brand .logo {
        height: 26px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float i {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0 0.5rem;
    }

    .hero .subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }
    
    .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .btn-lg {
        padding: 1rem 1.75rem;
        font-size: 0.9rem;
        width: 100%;
    }

    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }

    .feature-card .icon {
        width: 65px;
        height: 65px;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.85rem;
    }

    /* Sobre */
    .mvv-item {
        padding: 1.75rem;
    }

    .mvv-item .icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .mvv-item .icon-wrapper i {
        font-size: 2rem;
    }

    .mvv-item h3 {
        font-size: 1.25rem;
    }

    .mvv-item p {
        font-size: 0.9rem;
    }

    /* Case Study */
    .case-header h2 {
        font-size: 1.5rem;
    }

    .case-company {
        font-size: 1rem;
    }

    .case-situation,
    .case-actions,
    .case-results {
        padding: 1.5rem;
    }

    .results-highlights {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .highlight-number {
        font-size: 2.25rem;
    }

    .highlight-icon {
        width: 65px;
        height: 65px;
    }

    .highlight-icon i {
        font-size: 1.5rem;
    }

    /* Planos */
    .pricing-card {
        padding: 1.75rem;
    }

    .pricing-card .plan-name {
        font-size: 1.25rem;
    }

    .pricing-card .plan-description {
        font-size: 0.85rem;
    }

    .pricing-card ul li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }

    /* Formulário */
    .contact-form input,
    .contact-form textarea {
        padding: 0.875rem;
        font-size: 0.95rem;
    }

    .contact-method-btn {
        min-height: 48px;
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .consultant-info h3 {
        font-size: 1.5rem;
    }

    .consultant-intro,
    .consultant-description {
        font-size: 0.95rem;
    }

    .certifications h4 {
        font-size: 1.1rem;
    }

    .certifications-grid {
        grid-template-columns: 1fr;
    }

    .certification-item {
        padding: 1rem;
    }

    /* Serviços Mobile */
    .services-intro {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .services-intro p {
        font-size: 0.95rem;
    }

    .service-icon-large {
        width: 65px;
        height: 65px;
    }

    .service-icon-large i {
        font-size: 1.75rem;
    }

    .service-horizontal-header h3 {
        font-size: 1.25rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .service-icon {
        width: 65px;
        height: 65px;
    }

    .service-icon i {
        font-size: 1.6rem;
    }
    
    .service-card-horizontal,
    .service-card-half {
        padding: 1.25rem;
    }
    
    .service-card-half h3 {
        font-size: 1.2rem;
    }

    .service-content h4,
    .service-column h4 {
        font-size: 1rem;
    }
    
    .service-list li,
    .service-list-compact li {
        font-size: 0.85rem;
        padding: 0.45rem 0;
    }
    
    .service-highlight,
    .service-highlight-horizontal {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .highlight-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }

    .service-highlight h4 {
        font-size: 0.9rem;
    }

    .service-highlight p {
        font-size: 0.85rem;
    }

    .services-cta {
        padding: 1.75rem 1.25rem;
    }

    .services-cta h3 {
        font-size: 1.35rem;
    }

    .services-cta p {
        font-size: 0.95rem;
    }

    /* Metodologia */
    .methodology h2 {
        font-size: 1.75rem;
    }

    .methodology-steps h3 {
        font-size: 1.3rem;
    }

    .journey-step {
        padding: 1.5rem;
    }

    .step-number {
        width: 55px;
        height: 55px;
        font-size: 2rem;
    }

    .journey-step h3 {
        font-size: 1.1rem;
    }

    .journey-step p {
        font-size: 0.85rem;
    }

    .pricing-table h3 {
        font-size: 1.35rem;
    }

    .plan-card {
        padding: 1.5rem;
    }

    .plan-card h4 {
        font-size: 1.5rem;
    }

    .plan-card .duration {
        font-size: 0.9rem;
    }

    .plan-card ul li {
        padding: 0.65rem 0;
        font-size: 0.9rem;
    }

    /* Resultados */
    .results h2 {
        font-size: 1.75rem;
    }

    .deliverables,
    .expected-results {
        padding: 2rem 1.5rem;
    }

    .deliverables h3,
    .expected-results h3 {
        font-size: 1.3rem;
    }

    .deliverables li,
    .expected-results li {
        font-size: 0.9rem;
    }

    /* Case de Sucesso Mobile */
    .case-situation,
    .case-actions,
    .case-results {
        padding: 1.5rem 1rem;
    }

    .case-icon {
        width: 60px;
        height: 60px;
    }

    .case-icon i {
        font-size: 1.75rem;
    }

    .case-situation h3,
    .case-actions h3,
    .case-results h3 {
        font-size: 1.3rem;
    }

    .case-intro {
        font-size: 0.95rem;
    }

    .case-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }

    .action-category {
        padding: 1.25rem;
    }

    .action-category h4 {
        font-size: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .action-category li {
        font-size: 0.9rem;
        padding-left: 1.25rem;
    }

    .results-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-number {
        font-size: 2.25rem;
    }

    .highlight-icon {
        width: 60px;
        height: 60px;
    }

    .highlight-icon i {
        font-size: 1.5rem;
    }

    .highlight-card {
        padding: 1.5rem;
    }

    .highlight-card p {
        font-size: 0.85rem;
    }

    .case-benefits li {
        padding: 0.75rem;
        font-size: 0.9rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .case-benefits i {
        font-size: 1.25rem;
    }

    .case-cta {
        padding: 1.75rem 1rem;
    }

    .case-cta h3 {
        font-size: 1.25rem;
    }

    /* Contato */
    .contact h2 {
        font-size: 1.75rem;
    }

    .contact-info h3 {
        font-size: 1.35rem;
    }

    .contact-info p {
        font-size: 0.95rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-method-btn {
        min-height: 50px;
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
    }

    .contact-item i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 0.875rem;
    }

    .btn-primary[type="submit"] {
        padding: 1rem;
        font-size: 1rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p,
    .footer-section ul li {
        font-size: 0.9rem;
    }
}
