/*
Theme Name: Simpli Broker
Theme URI: https://simpli.com.ar
Author: Simpli
Author URI: https://simpli.com.ar
Description: Tema institucional para Simpli Broker de Seguros — Estar seguro es simple.
Version: 1.0.0
License: Proprietary
Text Domain: simpli
*/

:root {
  --navy: #1B3050;
  --navy-dark: #0F1E35;
  --teal: #00B5AD;
  --teal-light: #00CFC7;
  --teal-pale: #E6F9F8;
  --white: #FFFFFF;
  --gray-50: #F7FAFC;
  --gray-100: #EDF2F7;
  --gray-400: #A0AEC0;
  --gray-600: #718096;
  --gray-800: #2D3748;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--navy);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(27,48,80,0.97);
  backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  border-bottom: 1px solid rgba(0,181,173,0.2);
  transition: background 0.3s;
}
.logo-svg { display: flex; align-items: center; text-decoration: none; }
.logo-text {
  font-size: 1.9rem; font-weight: 800; letter-spacing: -0.5px;
  color: var(--white); line-height: 1; position: relative;
}
.logo-text span { color: var(--teal); }
.logo-swoosh {
  display: block; width: 52px; height: 6px;
  background: var(--teal); border-radius: 3px;
  margin-top: 2px; margin-left: auto; margin-right: 4px;
}
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; transition: color 0.2s; letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--teal); }
.btn-nav {
  background: var(--teal); color: var(--white) !important;
  padding: 9px 22px; border-radius: 6px;
  font-weight: 600 !important; font-size: 0.88rem !important;
  transition: background 0.2s, transform 0.15s !important;
}
.btn-nav:hover { background: var(--teal-light) !important; transform: translateY(-1px); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1a4a6e 100%);
  display: flex; align-items: center; position: relative;
  overflow: hidden; padding: 0 5%;
}
.hero-bg-shape {
  position: absolute; right: -80px; top: -80px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,181,173,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,181,173,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,181,173,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { max-width: 620px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,181,173,0.15); border: 1px solid rgba(0,181,173,0.35);
  color: var(--teal); padding: 6px 16px; border-radius: 20px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge-dot {
  width: 7px; height: 7px; background: var(--teal); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-logo-mark { margin-bottom: 16px; }
.hero-logo-mark .h-logo {
  font-size: 4rem; font-weight: 900; color: var(--white);
  line-height: 1; letter-spacing: -2px;
}
.hero-logo-mark .h-logo span { color: var(--teal); }
.h-swoosh { width: 72px; height: 5px; background: var(--teal); border-radius: 3px; margin-top: 4px; margin-left: 44px; }
.hero-tag { font-size: 0.75rem; color: rgba(255,255,255,0.45); letter-spacing: 3px; text-transform: uppercase; margin-top: 6px; margin-left: 2px; }
h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); font-weight: 700; line-height: 1.18; margin: 28px 0 18px; }
h1 em { color: var(--teal); font-style: normal; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.7); line-height: 1.65; margin-bottom: 38px; max-width: 520px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  background: var(--teal); color: var(--white);
  padding: 14px 32px; border-radius: 8px; border: none;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  text-decoration: none; display: inline-block; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(0,181,173,0.35);
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,181,173,0.45); }
.btn-outline {
  border: 2px solid rgba(255,255,255,0.35); color: var(--white);
  padding: 13px 28px; border-radius: 8px;
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.hero-stats { display: flex; gap: 40px; margin-top: 52px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--teal); line-height: 1; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.hero-right {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 16px; z-index: 2;
}
.hero-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px); border-radius: 14px; padding: 20px 24px;
  color: var(--white); min-width: 240px; transition: transform 0.2s, background 0.2s;
}
.hero-card:hover { transform: translateX(-4px); background: rgba(255,255,255,0.1); }
.hero-card-icon {
  width: 40px; height: 40px; background: rgba(0,181,173,0.2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px; font-size: 1.3rem;
}
.hero-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.hero-card p { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* ── TICKER ── */
.ticker-section {
  background: var(--navy-dark); padding: 22px 0;
  border-top: 1px solid rgba(0,181,173,0.15);
  border-bottom: 1px solid rgba(0,181,173,0.15); overflow: hidden;
}
.ticker-label { text-align: center; font-size: 0.75rem; letter-spacing: 2px; color: var(--gray-400); text-transform: uppercase; margin-bottom: 14px; }
.ticker-track { display: flex; gap: 0; animation: ticker 30s linear infinite; width: max-content; }
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  padding: 10px 32px; color: rgba(255,255,255,0.45);
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.5px;
  white-space: nowrap; border-right: 1px solid rgba(255,255,255,0.08); transition: color 0.2s;
}
.ticker-item:hover { color: var(--teal); }

/* ── SECTIONS ── */
section { padding: 90px 5%; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 1.05rem; color: var(--gray-600); max-width: 560px; line-height: 1.65; }
.section-head { margin-bottom: 56px; }

/* ── PROPUESTA ── */
#propuesta { background: var(--gray-50); }
.prop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.prop-card {
  background: var(--white); border-radius: 16px; padding: 36px 30px;
  border: 1px solid var(--gray-100); transition: all 0.25s; position: relative; overflow: hidden;
}
.prop-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--teal); transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.prop-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(27,48,80,0.1); }
.prop-card:hover::before { transform: scaleX(1); }
.prop-icon { width: 56px; height: 56px; background: var(--teal-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; }
.prop-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--navy); }
.prop-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

