/* -------------------------------------------
   PLANWIN LANDING PAGE - Estilos
   ------------------------------------------- */

:root {
  --pw-blue-900: #0a1b4d;
  --pw-blue-800: #0d2b7a;
  --pw-blue-700: #103090;
  --pw-blue-600: #165dff;
  --pw-blue-500: #3b82f6;
  --pw-blue-200: rgba(22, 93, 255, 0.10);
  --pw-green: #10b981;
  --pw-purple: #8b5cf6;
  --pw-orange: #f59e0b;
  --pw-gray-600: #475569;
  --pw-gray-400: #94a3b8;
  --pw-text: #0f172a;
  --pw-text-light: #64748b;
  --pw-bg: #ffffff;
  --pw-bg-alt: #f8fafc;
  --pw-transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --pw-transition-smooth: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --pw-shadow-sm: 0 1px 2px rgba(11, 16, 32, 0.04);
  --pw-shadow-md: 0 4px 12px rgba(11, 16, 32, 0.06);
  --pw-shadow-lg: 0 12px 40px rgba(11, 16, 32, 0.08);
}

/* Buttons */
.pw-btn { display: inline-flex; align-items: center; gap: 10px; padding: 13px 26px; border-radius: 10px; font-weight: 600; font-size: 14px; font-family: inherit; letter-spacing: -0.01em; text-decoration: none; cursor: pointer; transition: transform var(--pw-transition-fast), box-shadow var(--pw-transition-fast), background var(--pw-transition-fast), color var(--pw-transition-fast); }
.pw-btn--primary { color: #fff; background: linear-gradient(135deg, var(--pw-blue-600), var(--pw-blue-700)); box-shadow: 0 6px 20px rgba(22, 93, 255, 0.3); }
.pw-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(22, 93, 255, 0.4); }
.pw-btn--outline { color: var(--pw-blue-700); background: transparent; border: 1.5px solid rgba(22, 93, 255, 0.2); }
.pw-btn--outline:hover { background: rgba(22, 93, 255, 0.05); border-color: rgba(22, 93, 255, 0.4); transform: translateY(-2px); }
.pw-btn--whatsapp { color: #fff; background: #25d366; box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3); }
.pw-btn--whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4); background: #22c55e; }
.pw-btn--email { color: #fff; background: linear-gradient(135deg, var(--pw-blue-600), var(--pw-blue-700)); box-shadow: 0 6px 20px rgba(22, 93, 255, 0.3); }
.pw-btn--email:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(22, 93, 255, 0.4); }
.pw-btn--phone { color: #fff; background: linear-gradient(135deg, #6366f1, #4f46e5); box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3); }
.pw-btn--phone:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(99, 102, 241, 0.4); }

