/* Otimize Benefícios - CSS Principal */
/* Performance otimizada com critical CSS inline */

/* CSS Crítico movido do HTML */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 28px; text-decoration: none; border-radius: 6px; font-weight: 500; font-size: 0.95rem; transition: all 0.2s ease; cursor: pointer; border: none; text-align: center; position: relative; white-space: nowrap; min-height: 48px; font-family: inherit; }
.btn-primary { background: #4A90E2; color: white; border: 1px solid #4A90E2; box-shadow: 0 2px 4px rgba(74, 144, 226, 0.15); }
.btn-primary:hover { background: #3A7BC8; border-color: #3A7BC8; box-shadow: 0 4px 12px rgba(74, 144, 226, 0.25); transform: translateY(-1px); }
.btn-secondary { background: white; color: #4A90E2; border: 1px solid #E1E5E9; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.btn-secondary:hover { background: #F8F9FA; border-color: #4A90E2; color: #4A90E2; box-shadow: 0 2px 8px rgba(74, 144, 226, 0.15); transform: translateY(-1px); }
.hero { background: linear-gradient(135deg, #4A90E2 0%, #7BB3F0 100%); color: white; padding: 100px 0; text-align: center; position: relative; overflow: hidden; width: 100%; }
.hero h1 { font-size: 3rem; font-weight: 700; margin-bottom: 1rem; }
.hero p { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.9; }

/* Hero Background */
.hero-background { position: absolute; top: 0; left: 0; right: 0; bottom: 0; z-index: 1; }
.hero-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.1); }

/* Hero Content */
.hero-content { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 100%; }
.hero-text { text-align: left; max-width: 100%; }
.hero-title { font-size: 3rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; }
.hero-subtitle { font-size: 1.25rem; margin-bottom: 2rem; opacity: 0.9; line-height: 1.6; }

/* Hero Stats */
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2rem; max-width: 100%; }
.stat-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px; padding: 1.5rem; text-align: center; transition: all 0.3s ease; }
.stat-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.stat-icon { width: 48px; height: 48px; margin: 0 auto 1rem; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.stat-icon svg { width: 24px; height: 24px; }
.stat-title { font-size: 1rem; font-weight: 600; margin: 0; }

/* Hero CTA */
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; max-width: 100%; }
.hero-cta .btn { padding: 1rem 2rem; font-size: 1.1rem; font-weight: 600; }

/* Hero Image */
.hero-image { text-align: center; max-width: 100%; }
.hero-image img { max-width: 100%; height: auto; border-radius: 12px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.section { padding: 80px 0; }
.section:nth-child(even) { background: #f8f9fa; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.card { background: white; padding: 2rem; border-radius: 8px; border: 1px solid #E1E5E9; text-align: center; transition: all 0.2s ease; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); border-color: #2B6CB0; }
.icon { width: 48px; height: 48px; margin: 0 auto 1rem; background: #F8F9FA; border: 1px solid #E1E5E9; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: all 0.2s ease; }
.card:hover .icon { background: #2B6CB0; border-color: #2B6CB0; transform: translateY(-2px); }
.icon svg { width: 24px; height: 24px; fill: #333; transition: fill 0.2s ease; }
.card:hover .icon svg { fill: white; }
.header-integrated { position: fixed; top: 0; left: 0; right: 0; background: transparent; z-index: 1000; padding: 1.5rem 0; transition: all 0.3s ease; }
.header-integrated.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); padding: 1rem 0; box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.header-integrated.scrolled .logo-white img { filter: none; }
.header-integrated.scrolled .nav-white a { color: #333; }
.header-integrated.scrolled .nav-white a:hover { color: #333; }
.header-integrated.scrolled .nav-white a::before { background: #2B6CB0; }
.header-integrated.scrolled .btn-white { background: #26d07c; color: white; border: 1px solid #26d07c; }
.header-integrated .container { display: flex; justify-content: space-between; align-items: center; }
.logo-white { display: flex; align-items: center; }
.logo-white img { filter: brightness(0) invert(1); }
.nav-white { display: flex; gap: 2rem; }
.nav-white a { color: white; text-decoration: none; font-weight: 500; font-size: 0.95rem; transition: all 0.3s ease; opacity: 0.9; position: relative; padding: 0.5rem 0; }
.nav-white a:hover { opacity: 1; color: white; }
.nav-white a::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: #2B6CB0; border-radius: 2px; transition: width 0.4s ease; }
.nav-white a:hover::before { width: 100%; }
.btn-white { background: #26d07c; color: white; border: 1px solid #26d07c; box-shadow: 0 4px 12px rgba(38, 208, 124, 0.3); }
.btn-white:hover { background: #169d5a; border-color: #169d5a; box-shadow: 0 6px 20px rgba(38, 208, 124, 0.4); color: white; transform: translateY(-1px); }
.floating-btn { position: fixed; bottom: 20px; right: 20px; z-index: 1000; display: none; }
.whatsapp-float { position: fixed; bottom: 20px; left: 20px; z-index: 1000; background: #25D366; color: white; padding: 12px 16px; border-radius: 50px; text-decoration: none; display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3); transition: all 0.3s ease; width: auto !important; max-width: none !important; }
.whatsapp-float:hover { background: #20BA5A; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4); color: white; }
.whatsapp-float svg { flex-shrink: 0; }

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: 1px;
}

.mobile-menu-btn.active span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(26, 32, 44, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #26d07c;
}

/* Reset e base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
    overflow-x: hidden;
}

/* Prevenir scroll horizontal quando menu mobile estiver aberto */
body.menu-open {
    overflow: hidden;
    height: 100vh;
}

/* Garantir scroll normal em telas menores que 700px quando menu fechado */
@media (max-width: 700px) {
    body:not(.menu-open) {
        overflow-x: hidden;
        overflow-y: auto;
    }
}

/* Variáveis CSS */
:root {
    /* Paleta Otimize Benefícios - Inspirada no TotalPass */
    --otimize-primary: #26d07c;      /* Verde moderno e confiável */
    --otimize-secondary: #169d5a;    /* Verde escuro vibrante e energético */
    --otimize-accent: #F2C94C;       /* Amarelo otimismo e energia */
    --otimize-dark: #1A202C;         /* Cinza escuro elegante */
    --otimize-light: #F7FAFC;      /* Fundo claro e limpo */
    --otimize-gradient: linear-gradient(135deg, #26d07c 0%, #169d5a 100%);
    --otimize-gradient-hover: linear-gradient(135deg, #1fb86b 0%, #0f7a3f 100%);
    
    /* Cores do sistema */
    --primary-color: var(--otimize-primary);
    --secondary-color: var(--otimize-secondary);
    --accent-color: var(--otimize-accent);
    --text-color: var(--otimize-dark);
    --text-light: #666;
    --bg-light: var(--otimize-light);
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-hover: 0 8px 25px rgba(43, 108, 176, 0.3);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Tipografia */
    --font-family: 'Inter', 'Poppins', 'Montserrat', sans-serif;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
/* Títulos de seções gerais */
.section-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Buttons - Estilo Wellhub */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    position: relative;
    white-space: nowrap;
    min-height: 48px;
    font-family: inherit;
}

.btn-primary {
    background: var(--otimize-gradient);
    color: var(--white);
    border: none;
    box-shadow: 0 2px 4px rgba(43, 108, 176, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: var(--otimize-gradient-hover);
    border: none;
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.25);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(74, 144, 226, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.btn-secondary:active {
    transform: translateY(0);
    background: #F1F3F4;
}

/* Botão outline moderno */
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-weight: 500;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.25);
}

/* Botão ghost */
.btn-ghost {
    background: transparent;
    color: var(--text-color);
    border: 1px solid transparent;
    font-weight: 500;
}

.btn-ghost:hover {
    background: #F8F9FA;
    border-color: #E1E5E9;
    color: var(--primary-color);
}

/* Header - Estilo Wellhub */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    transform: translateY(0);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: 1px;
}

.mobile-menu-btn.active span:first-child {
    transform: rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100vw;
    height: 100vh;
    background: rgba(26, 32, 44, 0.98);
    backdrop-filter: blur(10px);
    z-index: 999;
    transition: left 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1rem;
    transition: color 0.3s ease;
    text-align: center;
}

.mobile-menu a:hover {
    color: var(--primary-color);
}

.mobile-menu .btn {
    margin-top: 1rem;
    font-size: 1.2rem;
    padding: 12px 24px;
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.header.hidden {
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

.header:not(.hidden) {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.header.scrolled .logo {
    font-size: 1.3rem;
}

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

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

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

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

.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-cta .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
}

.header.scrolled .header-cta .btn {
    padding: 6px 14px;
    font-size: 0.85rem;
}

/* Botão hambúrguer escuro quando header scrolled */
.header.scrolled .mobile-menu-btn span {
    background: #1A202C !important;
}

/* Regra mais específica para garantir que funcione */
.header-integrated.scrolled .mobile-menu-btn span {
    background: #1A202C !important;
}

/* Garantir que o botão fique sempre na frente */
.mobile-menu-btn {
    position: relative;
    z-index: 1002;
}

/* Botão deve ficar acima do menu quando ativo */
.mobile-menu.active ~ .mobile-menu-btn,
.header .mobile-menu-btn.active {
    z-index: 1003 !important;
    position: relative;
}

/* Forçar botão sempre clicável */
.mobile-menu-btn.active {
    z-index: 1004 !important;
    pointer-events: auto !important;
}

/* Hero Section - Novo Design */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--otimize-gradient);
}

/* Elementos de movimento flutuantes */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 4s ease-in-out infinite reverse;
    z-index: 1;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&h=1080&fit=crop&crop=faces') center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.85) 0%, rgba(0, 191, 166, 0.85) 100%);
    z-index: 2;
}


.hero-content {
    max-width: 65%;
    margin-left: 0;
    margin-right: auto;
    width: 100%;
    position: relative;
    z-index: 3;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.hero-text {
    color: white;
    text-align: right;
}

.hero-image {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
    height: 100%;
    min-height: 400px;
}

.hero-main-image {
    width: 100%;
    max-width: 300px;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-main-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    color: white;
    line-height: 1.5;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: flex-end;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content .btn {
    min-width: 200px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-top: 3rem;
    margin-left: 1rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-content .btn-primary {
    background: var(--otimize-primary);
}

.hero-content .btn-primary:hover {
    background: #1E5A96;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-card:hover {
    transform: translateY(-4px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Animação de rotação para ícones de estatísticas */
.stat-icon {
    animation: rotate-gentle 4s ease-in-out infinite;
}

@keyframes rotate-gentle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    color: #4ECDC4;
}

.stat-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    line-height: 1.2;
}


.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    z-index: 3;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions .btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    height: 56px;
    position: relative;
    z-index: 4;
    opacity: 1;
    visibility: visible;
    flex-shrink: 1;
    white-space: normal;
}

.hero-actions .btn-primary {
    background: #2B6CB0;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(43, 108, 176, 0.3);
}

.hero-actions .btn-primary:hover {
    background: #1E4A72;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 108, 176, 0.4);
}

.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--bg-light);
}

.section h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Grid */
.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards - Estilo Wellhub */
.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #E1E5E9;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

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

.card p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Card destacado */
.card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.card.featured:hover {
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.2);
}

/* Icons - Estilo Wellhub */
.icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: #F8F9FA;
    border: 1px solid #E1E5E9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.card:hover .icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.icon svg {
    width: 24px;
    height: 24px;
    fill: var(--text-color);
    transition: fill 0.2s ease;
}

.card:hover .icon svg {
    fill: var(--white);
}

/* Form - Estilo Wellhub */
form {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #E1E5E9;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E1E5E9;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    font-family: inherit;
    background: var(--white);
}

form input:focus,
form select:focus,
form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

form input:hover,
form select:hover,
form textarea:hover {
    border-color: #C1C8CD;
}

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

form button {
    width: 100%;
    margin-top: 1rem;
    min-height: 48px;
}

/* Checkbox customizado */
form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    accent-color: var(--primary-color);
}

/* Floating Button */
.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    animation: pulse 2s infinite;
    max-width: calc(100vw - 40px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Footer */
footer {
    background: #333;
    color: var(--white);
    padding: 3rem 0;
    text-align: center;
    width: 100%;
    overflow-x: hidden;
}

footer h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

footer p {
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 500;
}

footer a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Intersection Observer animations - Estilo Wellhub */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Grid de Planos */
.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Card destacado - com scale apenas em desktop */
.plan-card-featured {
    transform: scale(1.05);
}

/* Responsividade para seção de planos */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .plan-card-featured {
        transform: none !important;
        scale: 1 !important;
    }
    
    .plans-grid > div {
        padding: 1.5rem !important;
    }
    
    .plans-grid h3 {
        font-size: 1.3rem !important;
    }
    
    .plans-grid .price {
        font-size: 1.5rem !important;
    }
    
    .plans-grid ul li {
        padding: 0.5rem 0 !important;
        font-size: 0.9rem !important;
    }
    
    .plans-grid ul li svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .plans-grid .btn {
        padding: 12px 20px !important;
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    .plans-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .plans-grid > div {
        padding: 1.25rem !important;
        border-radius: 12px !important;
    }
    
    .plans-grid h3 {
        font-size: 1.2rem !important;
    }
    
    .plans-grid ul li {
        padding: 0.4rem 0 !important;
        font-size: 0.85rem !important;
    }
    
    .plans-grid ul li svg {
        width: 14px !important;
        height: 14px !important;
    }
    
    .plans-grid .btn {
        padding: 10px 16px !important;
        font-size: 0.9rem !important;
    }
}

/* ========================================
   SEÇÃO DE GARANTIA - LAYOUT RESPONSIVO
   ======================================== */

/* Grid de Garantia - Desktop */
.garantia-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

/* Responsividade para seção de garantia */
@media (max-width: 1024px) {
    .garantia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
    
    .garantia-grid > div:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .garantia-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }
    
    .garantia-grid > div {
        padding: 2rem !important;
    }
    
    .garantia-grid h3 {
        font-size: 1.3rem !important;
    }
    
    .garantia-grid p {
        font-size: 0.95rem !important;
    }
    
    .garantia-grid > div > div:first-child {
        width: 70px !important;
        height: 70px !important;
    }
    
    .garantia-grid > div > div:first-child svg {
        width: 35px !important;
        height: 35px !important;
    }
}

@media (max-width: 480px) {
    .garantia-grid {
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .garantia-grid > div {
        padding: 1.5rem !important;
        border-radius: 12px !important;
    }
    
    .garantia-grid h3 {
        font-size: 1.2rem !important;
    }
    
    .garantia-grid p {
        font-size: 0.9rem !important;
    }
    
    .garantia-grid > div > div:first-child {
        width: 60px !important;
        height: 60px !important;
    }
    
    .garantia-grid > div > div:first-child svg {
        width: 30px !important;
        height: 30px !important;
    }
}

/* ========================================
   SEÇÃO CTA - LAYOUT RESPONSIVO
   ======================================== */

/* CTA Principal - Desktop */
.cta-main {
    text-align: center;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.5), rgba(38, 208, 124, 0.5)), 
                url('https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover,
                white;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.cta-header {
    margin-bottom: 1.5rem;
}

.cta-main-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin: 0;
    position: relative;
    z-index: 2;
}

.cta-main-description {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-button {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #2B6CB0, #26d07c);
    position: relative;
    z-index: 2;
}

/* Responsividade para seção CTA */
@media (max-width: 768px) {
    .cta-main {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .cta-header {
        margin-bottom: 1.25rem;
    }
    
    .cta-main-title {
        font-size: 1.5rem;
        text-align: center;
        color: white !important;
    }
    
    .cta-main-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        color: white !important;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta-main {
        padding: 1.5rem;
        margin: 0 0.5rem;
        border-radius: 12px;
    }
    
    .cta-header {
        margin-bottom: 1rem;
    }
    
    .cta-main-title {
        font-size: 1.3rem;
        line-height: 1.3;
        color: white !important;
    }
    
    .cta-main-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        color: white !important;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.95rem;
        max-width: 100%;
    }
}

/* Melhorias específicas para título da seção de planos */
@media (max-width: 768px) {
    #planos h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.75rem !important;
    }
    
    #planos p {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 480px) {
    #planos h2 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }
    
    #planos p {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* Efeito hover sofisticado */
.btn-primary.cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(43, 108, 176, 0.4);
    background: #1e4a72;
    border-color: rgba(255,255,255,0.3);
}

.btn-secondary.cta:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

/* ========================================
   MEDIA QUERIES PADRONIZADAS
   Ordem: Desktop → Tablet → Mobile
   ======================================== */

/* Desktop Large - 1200px+ */
@media (max-width: 1200px) {
    .hero-overlay {
        width: 100%;
    }
    
    .hero-content {
        max-width: 100%;
        width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Desktop Medium - 1024px */
@media (max-width: 1024px) and (min-width: 769px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }
    
    .plans-grid > div:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }
}

/* Tablet Large - 830px */
@media (max-width: 830px) {
    .logo-img {
        height: 65px;
        width: auto;
    }
    
    .header-integrated.scrolled .logo-img {
        height: 50px;
    }
    
    .logo-white img {
        height: 45px;
        max-height: 45px;
    }
    
    .header-integrated {
        padding: 1.25rem 0;
        min-height: 85px;
    }
    
    .header-integrated.scrolled {
        padding: 1rem 0;
        min-height: 75px;
    }
}

/* Tablet Medium - 800px */
@media (max-width: 800px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
}

/* Tablet Small - 799px */
@media (max-width: 799px) and (min-width: 700px) {
    .hero-title {
        margin-top: 0.25rem;
        margin-bottom: 0.75rem;
    }
    
    .hero h1 {
        margin-top: 0.25rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-content {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .hero-text {
        padding-top: 0.25rem;
    }
}

/* Tablet - 770px */
@media (max-width: 770px) {
    .logo-img {
        height: 80px;
        width: auto;
    }
    
    .header-integrated.scrolled .logo-img {
        height: 60px;
    }
    
    .logo-white img {
        height: 75px;
        max-height: 75px;
    }
    
    .header-integrated {
        padding: 1.5rem 0;
        min-height: 100px;
    }
    
    .header-integrated.scrolled {
        padding: 1.25rem 0;
        min-height: 90px;
    }
}

/* Tablet - 768px */
@media (max-width: 768px) and (min-width: 701px) {
    .header-integrated {
        padding: 1.25rem 0;
        min-height: 90px;
    }
    
    .header-integrated.scrolled {
        padding: 1rem 0;
        min-height: 80px;
    }
    
    .hero-content {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    .hero-title {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .hero h1 {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-text {
        padding-top: 0.5rem;
    }
}

/* Mobile Large - 700px */
@media (max-width: 700px) {
    .logo-img {
        height: 80px;
        width: auto;
    }
    
    .header-integrated.scrolled .logo-img {
        height: 60px;
    }
    
    .logo-white img {
        height: 75px;
        max-height: 75px;
    }
    
    .header-integrated {
        padding: 1.5rem 0;
        min-height: 100px;
    }
    
    .header-integrated.scrolled {
        padding: 1.25rem 0;
        min-height: 90px;
    }
    
    .hero-actions .btn {
        min-width: 180px;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
}

/* Mobile Medium - 685px */
@media (max-width: 685px) {
    body:not(.menu-open) {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    html {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        margin: 0;
    }
    
    .hero {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }
    
    .btn {
        max-width: 100%;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .hero-cta {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
    }
    
    .hero-cta .btn {
        width: 100%;
        max-width: 100%;
        margin: 0.5rem 0;
    }
    
    .hero-stats {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        width: 100%;
        max-width: 100%;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .hero-title,
    .hero-subtitle {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .header-integrated {
        width: 100%;
        max-width: 100vw;
    }
    
    .mobile-menu {
        width: 100vw;
        max-width: 100vw;
    }
    
    .whatsapp-float {
        max-width: calc(100vw - 40px);
        word-wrap: break-word;
        white-space: normal;
    }
    
    .section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
}

/* Mobile Small - 600px */
@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-actions .btn {
        min-width: 150px;
        font-size: 0.85rem;
        padding: 10px 16px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* Mobile Extra Small - 540px */
@media (max-width: 540px) {
    .header-integrated {
        padding: 1rem 0;
        min-height: 80px;
    }
    
    .header-integrated.scrolled {
        padding: 0.75rem 0;
        min-height: 70px;
    }
    
    .hero .container {
        padding-top: 2rem;
    }
    
    .hero-content {
        padding-top: 1rem;
    }
    
    .logo-white img {
        height: 50px;
        max-height: 50px;
    }
    
    .header-integrated {
        padding: 1.25rem 0;
        min-height: 90px;
    }
    
    .header-integrated.scrolled {
        padding: 1rem 0;
        min-height: 80px;
    }
    
    .hero {
        padding-top: 150px !important;
        padding-bottom: 80px;
    }
}

/* Ajustes para telas abaixo de 700px */
@media (max-width: 700px) {
    /* Manter logo no tamanho desktop (80px) */
    .logo-img {
        height: 80px;
        width: auto;
    }
    
    .header-integrated.scrolled .logo-img {
        height: 60px;
    }
    
    .logo-white img {
        height: 75px;
        max-height: 75px;
    }
    
    /* Dar mais espaço para o header */
    .header-integrated {
        padding: 1.5rem 0;
        min-height: 100px;
    }
    
    .header-integrated.scrolled {
        padding: 1.25rem 0;
        min-height: 90px;
    }
    
    /* Dar mais espaço para o conteúdo do banner */
    .hero-content {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    
    /* Aumentar espaçamento entre elementos do hero */
    .hero-title {
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        margin-bottom: 2.5rem;
    }
    
    /* Aumentar espaçamento dos stats */
    .hero-stats {
        margin-bottom: 3rem;
        gap: 1.5rem;
    }
    
    /* Aumentar espaçamento dos botões */
    .hero-cta {
        gap: 1.5rem;
        margin-top: 2rem;
    }
}

/* Correção de espaçamento para telas muito pequenas */
@media (max-width: 540px) {
    /* Aumentar padding-top do hero para acomodar header maior */
    .hero {
        padding-top: 140px !important;
        padding-bottom: 60px;
    }
    
    /* Garantir que o header tenha altura adequada */
    .header-integrated {
        padding: 1rem 0;
        min-height: 80px;
    }
    
    .header-integrated.scrolled {
        padding: 0.75rem 0;
        min-height: 70px;
    }
    
    /* Ajustar container do hero */
    .hero .container {
        padding-top: 2rem;
    }
    
    /* Ajustar espaçamento do conteúdo do hero */
    .hero-content {
        padding-top: 1rem;
    }
    
    /* Manter logo no tamanho desktop (80px) */
    .logo-img {
        height: 80px;
        width: auto;
    }
    
    .header-integrated.scrolled .logo-img {
        height: 60px;
    }
    
    .logo-white img {
        height: 75px;
        max-height: 75px;
    }
    
    /* Dar mais espaço para a logo no header */
    .header-integrated {
        padding: 1.25rem 0;
        min-height: 90px;
    }
    
    .header-integrated.scrolled {
        padding: 1rem 0;
        min-height: 80px;
    }
}

/* Ajustes adicionais para telas extra pequenas */
@media (max-width: 480px) {
    /* Aumentar ainda mais o espaçamento do hero para acomodar header maior */
    .hero {
        padding-top: 160px !important;
        padding-bottom: 50px;
    }
    
    /* Header mais compacto */
    .header-integrated {
        padding: 0.75rem 0;
        min-height: 70px;
    }
    
    .header-integrated.scrolled {
        padding: 0.5rem 0;
        min-height: 60px;
    }
    
    /* Manter logo no tamanho desktop (80px) */
    .logo-img {
        height: 80px;
        width: auto;
    }
    
    .header-integrated.scrolled .logo-img {
        height: 60px;
    }
    
    .logo-white img {
        height: 75px;
        max-height: 75px;
    }
    
    /* Aumentar espaço do header para acomodar logo maior */
    .header-integrated {
        padding: 1rem 0;
        min-height: 80px;
    }
    
    .header-integrated.scrolled {
        padding: 0.75rem 0;
        min-height: 70px;
    }
    
    /* Ajustar espaçamento do conteúdo */
    .hero-content {
        padding-top: 1.5rem;
    }
    
    /* Títulos menores para economizar espaço */
    .hero-title {
        font-size: 1.5rem !important;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 1.5rem;
    }
}

/* Ajustes para telas extra pequenas (360px) */
@media (max-width: 360px) {
    /* Manter logo no tamanho desktop (80px) */
    .logo-img {
        height: 80px;
        width: auto;
    }
    
    .header-integrated.scrolled .logo-img {
        height: 60px;
    }
    
    .logo-white img {
        height: 75px;
        max-height: 75px;
    }
    
    /* Header com mais espaço para a logo */
    .header-integrated {
        padding: 1.25rem 0;
        min-height: 85px;
    }
    
    .header-integrated.scrolled {
        padding: 1rem 0;
        min-height: 75px;
    }
    
    /* Ajustar hero para acomodar header maior */
    .hero {
        padding-top: 170px !important;
        padding-bottom: 40px;
    }
    
    /* Container com mais padding para a logo */
    .header-integrated .container {
        padding: 0 20px;
    }
}

/* Ajustes para telas entre 700px e 768px */
@media (max-width: 768px) and (min-width: 701px) {
    
    /* Header com espaçamento intermediário */
    .header-integrated {
        padding: 1.25rem 0;
        min-height: 90px;
    }
    
    .header-integrated.scrolled {
        padding: 1rem 0;
        min-height: 80px;
    }
    
    /* Conteúdo com espaçamento intermediário */
    .hero-content {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
    
    /* Reduzir margem superior do título principal */
    .hero-title {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .hero h1 {
        margin-top: 0.5rem;
        margin-bottom: 1rem;
    }
    
    /* Reduzir espaçamento geral do hero */
    .hero-text {
        padding-top: 0.5rem;
    }
}

/* Ajustes específicos para telas 7xx (700px-799px) */
@media (max-width: 799px) and (min-width: 700px) {
    /* Reduzir ainda mais a margem superior do título */
    .hero-title {
        margin-top: 0.25rem;
        margin-bottom: 0.75rem;
    }
    
    .hero h1 {
        margin-top: 0.25rem;
        margin-bottom: 0.75rem;
    }
    
    /* Reduzir padding do conteúdo */
    .hero-content {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    /* Reduzir espaçamento do texto */
    .hero-text {
        padding-top: 0.25rem;
    }
}

/* Responsive Design - Conteúdo movido para media query consolidada no final */

/* Tablet - 2 colunas */
@media (max-width: 1024px) and (min-width: 769px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }
    
    .plans-grid > div:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Garantia - 2 colunas no tablet */
    #garantia .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    #garantia .grid > div:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Contato - 2 colunas no tablet */
    #contato .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Telas médias - ajuste de botões */
@media (max-width: 800px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    /* Footer tablet - 2 colunas */
    footer div[style*="grid-template-columns: 1fr 1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    footer div[style*="grid-template-columns: 1fr 1fr 1fr"] > div:last-child {
        grid-column: 1 / -1 !important;
        margin-top: 1rem !important;
    }
}

@media (max-width: 700px) {
    .hero-actions .btn {
        min-width: 180px;
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    /* Esconder lado esquerdo da seção "Treine nas melhores redes" */
    #parceiros div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    #parceiros div[style*="grid-template-columns: 1fr 1fr"] > div:first-child {
        display: none !important;
    }
    
    /* Seção "Como Funciona" - Mobile */
    #como-funciona .process-step {
        flex-direction: column !important;
        text-align: center !important;
        margin-bottom: 2rem !important;
    }
    
    #como-funciona .step-content {
        padding: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    #como-funciona .step-visual {
        flex: none !important;
        margin-bottom: 1.5rem !important;
    }
    
    #como-funciona .step-text {
        flex: none !important;
        text-align: center !important;
    }
    
    #como-funciona .step-visual > div:first-child {
        width: 100px !important;
        height: 100px !important;
    }
    
    #como-funciona .step-visual > div:first-child svg {
        width: 40px !important;
        height: 40px !important;
    }
    
    #como-funciona .step-text h3 {
        font-size: 1.4rem !important;
    }
    
    #como-funciona .step-text p {
        font-size: 1rem !important;
    }
    
    #como-funciona .step-text > div {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    #como-funciona .step-text > div > div {
        width: 100% !important;
        text-align: center !important;
    }
}

@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-actions .btn {
        min-width: 150px;
        font-size: 0.85rem;
        padding: 10px 16px;
    }
    
    /* Footer responsivo */
    footer {
        padding: 1.5rem 0;
    }
    
    footer .container {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    form {
        padding: 1rem;
    }
    
    /* Botão flutuante removido do mobile */
    
    /* Footer mobile */
    footer {
        padding: 2rem 0;
    }
    
    footer .container {
        padding: 0 1rem;
    }
    
    /* Footer mobile - layout de coluna única */
    footer div[style*="grid-template-columns: 1fr 1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    /* Ajustar logo no mobile */
    footer img {
        height: 280px !important;
        width: auto !important;
    }
    
    /* Ajustar grid de benefícios no mobile */
    footer div[style*="grid-template-columns: 1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }
    
    /* Ajustar links sociais no mobile */
    footer div[style*="display: flex; gap: 0.75rem"] {
        justify-content: center !important;
        margin-top: 1rem !important;
    }
    
    /* Grid responsivo para telas muito pequenas */
    .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        min-width: 120px;
        font-size: 0.8rem;
        padding: 8px 12px;
        height: 44px;
    }
    
    /* Seção "Como Funciona" - Mobile Pequeno */
    #como-funciona .step-content {
        padding: 1.5rem !important;
    }
    
    #como-funciona .step-visual > div:first-child {
        width: 80px !important;
        height: 80px !important;
    }
    
    #como-funciona .step-visual > div:first-child svg {
        width: 30px !important;
        height: 30px !important;
    }
    
    #como-funciona .step-text h3 {
        font-size: 1.2rem !important;
    }
    
    #como-funciona .step-text p {
        font-size: 0.95rem !important;
    }
    
    #como-funciona .step-text > div > div {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Footer mobile - telas muito pequenas */
    footer {
        padding: 1.5rem 0;
    }
    
    footer img {
        height: 220px !important;
    }
    
    footer p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    footer h4 {
        font-size: 1rem !important;
    }
    
    footer li {
        font-size: 0.8rem !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
.btn:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #4A90E2;
        --text-color: #000000;
        --text-light: #333333;
    }
}

/* Print styles */
@media print {
    .header,
    .floating-btn,
    footer {
        display: none;
    }
    
    .hero {
        background: none;
        color: #000;
    }
    
    .section {
        break-inside: avoid;
    }
}

/* Loading states */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success/Error states */
.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Benefits Section - Brand New Design */
.benefits-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}


.benefits-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: white;
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    background-clip: padding-box;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2B6CB0, #00BFA6);
    border-radius: 22px;
    padding: 2px;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 1;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-12px) rotateX(5deg) scale(1.02);
    box-shadow: 0 25px 80px rgba(43, 108, 176, 0.2);
    border-color: transparent;
}

/* Animação de pulsação para ícones */
.benefit-icon {
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(43, 108, 176, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 10px rgba(43, 108, 176, 0);
        transform: scale(1.05);
    }
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 3;
}

.benefit-icon svg {
    fill: url(#gradient);
}

.benefit-card:hover .benefit-icon {
    background: #f8fafc;
    color: #2B6CB0;
    transform: scale(1.15) rotateY(10deg);
    border: none;
}

.benefit-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.benefit-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.benefit-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
}


.benefits-cta {
    text-align: center;
    margin-top: 4rem;
}


/* Responsive Benefits */
@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .benefit-card:hover {
        transform: translateY(-6px) rotateX(2deg);
    }
    
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
    
    .benefit-content h3 {
        font-size: 0.9rem;
    }
    
    
    .benefits-header p {
        font-size: 1.2rem;
    }
    
}

@media (max-width: 480px) {
    .benefit-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }
    
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }
    
    .benefit-content h3 {
        font-size: 0.85rem;
    }
    
    .benefit-content p {
        font-size: 1rem;
    }
    
}

/* Como Funciona - Estilos Sofisticados */
.how-it-works-process {
    position: relative;
}

.process-step {
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-content {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

/* .step-content:hover::before {
    left: 100%;
} */

.step-visual {
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.step-visual:hover {
    transform: scale(1.05) rotateY(5deg);
}

.connector-arrow {
    transition: all 0.3s ease;
    opacity: 0.7;
}

.connector-arrow:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Animações de entrada */
.process-step {
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease forwards;
}

.process-step:nth-child(1) {
    animation-delay: 0.2s;
}

.process-step:nth-child(2) {
    animation-delay: 0.4s;
}

.process-step:nth-child(3) {
    animation-delay: 0.6s;
}

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

/* Responsividade para Como Funciona */
@media (max-width: 1024px) {
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .step-content {
        padding: 2rem !important;
    }
    
    .step-visual {
        flex: none !important;
        margin-bottom: 2rem;
    }
    
    .step-text {
        flex: none !important;
    }
    
    .connector-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .how-it-works-process {
        padding: 0 1rem;
    }
    
    .process-step {
        margin-bottom: 3rem !important;
    }
    
    .step-content {
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }
    
    .step-visual {
        margin-bottom: 1.5rem;
    }
    
    .step-visual > div:first-child {
        width: 80px !important;
        height: 80px !important;
    }
    
    .step-visual > div:first-child svg {
        width: 30px !important;
        height: 30px !important;
    }
    
    .step-text h3 {
        font-size: 1.4rem !important;
    }
    
    .step-text p {
        font-size: 1rem !important;
    }
    
    .step-text > div {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .step-text > div > div {
        width: 100% !important;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .step-content {
        padding: 1rem !important;
    }
    
    .step-text h3 {
        font-size: 1.2rem !important;
    }
    
    .step-text p {
        font-size: 0.95rem !important;
    }
    
    .step-text > div > div {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* Classes extraídas do HTML inline */
.gtm-noscript {
    height: 0;
    width: 0;
    display: none;
    visibility: hidden;
}

.logo-img {
    height: 130px;
    width: auto;
    transition: height 0.3s ease;
}

/* Logo menor quando header está scrolled */
.header-integrated.scrolled .logo-img {
    height: 80px;
}

.btn-margin-top {
    margin-top: 1rem;
}

.svg-hidden {
    position: absolute;
}

.gradient-stop-1 {
    stop-color: #26d07c;
    stop-opacity: 1;
}

.gradient-stop-2 {
    stop-color: #169d5a;
    stop-opacity: 1;
}

.benefits-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.partners-section {
    background: #F7FAFC;
    position: relative;
    overflow: hidden;
    padding-top: 35px;
    padding-bottom: 35px;
}

.partners-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.partners-left {
    background: linear-gradient(135deg, #26d07c 0%, #169d5a 100%);
    position: relative;
    overflow: hidden;
}

/* Hide partners-left below 750px and adjust grid */
@media (max-width: 750px) {
    .partners-left {
        display: none !important;
    }
    
    .partners-grid {
        grid-template-columns: 1fr !important;
    }
    
    .partners-card {
        background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        position: relative !important;
    }
    
    .partners-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.85);
        border-radius: 24px;
        z-index: 1;
    }
    
    .partners-card > * {
        position: relative;
        z-index: 2;
    }
    
    .partners-right {
        width: 100% !important;
        max-width: 100% !important;
    }
}

.partners-bg {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
}

.partners-right {
    padding: 1rem;
}

.logo-small {
    height: 40px;
    width: auto;
}

.section-margin {
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1A202C;
    margin-bottom: 0.75rem;
}

.benefits-list {
    margin-bottom: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.3rem;
    padding: 0.3rem 0.5rem;
    background: #F8F9FA;
    border-radius: 4px;
}

.benefit-text {
    font-weight: 500;
    color: #1A202C;
    font-size: 0.75rem;
}

.partners-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 100%;
    justify-items: start;
}

.partners-grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    max-width: 100%;
    justify-items: center;
    align-items: center;
}

/* Media queries para grid de parceiros */
@media (max-width: 768px) {
    .partners-grid-5 {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.75rem;
    }
    
    .partners-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .partners-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .partners-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

.partner-item {
    text-align: center;
}

.partner-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

.partner-logo {
    width: 32px;
    height: 32px;
    border-radius: 100%;
    object-fit: cover;
    background: white;
    padding: 2px;
}

.partner-logo-dark {
    background: black;
}

.partner-logo-small {
    width: 24px;
    height: 24px;
    border-radius: 100%;
}

.partner-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: #1A202C;
    margin: 0;
}

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

.btn-cta {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
}

.how-it-works-section {
    background: linear-gradient(135deg, #F7FAFC 0%, #E2E8F0 100%);
    position: relative;
    overflow: hidden;
}

.decorative-circle-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(38, 208, 124, 0.1), rgba(22, 157, 90, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.decorative-circle-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(242, 201, 76, 0.1), rgba(255, 230, 109, 0.1));
    border-radius: 50%;
    z-index: 1;
}

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

/* Classes para Como Funciona */
.process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.process-step-flex {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.step-content-card {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.step-decoration-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #26d07c, #169d5a);
    border-radius: 50%;
    opacity: 0.1;
}

.step-decoration-2 {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #26d07c, #169d5a);
    border-radius: 50%;
    opacity: 0.1;
}

.step-decoration-3 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #F2C94C, #FFE66D);
    border-radius: 50%;
    opacity: 0.1;
}

.step-content-flex {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.step-visual-container {
    flex: 0 0 200px;
    text-align: center;
}

.step-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #26d07c, #169d5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 15px 40px rgba(38, 208, 124, 0.3);
}

.step-icon-yellow {
    background: linear-gradient(135deg, #F2C94C, #FFE66D);
    box-shadow: 0 15px 40px rgba(242, 201, 76, 0.3);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #F2C94C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 0.9rem;
}

.step-number-blue {
    background: #2B6CB0;
}


.step-text-container {
    flex: 1;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 1rem;
}

.step-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.step-tag {
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.step-tag-blue {
    background: #F0F9FF;
    color: #26d07c;
    border: 1px solid #BFDBFE;
}

.step-tag-green {
    background: #F0FDF4;
    color: #059669;
    border: 1px solid #BBF7D0;
}

.step-tag-yellow {
    background: #FEF3C7;
    color: #D97706;
    border: 1px solid #FDE68A;
}

.step-tag-blue-alt {
    background: #F0F9FF;
    color: #2B6CB0;
    border: 1px solid #BFDBFE;
}

.step-tag-icon {
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
}

.connector-arrow-right {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.connector-arrow-left {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    z-index: 3;
}

.connector-svg {
    width: 80px;
    height: 40px;
}

.connector-path {
    stroke: #2B6CB0;
    stroke-width: 3;
    stroke-linecap: round;
}

.connector-path-green {
    stroke: #26d07c;
}

.connector-arrow-head {
    stroke: #2B6CB0;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.connector-arrow-head-green {
    stroke: #26d07c;
}

/* Classes para CTA Principal */
.cta-main {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.cta-decoration-1 {
    position: absolute;
    top: -50px;
    left: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.1), rgba(0, 191, 166, 0.1));
    border-radius: 50%;
}

.cta-decoration-2 {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(242, 201, 76, 0.1), rgba(255, 230, 109, 0.1));
    border-radius: 50%;
}

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

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1A202C;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Classes para Depoimentos */
.testimonials-section {
    background: linear-gradient(135deg, #F7FAFC 0%, #E2E8F0 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-decoration-1 {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(43, 108, 176, 0.1), rgba(0, 191, 166, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.testimonials-decoration-2 {
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(242, 201, 76, 0.1), rgba(255, 230, 109, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonials-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.testimonials-subtitle {
    font-size: 1.3rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.testimonial-card-decoration {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2B6CB0, #26d07c);
    border-radius: 50%;
    opacity: 0.1;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Media Queries do CSS Crítico */
@media (max-width: 768px) {
    /* Header Mobile */
    .header-integrated {
        padding: 1rem 0;
    }
    
    /* Logo removida - usando tamanho desktop (80px) */
    
    .nav-white { display: none; }
    .header-cta { display: none; }
    .mobile-menu-btn { display: flex; }
    .floating-btn { display: none; }
    
    /* Hero Mobile */
    .hero { 
        padding: 60px 0; 
        overflow: hidden;
    }
    
    .hero .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-content { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
        text-align: center;
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-text { 
        text-align: center; 
        order: 1;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-title { 
        font-size: 1.8rem; 
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle { 
        font-size: 1rem; 
        margin-bottom: 2rem;
    }
    
    .hero-stats { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1rem; 
        margin-bottom: 2rem;
        max-width: 100%;
        width: 100%;
    }
    
    .stat-card { 
        padding: 1rem; 
    }
    
    .stat-icon { 
        width: 40px; 
        height: 40px; 
    }
    
    .stat-icon svg { 
        width: 20px; 
        height: 20px; 
    }
    
    .stat-title { 
        font-size: 0.9rem; 
    }
    
    .hero-cta { 
        justify-content: center; 
        flex-direction: column;
        gap: 0.5rem;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-cta .btn { 
        padding: 0.75rem 1.5rem; 
        font-size: 1rem; 
        width: 100%;
        max-width: 300px;
    }
    
    .hero-image { 
        order: 0; 
        margin-bottom: 2rem;
        max-width: 100%;
        width: 100%;
    }
    
    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Benefits Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    /* Process Mobile */
    .process-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .step-visual {
        margin-bottom: 1rem;
    }
    
    .step-text {
        text-align: center;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    
    /* Treine nas melhores redes - Mobile */
    .section .container > div {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section .container > div > div:first-child {
        min-height: 300px;
    }
    
    .section .container > div > div:last-child {
        padding: 1.5rem;
    }
    
    /* Grid de parceiros mobile */
    .section .container > div > div:last-child > div:last-child > div {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .section .container > div > div:last-child > div:last-child > div > div {
        padding: 0.5rem;
    }
    
    .section .container > div > div:last-child > div:last-child > div > div h4,
    .section .container > div > div:last-child > div:last-child > div > div h5 {
        font-size: 0.5rem;
    }
}

/* Mobile Extra Small */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 100%;
        width: 100%;
    }
    
    .stat-card {
        padding: 0.75rem;
    }
    
    .stat-icon {
        width: 36px;
        height: 36px;
    }
    
    .stat-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .stat-title {
        font-size: 0.8rem;
    }
    
    .hero-cta .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        max-width: 100%;
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Performance optimizations */
.card,
.btn,
.icon,
.benefit-card,
.testimonial-card {
    will-change: transform;
}

.hero {
    will-change: background;
}

/* ========================================
   MEDIA QUERIES - ORGANIZADAS POR PRIORIDADE
   ======================================== */

/* Desktop Large - 1200px+ */
@media (max-width: 1200px) {
    .hero-overlay {
        width: 100%;
    }
    
    .hero-content {
        max-width: 100%;
        width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Desktop Medium - 1024px */
@media (max-width: 1024px) and (min-width: 769px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 800px;
    }
    
    .plans-grid > div:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Garantia - 2 colunas no tablet */
    #garantia .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    #garantia .grid > div:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Contato - 2 colunas no tablet */
    #contato .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .step-content {
        padding: 2rem !important;
    }
    
    .step-visual {
        flex: none !important;
        margin-bottom: 2rem;
    }
    
    .step-text {
        flex: none !important;
    }
    
    .connector-arrow {
        display: none;
    }
}

/* Tablet - 800px */
@media (max-width: 800px) {
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    /* Footer tablet - 2 colunas */
    footer div[style*="grid-template-columns: 1fr 1fr 1fr"] {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    footer div[style*="grid-template-columns: 1fr 1fr 1fr"] > div:last-child {
        grid-column: 1 / -1 !important;
        margin-top: 1rem !important;
    }
}

/* Tablet Small - 768px */
@media (max-width: 768px) {
    
    /* Otimizar animações em mobile */
    .hero::before,
    .hero::after {
        display: none;
    }
    
    /* Reduzir animações em dispositivos móveis */
    .benefit-icon {
        animation: none;
    }
    
    .stat-icon {
        animation: none;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-left {
        padding: 2rem 1rem;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 2rem 1rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-content: center;
    }
    
    .stat-card {
        padding: 1rem 0.5rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        color: white;
    }
    
    .stat-title {
        font-size: 0.8rem;
    }
    
    .hero-main-image {
        max-width: 250px;
        height: 350px;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }
    
    .hero-actions .btn {
        min-width: 240px;
        height: 50px;
        padding: 14px 24px;
        flex-shrink: 1;
        white-space: normal;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 0.75rem 0;
    }
    
    .header.scrolled {
        padding: 0.5rem 0;
    }
    
    .nav {
        display: none;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 80px 0 60px;
        min-height: auto;
        padding-top: 60px !important;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
    
    .floating-btn {
        display: none;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    form {
        padding: 1.5rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    /* Responsividade para seção de planos */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }
    
    .plans-grid > div {
        transform: none !important;
        scale: 1 !important;
    }
    
    .plans-grid h3 {
        font-size: 1.3rem;
    }
    
    .plans-grid .price {
        font-size: 2.5rem;
    }
    
    /* Responsividade para seção de garantia */
    #garantia .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
    }
    
    #garantia .grid > div {
        padding: 2rem;
    }
    
    #garantia .grid h3 {
        font-size: 1.2rem;
    }
    
    #garantia .grid p {
        font-size: 0.95rem;
    }
    
    /* Responsividade para seção de contato */
    #contato .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    #contato .grid > div {
        padding: 2rem;
    }
    
    #contato .grid h3 {
        font-size: 1.3rem;
    }
    
    #contato .grid form {
        grid-template-columns: 1fr;
    }
    
    /* Header Mobile */
    .header-integrated {
        padding: 1rem 0;
    }
    
    /* Logo removida - usando tamanho desktop (80px) */
    
    .nav-white { display: none; }
    .header-cta { display: none; }
    .mobile-menu-btn { display: flex; }
    .floating-btn { display: none; }
    
    /* Hero Mobile */
    .hero { 
        padding: 60px 0; 
        overflow: hidden;
    }
    
    .hero .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-content { 
        grid-template-columns: 1fr; 
        gap: 2rem; 
        text-align: center;
        padding: 0 1rem;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-text { 
        text-align: center; 
        order: 1;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-title { 
        font-size: 1.8rem; 
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle { 
        font-size: 1rem; 
        margin-bottom: 2rem;
    }
    
    .hero-stats { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1rem; 
        margin-bottom: 2rem;
        max-width: 100%;
        width: 100%;
    }
    
    .stat-card { 
        padding: 1rem; 
    }
    
    .stat-icon { 
        width: 40px; 
        height: 40px; 
    }
    
    .stat-icon svg { 
        width: 20px; 
        height: 20px; 
    }
    
    .stat-title { 
        font-size: 0.9rem; 
    }
    
    .hero-cta { 
        justify-content: center; 
        flex-direction: column;
        gap: 0.5rem;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-cta .btn { 
        padding: 0.75rem 1.5rem; 
        font-size: 1rem; 
        width: 100%;
        max-width: 300px;
    }
    
    .hero-image { 
        order: 0; 
        margin-bottom: 2rem;
        max-width: 100%;
        width: 100%;
    }
    
    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Benefits Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    /* Process Mobile */
    .process-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .step-visual {
        margin-bottom: 1rem;
    }
    
    .step-text {
        text-align: center;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    
    /* Treine nas melhores redes - Mobile */
    .section .container > div {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section .container > div > div:first-child {
        min-height: 300px;
    }
    
    .section .container > div > div:last-child {
        padding: 1.5rem;
    }
    
    /* Grid de parceiros mobile */
    .section .container > div > div:last-child > div:last-child > div {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
    
    .section .container > div > div:last-child > div:last-child > div > div {
        padding: 0.5rem;
    }
    
    .section .container > div > div:last-child > div:last-child > div > div h4,
    .section .container > div > div:last-child > div:last-child > div > div h5 {
        font-size: 0.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .benefit-card:hover {
        transform: translateY(-6px) rotateX(2deg);
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
    
    .benefit-content h3 {
        font-size: 0.9rem;
    }
    
    .benefits-header p {
        font-size: 1.2rem;
    }
    
    .how-it-works-process {
        padding: 0 1rem;
    }
    
    .process-step {
        margin-bottom: 3rem !important;
    }
    
    .step-content {
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }
    
    .step-visual {
        margin-bottom: 1.5rem;
    }
    
    .step-visual > div:first-child {
        width: 80px !important;
        height: 80px !important;
    }
    
    .step-visual > div:first-child svg {
        width: 30px !important;
        height: 30px !important;
    }
    
    .step-text h3 {
        font-size: 1.4rem !important;
    }
    
    .step-text p {
        font-size: 1rem !important;
    }
    
    .step-text > div {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }
    
    .step-text > div > div {
        width: 100% !important;
        text-align: center;
    }
    
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .testimonial-card blockquote {
        font-size: 1rem !important;
    }
    
    .testimonial-card h4 {
        font-size: 1rem !important;
    }
    
    .testimonial-card p {
        font-size: 0.9rem !important;
    }
}



/* Mobile Medium - 600px */
@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-actions .btn {
        min-width: 150px;
        font-size: 0.85rem;
        padding: 10px 16px;
    }
    
    /* Footer responsivo */
    footer {
        padding: 1.5rem 0;
    }
    
    footer .container {
        padding: 0 0.5rem;
    }
}

/* Mobile Small - 480px */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .card {
        padding: 1rem;
    }
    
    form {
        padding: 1rem;
    }
    
    /* Botão flutuante removido do mobile */
    
    /* Footer mobile */
    footer {
        padding: 2rem 0;
    }
    
    footer .container {
        padding: 0 1rem;
    }
    
    /* Footer mobile - layout de coluna única */
    footer div[style*="grid-template-columns: 1fr 1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
        text-align: center !important;
    }
    
    /* Ajustar logo no mobile */
    footer img {
        height: 280px !important;
        width: auto !important;
    }
    
    /* Ajustar grid de benefícios no mobile */
    footer div[style*="grid-template-columns: 1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }
    
    /* Ajustar links sociais no mobile */
    footer div[style*="display: flex; gap: 0.75rem"] {
        justify-content: center !important;
        margin-top: 1rem !important;
    }
    
    /* Grid responsivo para telas muito pequenas */
    .grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-actions .btn {
        min-width: 120px;
        font-size: 0.8rem;
        padding: 8px 12px;
        height: 44px;
    }
    
    /* Seção "Como Funciona" - Mobile Pequeno */
    #como-funciona .step-content {
        padding: 1.5rem !important;
    }
    
    #como-funciona .step-visual > div:first-child {
        width: 80px !important;
        height: 80px !important;
    }
    
    #como-funciona .step-visual > div:first-child svg {
        width: 30px !important;
        height: 30px !important;
    }
    
    #como-funciona .step-text h3 {
        font-size: 1.2rem !important;
    }
    
    #como-funciona .step-text p {
        font-size: 0.95rem !important;
    }
    
    #como-funciona .step-text > div > div {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    /* Footer mobile - telas muito pequenas */
    footer {
        padding: 1.5rem 0;
    }
    
    footer img {
        height: 220px !important;
    }
    
    footer p {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    footer h4 {
        font-size: 1rem !important;
    }
    
    footer li {
        font-size: 0.8rem !important;
    }
    
    .benefit-card {
        padding: 2rem 1.5rem;
        border-radius: 18px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }
    
    .benefit-content h3 {
        font-size: 0.85rem;
    }
    
    .benefit-content p {
        font-size: 1rem;
    }
    
    .step-content {
        padding: 1rem !important;
    }
    
    .step-text h3 {
        font-size: 1.2rem !important;
    }
    
    .step-text p {
        font-size: 0.95rem !important;
    }
    
    .step-text > div > div {
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }
    
    .testimonial-card {
        padding: 1.5rem !important;
    }
    
    .testimonial-card blockquote {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        max-width: 100%;
        width: 100%;
    }
    
    .stat-card {
        padding: 0.75rem;
    }
    
    .stat-icon {
        width: 36px;
        height: 36px;
    }
    
    .stat-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .stat-title {
        font-size: 0.8rem;
    }
    
    .hero-cta .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        max-width: 100%;
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero::before,
    .hero::after,
    .benefit-icon,
    .stat-icon {
        animation: none;
    }
    
    .benefit-card:hover,
    .testimonial-card:hover,
    .btn:hover {
        transform: none;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #4A90E2;
        --text-color: #000000;
        --text-light: #333333;
    }
}

/* Print styles */
@media print {
    .header,
    .floating-btn,
    footer {
        display: none;
    }
    
    .hero {
        background: none;
        color: #000;
    }
    
    .section {
        break-inside: avoid;
    }
}

/* Otimizações para dispositivos com preferência por movimento reduzido */
@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after,
    .benefit-icon,
    .stat-icon {
        animation: none;
    }
    
    .benefit-card:hover,
    .testimonial-card:hover,
    .btn:hover {
        transform: none;
    }
}

/* Lazy loading placeholder */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Estilos para Depoimentos - Design Moderno */
.testimonial-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(43, 108, 176, 0.05), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15) !important;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
}

.testimonial-avatar {
    transition: all 0.3s ease;
}

/* Animações para depoimentos */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Responsividade para depoimentos */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .testimonial-card blockquote {
        font-size: 1rem !important;
    }
    
    .testimonial-card h4 {
        font-size: 1rem !important;
    }
    
    .testimonial-card p {
        font-size: 0.9rem !important;
    }
}


@media (max-width: 480px) {
    .testimonial-card {
        padding: 1.5rem !important;
    }
    
    .testimonial-card blockquote {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
}

/* Media Query Consolidada para 768px */
@media (max-width: 768px) {
    /* Container e Layout */
    .container {
        padding: 0 15px;
    }
    
    /* Header Mobile */
    .header {
        padding: 0.75rem 0;
    }
    
    .header.scrolled {
        padding: 0.5rem 0;
    }
    
    .header-integrated {
        padding: 1rem 0;
    }
    
    /* Logo removida - usando tamanho desktop (80px) */
    
    .nav {
        display: none;
    }
    
    .nav-white { 
        display: none; 
    }
    
    .header-cta { 
        display: none; 
    }
    
    .mobile-menu-btn { 
        display: flex; 
    }
    
    .floating-btn { 
        display: none; 
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 80vh;
        padding: 2rem 0;
        overflow: hidden;
    }
    
    .hero .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 2rem 1rem;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
        order: 1;
        max-width: 100%;
        width: 100%;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-left {
        padding: 2rem 1rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        justify-content: center;
    }
    
    .stat-card {
        padding: 1rem 0.5rem;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        color: white;
        animation: none;
    }
    
    .stat-title {
        font-size: 0.8rem;
    }
    
    .hero-main-image {
        max-width: 250px;
        height: 350px;
    }
    
    .hero-actions {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-top: 2rem;
    }
    
    .hero-actions .btn {
        min-width: 240px;
        height: 50px;
        padding: 14px 24px;
        flex-shrink: 1;
        white-space: normal;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .hero-ctas .btn {
        width: 100%;
        text-align: center;
        padding: 14px 24px;
    }
    
    /* Otimizar animações em mobile */
    .hero::before,
    .hero::after {
        display: none;
    }
    
    .benefit-icon {
        animation: none;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefit-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .benefit-card:hover {
        transform: translateY(-6px) rotateX(2deg);
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }
    
    .benefit-content h3 {
        font-size: 0.9rem;
    }
    
    .benefits-header p {
        font-size: 1.2rem;
    }
    
    /* How It Works */
    .how-it-works-process {
        padding: 0 1rem;
    }
    
    .process-step {
        margin-bottom: 3rem !important;
    }
    
    .step-content {
        padding: 1.5rem !important;
        border-radius: 16px !important;
    }
    
    .step-visual {
        margin-bottom: 1.5rem;
    }
    
    .step-visual > div:first-child {
        width: 80px !important;
        height: 80px !important;
    }
    
    .step-visual > div:first-child svg {
        width: 30px !important;
        height: 30px !important;
    }
    
    .step-text h3 {
        font-size: 1.4rem !important;
    }
    
    /* Testimonials */
    .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .testimonial-card blockquote {
        font-size: 1rem !important;
    }
    
    .testimonial-card h4 {
        font-size: 1rem !important;
    }
    
    .testimonial-card p {
        font-size: 0.9rem !important;
    }
}

