/* =============================================
   LP Lumni x Sponte — sponte.css
   ============================================= */

:root {
    --primary-color: #083FCF;
    --secondary-color: #FC7D55;
    --tertiary-color: #B073FF;
    --quaternary-color: #FFE4DC;
    --senary-color: #EFE2FF;
    --text-color: #1F2937;
    --text-light: #6b7280;
    --background-color: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 40px rgba(8,63,207,0.12);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    --font-family-headings: 'Outfit', sans-serif;
    --font-family-body: 'Nunito', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

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

a { text-decoration: none; color: inherit; }

/* =============================================
   UTILITY
   ============================================= */
.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--senary-color);
    color: var(--primary-color);
    font-family: var(--font-family-headings);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 30px;
    margin-bottom: var(--spacing-md);
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    font-family: var(--font-family-headings);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.15;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-family: var(--font-family-body);
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
    margin-top: var(--spacing-xs);
}

.highlight-blue  { color: var(--primary-color); }
.highlight-orange { color: var(--secondary-color); }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-family-headings);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--tertiary-color) 100%);
    color: #fff;
    padding: 0 var(--spacing-md);
    height: 56px;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--tertiary-color) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-large {
    height: 60px;
    padding: 0 var(--spacing-lg);
    font-size: 1.05rem;
}

.btn-full { width: 100%; }

/* =============================================
   HERO
   ============================================= */
.sp-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a1a7a 50%, var(--tertiary-color) 100%);
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
}

.sp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--spacing-xxl);
    align-items: start;
}

/* --- Hero Left --- */
.sp-hero-left {
    color: #fff;
    padding-top: var(--spacing-sm);
}

.sp-partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
    padding: 0.65rem 1.5rem;
    border-radius: 30px;
    margin-bottom: var(--spacing-lg);
}

.sp-partnership-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-color);
    animation: pulse-dot 1.8s infinite;
}

.sp-partnership-badge .badge-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.sp-partnership-badge .badge-logo.logo-lumni {
    height: 28px;
}

.sp-partnership-badge .badge-logo.logo-sponte {
    height: 36px;
}

.sp-partnership-badge .badge-plus {
    font-family: var(--font-family-headings);
    font-size: 1.3rem;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    line-height: 1;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

.sp-hero-title {
    font-family: var(--font-family-headings);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: var(--spacing-md);
    color: #fff;
}

.sp-hero-title .title-accent {
    background: linear-gradient(135deg, var(--secondary-color), #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-hero-subtitle {
    font-family: var(--font-family-body);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    margin-bottom: var(--spacing-lg);
    max-width: 500px;
}

.sp-hero-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: var(--spacing-xl);
}

.sp-hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-family: var(--font-family-body);
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
}

.sp-hero-bullets .bullet-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(252,125,85,0.25);
    border: 1px solid rgba(252,125,85,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.7rem;
    color: var(--secondary-color);
}

.sp-hero-logos {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255,255,255,0.15);
}

.sp-hero-logos .logos-label {
    font-family: var(--font-family-body);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
}

.sp-logo-lumni {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
}

.sp-logos-divider {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.25);
}

.sp-logo-sponte-text {
    font-family: var(--font-family-headings);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}

/* --- Hero Right (Form Card) --- */
.sp-hero-form {
    position: sticky;
    top: 24px;
}

.sp-form-card {
    background: #fff;
    border-radius: 20px;
    padding: var(--spacing-xl) var(--spacing-lg);
    box-shadow: var(--shadow-xl);
}

.sp-form-card-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.sp-form-card-header h2 {
    font-family: var(--font-family-headings);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.3;
    margin-bottom: 0.35rem;
}

.sp-form-card-header p {
    font-family: var(--font-family-body);
    font-size: 0.9rem;
    color: var(--text-light);
}

/* =============================================
   FORM
   ============================================= */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group label {
    font-family: var(--font-family-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-required { color: var(--secondary-color); }

.form-group input,
.form-group select {
    font-family: var(--font-family-body);
    font-size: 0.9rem;
    color: var(--text-color);
    background: #f9fafb;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 0.65rem 0.9rem;
    width: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.2rem;
    cursor: pointer;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(8,63,207,0.1);
    background: #fff;
}

.form-group input.error,
.form-group select.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.form-group input::placeholder { color: #9ca3af; }

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 90px;
    gap: 0.6rem;
}

.form-radio-group {
    display: flex;
    gap: var(--spacing-sm);
    padding: 0.5rem 0.75rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius);
    background: #f9fafb;
    transition: border-color 0.2s ease;
}

.form-radio-group.error { border-color: #ef4444; }

.form-radio-label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-family-body);
    font-size: 0.88rem;
    color: var(--text-color);
    cursor: pointer;
}