/* Section Header */
.pw-section-header { text-align: center; margin-bottom: 48px; }
.pw-section-header__badge { display: inline-block; padding: 6px 18px; border-radius: 99px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--pw-blue-600); background: var(--pw-blue-200); margin-bottom: 16px; }
.pw-section-header__badge--light { color: #93c5fd; background: rgba(59, 130, 246, 0.15); }
.pw-section-header__title { margin: 0 0 14px; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; color: var(--pw-blue-900); }
.pw-section-header__title--light { color: #ffffff; }
.pw-section-header__subtitle { margin: 0 auto; font-size: 0.95rem; line-height: 1.65; color: var(--pw-gray-600); max-width: 580px; }
.pw-section-header__subtitle--light { color: rgba(255, 255, 255, 0.7); }

/* Hero */
.pw-hero { position: relative; overflow: hidden; padding: 100px 0 80px; }
.pw-hero__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 70% 50% at 10% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 50%), radial-gradient(ellipse 50% 50% at 85% 100%, rgba(16, 48, 144, 0.06) 0%, transparent 50%), linear-gradient(180deg, #f8faff 0%, #ffffff 100%); }
.pw-hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 0.9fr; gap: 48px; align-items: center; }
.pw-hero__content { display: flex; flex-direction: column; gap: 18px; }
.pw-hero__badge { display: inline-flex; align-self: flex-start; padding: 6px 18px; border-radius: 99px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--pw-blue-600); background: var(--pw-blue-200); }
.pw-hero__title { margin: 0; line-height: 1.15; }
.pw-hero__title strong { display: block; font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; letter-spacing: -0.03em; color: var(--pw-blue-900); line-height: 1; }
.pw-hero__title span { display: block; font-size: clamp(1.1rem, 2.5vw, 1.6rem); font-weight: 500; color: var(--pw-gray-600); margin-top: 8px; letter-spacing: -0.02em; }
.pw-hero__subtitle { margin: 0; font-size: 1rem; line-height: 1.7; color: var(--pw-text-light); max-width: 580px; }
.pw-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 4px; }
.pw-hero__stats { display: flex; gap: 32px; margin-top: 14px; padding-top: 20px; border-top: 1px solid rgba(11, 16, 32, 0.06); }
.pw-hero__stat { display: flex; flex-direction: column; gap: 2px; }
.pw-hero__stat strong { font-size: 0.9rem; font-weight: 700; color: var(--pw-blue-800); letter-spacing: -0.01em; }
.pw-hero__stat span { font-size: 0.78rem; color: var(--pw-gray-400); }
.pw-hero__visual { position: relative; display: flex; align-items: center; justify-content: center; }
.pw-hero__img-wrapper { width: 100%; border-radius: 16px; overflow: hidden; box-shadow: var(--pw-shadow-lg); border: 1px solid rgba(11, 16, 32, 0.06); background: linear-gradient(160deg, #0a1b4d 0%, #0d2b7a 40%, #103090 70%, #0b1f5c 100%); padding: 32px; }
.pw-hero__img { width: 75%; height: auto; display: block; margin: 0 auto; }

/* Multi */
.pw-multi { padding: 0 0 60px; }
.pw-multi__inner { display: flex; justify-content: center; }
.pw-multi__card { max-width: 800px; padding: 40px 48px; border-radius: 20px; background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%); border: 1px solid rgba(22, 93, 255, 0.08); box-shadow: var(--pw-shadow-md); text-align: center; }
.pw-multi__icon { display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 18px; background: linear-gradient(135deg, var(--pw-blue-200), rgba(59, 130, 246, 0.12)); color: var(--pw-blue-600); margin-bottom: 20px; }
.pw-multi__card h3 { margin: 0 0 16px; font-size: 1.25rem; font-weight: 700; color: var(--pw-blue-900); letter-spacing: -0.01em; }
.pw-multi__card p { margin: 0 0 10px; font-size: 0.93rem; line-height: 1.65; color: var(--pw-gray-600); }
.pw-multi__card p:last-child { margin-bottom: 0; }
.pw-multi__card strong { color: var(--pw-blue-800); font-weight: 600; }

/* Pillars */
.pw-pillars { padding: 0 0 60px; }
.pw-pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pw-pillar-card { text-align: center; padding: 32px 24px; border-radius: 16px; background: #fff; border: 1px solid rgba(11, 16, 32, 0.06); box-shadow: var(--pw-shadow-sm); transition: transform var(--pw-transition-smooth), box-shadow var(--pw-transition-smooth); }
.pw-pillar-card:hover { transform: translateY(-4px); box-shadow: var(--pw-shadow-lg); }
.pw-pillar-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: 16px; margin-bottom: 18px; }
.pw-pillar-card__icon--blue { background: linear-gradient(135deg, rgba(22,93,255,0.12), rgba(59,130,246,0.06)); color: var(--pw-blue-600); }
.pw-pillar-card__icon--green { background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.06)); color: #059669; }
.pw-pillar-card__icon--purple { background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(139,92,246,0.06)); color: var(--pw-purple); }
.pw-pillar-card h3 { margin: 0 0 10px; font-size: 1.1rem; font-weight: 700; color: var(--pw-blue-900); }
.pw-pillar-card p { margin: 0; font-size: 0.85rem; line-height: 1.6; color: var(--pw-gray-600); }