/* ── CORPORATIVO ── */
#corporativo { background: var(--white); }
.corp-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.corp-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a6e 100%);
  border-radius: 20px; padding: 48px 40px; position: relative; overflow: hidden;
}
.corp-visual::after {
  content: ''; position: absolute; right: -40px; bottom: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,181,173,0.2) 0%, transparent 70%); border-radius: 50%;
}
.corp-visual h3 { color: var(--white); font-size: 1.4rem; font-weight: 700; margin-bottom: 24px; }
.corp-service {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 18px 20px; margin-bottom: 14px;
  display: flex; align-items: center; gap: 16px; transition: background 0.2s;
}
.corp-service:hover { background: rgba(0,181,173,0.15); }
.corp-service-dot { width: 10px; height: 10px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }
.corp-service p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.4; }
.corp-service strong { color: var(--white); font-size: 0.95rem; display: block; margin-bottom: 2px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.feature-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 0.93rem; color: var(--gray-800); line-height: 1.5; }
.feature-list li::before {
  content: '✓'; width: 22px; height: 22px; background: var(--teal-pale); color: var(--teal);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800; flex-shrink: 0; margin-top: 1px;
}

/* ── DIGITAL ── */
#digital { background: var(--navy); }
#digital .section-title { color: var(--white); }
#digital .section-sub { color: rgba(255,255,255,0.6); }
.digital-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 52px; }
.digital-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 32px 24px; text-align: center;
  transition: all 0.25s; position: relative;
}
.digital-card:hover { background: rgba(0,181,173,0.12); border-color: rgba(0,181,173,0.3); transform: translateY(-4px); }
.digital-num { font-size: 2.5rem; font-weight: 900; color: var(--teal); opacity: 0.25; position: absolute; top: 16px; right: 20px; }
.digital-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.digital-card h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.digital-card p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.55; }

/* ── AFINIDAD ── */
#afinidad { background: var(--gray-50); }
.afin-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.afin-card { border-radius: 16px; padding: 40px 32px; position: relative; overflow: hidden; cursor: default; transition: transform 0.25s; }
.afin-card:hover { transform: scale(1.02); }
.afin-card.dark { background: var(--navy); }
.afin-card.teal { background: var(--teal); }
.afin-card.light { background: var(--white); border: 1px solid var(--gray-100); }
.afin-card.dark h3, .afin-card.teal h3 { color: var(--white); }
.afin-card.dark p { color: rgba(255,255,255,0.6); }
.afin-card.teal p { color: rgba(255,255,255,0.8); }
.afin-card.light h3 { color: var(--navy); }
.afin-card.light p { color: var(--gray-600); }
.afin-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }
.afin-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.afin-card p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px; }
.afin-tag { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px; }
.afin-card.dark .afin-tag { background: rgba(0,181,173,0.2); color: var(--teal); }
.afin-card.teal .afin-tag { background: rgba(255,255,255,0.2); color: var(--white); }
.afin-card.light .afin-tag { background: var(--teal-pale); color: var(--teal); }