.form-radio-label input[type="radio"] {
    width: auto;
    accent-color: var(--primary-color);
}

.btn-submit {
    margin-top: 0.4rem;
    width: 100%;
    height: 56px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.form-privacy-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    line-height: 1.5;
}

.form-privacy-note i { margin-right: 0.25rem; }

/* Form feedback */
.form-success-msg {
    display: none;
    text-align: center;
    padding: var(--spacing-lg);
}

.form-success-msg .success-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 1.5rem;
    color: #fff;
}

.form-success-msg h3 {
    font-family: var(--font-family-headings);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.4rem;
}

.form-success-msg p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* =============================================
   CAPTURE SECTION (produtos/pilares)
   ============================================= */
.sp-capture {
    padding: var(--spacing-xxl) 0;
    background: #fff;
}

.sp-capture .section-title {
    color: var(--text-color);
}

.sp-capture .section-title .highlight-blue {
    color: var(--primary-color);
}

.sp-capture .container {
    max-width: 1280px;
}

.sp-capture-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--tertiary-color));
    border-radius: 2px;
    margin: var(--spacing-xxl) auto var(--spacing-xl);
}

.sp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.sp-card {
    background: #fff;
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    padding: var(--spacing-xxl) var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sp-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,63,207,0.03), rgba(176,115,255,0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.sp-card-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--senary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.1rem;
    margin-bottom: var(--spacing-lg);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.sp-card-icon.orange { background: var(--quaternary-color); }
.sp-card-icon.purple { background: var(--senary-color); }
.sp-card-icon.blue   { background: rgba(8,63,207,0.08); }

.sp-card h3 {
    font-family: var(--font-family-headings);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
}

.sp-card > p {
    font-family: var(--font-family-body);
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.sp-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    width: 100%;
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.sp-card-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-family-body);
    font-size: 0.95rem;
    color: var(--text-color);
    text-align: left;
}

.sp-card-features .feat-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.6rem;
    color: #fff;
}

.sp-card-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-family: var(--font-family-headings);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

.sp-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.05);
}

/* =============================================
   PROOF / NUMBERS
   ============================================= */
.sp-proof {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3a1a7a 50%, var(--tertiary-color) 100%);
}

.sp-proof .section-title,
.sp-proof .section-subtitle {
    color: #fff;
}

.sp-proof .section-subtitle { color: rgba(255,255,255,0.75); }

.sp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.sp-stat-item {
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sp-stat-item:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-4px);
}