/* Features Grid */
.pw-features { padding: 60px 0 80px; background: var(--pw-bg-alt); }
.pw-features__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pw-feature-card { position: relative; padding: 28px 22px 24px; border-radius: 16px; background: #fff; border: 1px solid rgba(11, 16, 32, 0.06); box-shadow: var(--pw-shadow-sm); transition: transform var(--pw-transition-smooth), box-shadow var(--pw-transition-smooth), border-color var(--pw-transition-smooth); }
.pw-feature-card:hover { transform: translateY(-4px); box-shadow: var(--pw-shadow-lg); border-color: rgba(22, 93, 255, 0.12); }
.pw-feature-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 14px; margin-bottom: 16px; }
.pw-feature-card__icon--blue { background: linear-gradient(135deg, rgba(22,93,255,0.12), rgba(59,130,246,0.06)); color: var(--pw-blue-600); }
.pw-feature-card__icon--green { background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(16,185,129,0.06)); color: #059669; }
.pw-feature-card__icon--purple { background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(139,92,246,0.06)); color: var(--pw-purple); }
.pw-feature-card__icon--orange { background: linear-gradient(135deg, rgba(245,158,11,0.12), rgba(245,158,11,0.06)); color: #d97706; }
.pw-feature-card h3 { margin: 0 0 8px; font-size: 0.95rem; font-weight: 700; color: var(--pw-blue-900); letter-spacing: -0.01em; }
.pw-feature-card p { margin: 0; font-size: 0.82rem; line-height: 1.6; color: var(--pw-gray-600); }

/* Reports */
.pw-reports { position: relative; overflow: hidden; padding: 70px 0 80px; }
.pw-reports__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 60% 50% at 20% 20%, rgba(59, 130, 246, 0.2) 0%, transparent 55%), radial-gradient(ellipse 50% 60% at 80% 70%, rgba(16, 48, 144, 0.2) 0%, transparent 50%), linear-gradient(160deg, #07132f 0%, #0a1b4d 30%, #0d2b7a 60%, #0b1f5c 100%); }
.pw-reports__bg::after { content: ''; position: absolute; inset: 0; opacity: 0.04; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 64px 64px; }
.pw-reports__inner { position: relative; z-index: 1; }
.pw-reports__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 900px; margin: 0 auto; }
.pw-report-item { display: flex; gap: 18px; padding: 22px 24px; border-radius: 14px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.08); backdrop-filter: blur(10px); transition: transform var(--pw-transition-fast), background var(--pw-transition-fast), border-color var(--pw-transition-fast); }
.pw-report-item:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.15); }
.pw-report-item__number { flex-shrink: 0; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 12px; font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; color: #fff; background: linear-gradient(135deg, var(--pw-blue-500), var(--pw-blue-600)); }
.pw-report-item__content h4 { margin: 0 0 4px; font-size: 0.92rem; font-weight: 700; color: #ffffff; letter-spacing: -0.01em; }
.pw-report-item__content p { margin: 0; font-size: 0.8rem; line-height: 1.55; color: rgba(255, 255, 255, 0.65); }

/* CTA */
.pw-cta { position: relative; overflow: hidden; padding: 50px 0 50px; text-align: center; }
.pw-cta__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(ellipse 60% 50% at 20% 20%, rgba(59, 130, 246, 0.25) 0%, transparent 55%), radial-gradient(ellipse 50% 60% at 80% 70%, rgba(16, 48, 144, 0.25) 0%, transparent 50%), linear-gradient(160deg, #07132f 0%, #0a1b4d 30%, #0d2b7a 60%, #0b1f5c 100%); }
.pw-cta__bg::after { content: ''; position: absolute; inset: 0; opacity: 0.06; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 64px 64px; }
.pw-cta__inner { position: relative; z-index: 1; display: flex; justify-content: center; }
.pw-cta__content { display: flex; flex-direction: column; align-items: center; gap: 20px; max-width: 640px; }
.pw-cta__title { margin: 0; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; letter-spacing: -0.02em; color: #ffffff; }
.pw-cta__subtitle { margin: 0; font-size: 0.95rem; line-height: 1.65; color: rgba(255, 255, 255, 0.75); max-width: 540px; }
.pw-cta__subtitle strong { color: #ffffff; font-weight: 600; }
.pw-cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* Responsive */
@media (max-width: 1100px) {
  .pw-features__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 940px) {
  .pw-hero { padding: 52px 0 40px; }
  .pw-hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .pw-hero__visual { order: -1; }
  .pw-hero__img-wrapper { max-width: 500px; margin: 0 auto; padding: 20px; }
  .pw-hero__content { text-align: center; align-items: center; gap: 14px; }
  .pw-hero__badge { align-self: center; }
  .pw-hero__subtitle { margin: 0 auto; }
  .pw-hero__actions { justify-content: center; }
  .pw-hero__stats { justify-content: center; }
  .pw-pillars__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .pw-reports__grid { grid-template-columns: 1fr; max-width: 500px; }
}
@media (max-width: 768px) {
  .pw-hero__stats { gap: 20px; flex-wrap: wrap; }
  .pw-hero__title strong { font-size: clamp(1.8rem, 5vw, 2.6rem); }
  .pw-hero__title span { font-size: clamp(0.95rem, 2.5vw, 1.3rem); }
  .pw-features__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .pw-multi__card { padding: 30px 28px; }
  .pw-reports { padding: 50px 0 60px; }
  .pw-report-item { padding: 18px 20px; gap: 14px; }
  .pw-cta__actions { flex-direction: column; align-items: center; }
  .pw-cta__actions .pw-btn { justify-content: center; width: 100%; max-width: 320px; }
}
@media (max-width: 560px) {
  .pw-hero { padding: 44px 0 24px; }
  .pw-hero__badge { font-size: 0.72rem; }
  .pw-features { padding: 40px 0 50px; }
  .pw-features__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pw-feature-card { padding: 22px 18px 20px; }
  .pw-section-header { margin-bottom: 32px; }
  .pw-section-header__title { font-size: 1.35rem; }
  .pw-section-header__subtitle { font-size: 0.85rem; }
  .pw-pillar-card { padding: 24px 20px; }
  .pw-pillar-card__icon { width: 48px; height: 48px; }
  .pw-pillar-card h3 { font-size: 1rem; }
  .pw-multi__card { padding: 24px 20px; border-radius: 16px; }
  .pw-multi__icon { width: 56px; height: 56px; border-radius: 14px; }
  .pw-multi__card h3 { font-size: 1.1rem; }
  .pw-reports { padding: 40px 0 48px; }
  .pw-report-item__number { width: 36px; height: 36px; font-size: 0.95rem; border-radius: 10px; }
  .pw-report-item__content h4 { font-size: 0.85rem; }
  .pw-report-item__content p { font-size: 0.75rem; }
  .pw-cta { padding: 60px 0; }
  .pw-cta__title { font-size: 1.3rem; }
  .pw-cta__subtitle { font-size: 0.85rem; }
  .pw-btn { padding: 11px 20px; font-size: 13px; }
}

@keyframes pwFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