/* ── ASEGURADORAS ── */
#aseguradoras { background: var(--white); }
.seg-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; margin-top: 48px; }
.seg-item {
  border: 1px solid var(--gray-100); border-radius: 12px; padding: 18px 12px;
  text-align: center; font-size: 0.8rem; font-weight: 700; color: var(--gray-600);
  letter-spacing: 0.3px; transition: all 0.2s; cursor: default;
}
.seg-item:hover { border-color: var(--teal); color: var(--navy); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,181,173,0.1); }
.seg-more {
  border: 2px dashed var(--teal); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 4px; border-radius: 12px; padding: 18px;
  font-size: 0.78rem; font-weight: 700;
}
.seg-more span { font-size: 1.4rem; font-weight: 800; }

/* ── PROCESO ── */
#proceso { background: linear-gradient(135deg, var(--navy-dark) 0%, #0e2640 100%); padding: 90px 5%; }
#proceso .section-title { color: var(--white); }
#proceso .section-label { color: var(--teal); }
#proceso .section-sub { color: rgba(255,255,255,0.6); }
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 56px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(0,181,173,0.2) 100%); z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%; background: var(--navy); border: 3px solid var(--teal);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  font-size: 1.5rem; font-weight: 900; color: var(--teal); position: relative; z-index: 2; transition: all 0.2s;
}
.step:hover .step-num { background: var(--teal); color: var(--white); box-shadow: 0 0 24px rgba(0,181,173,0.4); }
.step h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,0.45); font-size: 0.78rem; line-height: 1.5; }

/* ── CTA ── */
#contacto { background: var(--teal-pale); }
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a6e 100%);
  border-radius: 24px; padding: 70px 60px; display: flex;
  align-items: center; justify-content: space-between; gap: 40px; position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; right: -60px; top: -60px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,181,173,0.15) 0%, transparent 70%); border-radius: 50%;
}
.cta-text { position: relative; z-index: 1; }
.cta-text h2 { color: var(--white); font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-text p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 400px; }
.cta-form { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 14px; min-width: 340px; }
.cta-form input, .cta-form select {
  padding: 13px 18px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1); color: var(--white); font-size: 0.92rem; outline: none; transition: border-color 0.2s; -webkit-appearance: none;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.45); }
.cta-form input:focus, .cta-form select:focus { border-color: var(--teal); }
.cta-form select option { background: var(--navy); color: var(--white); }

/* ── FOOTER ── */
footer { background: var(--navy-dark); padding: 60px 5% 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 32px; }
.footer-brand .footer-logo { font-size: 1.8rem; font-weight: 900; color: var(--white); }
.footer-brand .footer-logo span { color: var(--teal); }
.footer-swoosh { width: 40px; height: 4px; background: var(--teal); border-radius: 2px; margin: 4px 0 16px 28px; }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 280px; }
.footer-col h5 { color: var(--white); font-size: 0.88rem; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); font-size: 0.85rem; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.cert-badge { background: rgba(0,181,173,0.12); border: 1px solid rgba(0,181,173,0.25); color: var(--teal); padding: 5px 12px; border-radius: 6px; font-size: 0.72rem; font-weight: 700; margin-left: 12px; }

/* ── ANIMACIONES ── */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-right { display: none; }
  .digital-grid { grid-template-columns: repeat(2, 1fr); }
  .seg-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .prop-grid, .afin-grid, .corp-layout { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .digital-grid { grid-template-columns: 1fr 1fr; }
  .seg-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-box { flex-direction: column; padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  h1 { font-size: 2rem; }
  .cta-form { min-width: unset; width: 100%; }
}