.sp-stat-number {
    font-family: var(--font-family-headings);
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, rgba(255,179,71,0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.sp-stat-label {
    font-family: var(--font-family-body);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

/* =============================================
   PARTNERSHIP (Lumni + Sponte)
   ============================================= */
.sp-partnership {
    padding: var(--spacing-xxl) 0;
    background: #fafafa;
}

.sp-partnership-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.sp-logos-pair {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.sp-logos-pair .logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-lg);
    background: #fff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    min-height: 72px;
}

.sp-logos-pair .logo-item img {
    height: 32px;
    width: auto;
}

.sp-logos-pair .logo-item .sponte-wordmark {
    font-family: var(--font-family-headings);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.sp-logos-plus {
    font-family: var(--font-family-headings);
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1;
}

.sp-partnership-tagline {
    font-family: var(--font-family-headings);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.sp-partnership-desc {
    font-family: var(--font-family-body);
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: var(--spacing-xl);
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.sp-partnership-pills {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.sp-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    font-family: var(--font-family-body);
    font-size: 0.88rem;
    font-weight: 600;
}

.sp-pill.pill-sponte {
    background: rgba(8,63,207,0.08);
    color: var(--primary-color);
}

.sp-pill.pill-lumni {
    background: rgba(252,125,85,0.1);
    color: #d9572c;
}

.sp-pill.pill-result {
    background: rgba(176,115,255,0.1);
    color: #7c3aed;
}

/* =============================================
   FINAL CTA
   ============================================= */
.sp-final-cta {
    padding: var(--spacing-xxl) 0;
    background: #fff;
    text-align: center;
}

.sp-final-cta .section-subtitle {
    margin-bottom: var(--spacing-xl);
}

.sp-cta-btn-wrap {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* =============================================
   BUTTON PRESS & FORM HIGHLIGHT EFFECTS
   ============================================= */

/* Micro press on click — usa keyframes para garantir animação em todos os browsers */
@keyframes sp-btn-press {
    0%   { transform: scale(1)    translateY(0); }
    40%  { transform: scale(0.95) translateY(2px); }
    100% { transform: scale(1)    translateY(0); }
}

.sp-btn-pressed {
    animation: sp-btn-press 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97) both !important;
}

/* Glow pulse no form card ao chegar via scroll */
@keyframes sp-form-glow {
    0%   { box-shadow: var(--shadow-xl); }
    30%  { box-shadow: 0 0 0 8px rgba(252,125,85,0.2), 0 20px 40px rgba(8,63,207,0.2); }
    65%  { box-shadow: 0 0 0 4px rgba(176,115,255,0.15), 0 20px 40px rgba(8,63,207,0.15); }
    100% { box-shadow: var(--shadow-xl); }
}

.sp-form-card.sp-form-highlight {
    animation: sp-form-glow 1.4s ease-out both;
}

/* =============================================
   MOBILE STICKY CTA
   ============================================= */
.sp-mobile-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0.85rem var(--spacing-sm);
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.sp-mobile-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    max-width: 600px;
    margin: 0 auto;
}

.sp-mobile-sticky-text {
    font-family: var(--font-family-headings);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
}

.sp-mobile-sticky-text span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
}

.sp-mobile-sticky .btn {
    flex-shrink: 0;
    height: 46px;
    padding: 0 1.25rem;
    font-size: 0.9rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .sp-hero-grid {
        grid-template-columns: 1fr 380px;
        gap: var(--spacing-xl);
    }

    .sp-hero-title { font-size: 2.25rem; }

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

@media (max-width: 900px) {
    .sp-hero {
        padding: var(--spacing-xl) 0;
        min-height: auto;
        align-items: center;
    }

    .sp-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        align-items: center;
    }

    .sp-hero-left {
        text-align: center;
    }

    .sp-partnership-badge {
        justify-content: center;
    }

    .sp-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .sp-hero-bullets {
        align-items: center;
    }

    .sp-hero-bullets li {
        justify-content: center;
    }

    .sp-hero-form {
        position: static;
        display: flex;
        justify-content: center;
    }

    .sp-form-card {
        width: 100%;
        max-width: 420px;
    }

    .sp-hero-title { font-size: 2.25rem; }

    .sp-cards-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .sp-card {
        align-items: center;
        text-align: center;
    }

    .sp-card-features {
        align-items: center;
    }

    .sp-card-features li {
        justify-content: flex-start;
        max-width: 280px;
        margin: 0 auto;
    }

    .sp-mobile-sticky { display: flex; }

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

    /* Crescer e Agente IA — centralizados no mobile, explicação antes das fotos */
    .crescer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .crescer-section .crescer-content {
        order: 1;
        text-align: center;
    }

    .crescer-section .crescer-images {
        order: 2;
    }

    .agente-ia-section .crescer-content {
        order: 1;
        text-align: center;
    }

    .agente-ia-section .agente-ia-chat {
        order: 2;
    }

    .crescer-content {
        text-align: center;
    }

    .crescer-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .agente-ia-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .agente-ia-grid .crescer-content {
        text-align: center;
    }

    .agente-ia-chat {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    .crescer-images {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .crescer-secondary-images {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .sp-hero-grid {
        justify-items: center;
    }

    .sp-hero-title { font-size: 2rem; }

    .sp-hero-subtitle { font-size: 1rem; }

    .sp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
        justify-items: center;
    }

    .sp-stat-item {
        width: 100%;
        max-width: 160px;
    }

    .sp-stat-number { font-size: 2.2rem; }

    .sp-partnership-tagline { font-size: 1.35rem; }

    .sp-partnership-desc { font-size: 0.97rem; }

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

    .sp-capture, .sp-proof, .sp-partnership, .sp-final-cta {
        padding: var(--spacing-xl) 0;
    }

    .sp-partnership-pills {
        justify-content: center;
    }

    .sp-cards-grid {
        align-items: center;
    }

    .sp-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .sp-hero-title { font-size: 1.85rem; }

    .sp-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-xs);
        justify-items: center;
    }

    .sp-stat-item {
        max-width: 140px;
    }

    .sp-stat-number { font-size: 1.9rem; }

    .sp-logos-pair {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .sp-logos-plus { transform: rotate(90deg); }

    .sp-form-card {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .btn-large { height: 54px; font-size: 0.97rem; }

    .sp-mobile-sticky-inner {
        flex-direction: column;
        text-align: center;
    }

    .sp-mobile-sticky .btn {
        width: 100%;
        justify-content: center;
    }

    .section-header {
        align-items: center;
        text-align: center;
    }

    .sp-capture-divider {
        margin-left: auto;
        margin-right: auto;
    }
}
