/* ============================
   DENTAL LEONARDO BATISTA
   Landing Page - Styles
   ============================ */

/* ---------- IMPORTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800;900&display=swap');

/* ---------- CSS VARIABLES ---------- */
:root {
  --brand-primary: #389ee7;
  --brand-secondary: #38b2f0;
  --brand-dark: #063e7a;
  --brand-white: #ffffff;
  --brand-gradient: linear-gradient(135deg, #389ee7 0%, #38b2f0 50%, #063e7a 100%);
  --brand-gradient-subtle: linear-gradient(135deg, rgba(56, 158, 231, 0.08) 0%, rgba(6, 62, 122, 0.05) 100%);
  --brand-gradient-hero: linear-gradient(160deg, #063e7a 0%, #0a4f94 30%, #389ee7 70%, #38b2f0 100%);
  --brand-gradient-cta: linear-gradient(135deg, #38b2f0 0%, #389ee7 50%, #063e7a 100%);

  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-section: #f1f5f9;

  --shadow-sm: 0 1px 3px rgba(6, 62, 122, 0.06);
  --shadow-md: 0 4px 16px rgba(6, 62, 122, 0.1);
  --shadow-lg: 0 8px 32px rgba(6, 62, 122, 0.12);
  --shadow-xl: 0 16px 48px rgba(6, 62, 122, 0.16);
  --shadow-glow: 0 0 40px rgba(56, 158, 231, 0.3);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --container-max: 1200px;
  --section-padding: 100px 0;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- 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); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(56, 158, 231, 0.3); }
  50% { box-shadow: 0 0 40px rgba(56, 158, 231, 0.6); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes countDown {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(6, 62, 122, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.navbar__logo-icon {
  width: 42px;
  height: 42px;
  background: var(--brand-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--brand-primary);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  border: 2px solid transparent;
}

.navbar__cta:hover {
  background: var(--brand-white);
  color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--brand-gradient-hero);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(56, 178, 240, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(56, 158, 231, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  animation: fadeInLeft 0.8s ease forwards;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--text-white);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.5);
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero__title span {
  background: linear-gradient(135deg, #7dd3fc, #38b2f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero__subtitle strong {
  color: var(--text-white);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__stat {
  text-align: left;
}

.hero__stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
}

.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInRight 0.8s ease forwards;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 60px rgba(56, 158, 231, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.15);
}

.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating cards around hero image */
.hero__float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 14px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.hero__float-card--top {
  top: 10%;
  right: -10%;
  animation-delay: 0.5s;
}

.hero__float-card--bottom {
  bottom: 15%;
  left: -5%;
  animation-delay: 1.5s;
}

.hero__float-icon {
  width: 42px;
  height: 42px;
  background: var(--brand-gradient);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-white);
  flex-shrink: 0;
}

.hero__float-text {
  font-size: 0.8rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.3;
}

.hero__float-text small {
  display: block;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 0.72rem;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background: var(--brand-white);
  color: var(--brand-dark);
  box-shadow: var(--shadow-md);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

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

.btn--cta {
  background: var(--brand-gradient-cta);
  color: var(--text-white);
  padding: 16px 40px;
  font-size: 1.05rem;
  box-shadow: var(--shadow-lg), 0 0 30px rgba(56, 158, 231, 0.2);
}

.btn--cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 50px rgba(56, 158, 231, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--brand-dark);
  border: 2px solid var(--brand-primary);
}

.btn--outline:hover {
  background: var(--brand-primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25d366;
  color: var(--text-white);
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn--whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn__icon {
  font-size: 1.1em;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(56, 158, 231, 0.08);
  border: 1px solid rgba(56, 158, 231, 0.15);
  border-radius: var(--radius-full);
  color: var(--brand-primary);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.section-header__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header__title span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header__description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- URGENCY BANNER ---------- */
.urgency-banner {
  background: linear-gradient(135deg, #063e7a 0%, #0a4f94 100%);
  padding: 18px 0;
  position: relative;
  overflow: hidden;
}

.urgency-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(56, 178, 240, 0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

.urgency-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.urgency-banner__text {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.urgency-banner__text span {
  color: #7dd3fc;
}

.urgency-banner__timer {
  display: flex;
  gap: 8px;
  align-items: center;
}

.urgency-banner__timer-block {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  min-width: 48px;
}

.urgency-banner__timer-number {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  display: block;
  line-height: 1;
}

.urgency-banner__timer-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.urgency-banner__timer-sep {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 700;
  font-size: 1.2rem;
}

/* ---------- 3-STEPS SECTION ---------- */
.steps {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.step-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid rgba(56, 158, 231, 0.1);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(56, 158, 231, 0.2);
}

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

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--brand-gradient);
  color: var(--text-white);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(56, 158, 231, 0.25);
}

.step-card__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.step-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.step-card__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Connector lines between steps */
.step-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--brand-primary);
  opacity: 0.4;
  z-index: 2;
}

/* ---------- CREDIT SECTION ---------- */
.credit {
  padding: var(--section-padding);
  background: var(--brand-gradient-hero);
  position: relative;
  overflow: hidden;
}

.credit::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 178, 240, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.credit .container {
  position: relative;
  z-index: 1;
}

.credit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.credit__content {
  color: var(--text-white);
}

.credit__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--text-white);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}

.credit__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.credit__title span {
  color: #7dd3fc;
}

.credit__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

.credit__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.credit__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.credit__feature:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(4px);
}

.credit__feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(56, 178, 240, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.credit__feature-text {
  font-size: 0.92rem;
  line-height: 1.5;
}

.credit__feature-text strong {
  color: var(--text-white);
  display: block;
  margin-bottom: 2px;
}

.credit__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.credit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
  transition: var(--transition-smooth);
}

.credit-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.credit-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.credit-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
}

.credit-card__text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* ---------- SERVICES SECTION ---------- */
.services {
  padding: var(--section-padding);
  background: var(--bg-light);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-white);
  border: 1px solid rgba(56, 158, 231, 0.08);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--brand-gradient-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition-smooth);
}

.service-card:hover .service-card__icon {
  background: var(--brand-gradient);
  transform: scale(1.05) rotate(3deg);
  box-shadow: 0 4px 16px rgba(56, 158, 231, 0.3);
}

.service-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-card__badge {
  display: inline-block;
  margin-top: 14px;
  padding: 4px 14px;
  background: rgba(56, 158, 231, 0.08);
  color: var(--brand-primary);
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

/* ---------- BENEFITS SECTION ---------- */
.benefits {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--bg-white);
  border: 1px solid rgba(56, 158, 231, 0.08);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition-smooth);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(56, 158, 231, 0.2);
}

.benefit-card__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(56, 158, 231, 0.25);
  transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-card__icon {
  transform: scale(1.1);
}

.benefit-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.benefit-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- DOCTOR/ABOUT SECTION ---------- */
.about {
  padding: var(--section-padding);
  background: var(--bg-section);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  width: 100%;
  max-width: 440px;
  aspect-ratio: 3/4;
  background: var(--brand-gradient-hero);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about__image-icon {
  font-size: 8rem;
  opacity: 0.3;
}

.about__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(transparent, rgba(6, 62, 122, 0.9));
}

.about__image-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
}

.about__image-role {
  color: #7dd3fc;
  font-size: 0.9rem;
  font-weight: 500;
}

.about__content-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(56, 158, 231, 0.08);
  border: 1px solid rgba(56, 158, 231, 0.15);
  border-radius: var(--radius-full);
  color: var(--brand-primary);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.about__content-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about__content-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about__content-quote {
  background: var(--bg-white);
  border-left: 4px solid var(--brand-primary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 32px;
  font-style: italic;
  color: var(--text-dark);
  font-size: 1.05rem;
  font-weight: 500;
}

.about__info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about__info-card {
  background: var(--bg-white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-fast);
}

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

.about__info-icon {
  font-size: 1.5rem;
}

.about__info-text {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.about__info-text strong {
  display: block;
  color: var(--text-dark);
  font-size: 0.92rem;
  margin-bottom: 2px;
}

/* ---------- SERVICES LIST SECTION ---------- */
.services-list {
  padding: var(--section-padding);
  background: var(--bg-white);
}

.services-list__wrapper {
  background: var(--bg-light);
  border: 1px solid rgba(56, 158, 231, 0.08);
  border-radius: var(--radius-xl);
  padding: 48px;
}

.services-list__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.services-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition-fast);
  border: 1px solid transparent;
}

.services-list__item:hover {
  border-color: var(--brand-primary);
  background: rgba(56, 158, 231, 0.04);
  transform: translateX(4px);
}

.services-list__item-icon {
  color: var(--brand-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ---------- FORM SECTION ---------- */
.form-section {
  padding: var(--section-padding);
  background: var(--bg-light);
  position: relative;
}

.form-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.form-section__content {
  padding-right: 40px;
}

.form-section__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(56, 158, 231, 0.08);
  border: 1px solid rgba(56, 158, 231, 0.15);
  border-radius: var(--radius-full);
  color: var(--brand-primary);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.form-section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.form-section__title span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-section__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.form-section__guarantees {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-section__guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-body);
}

.form-section__guarantee-icon {
  width: 32px;
  height: 32px;
  background: rgba(56, 158, 231, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* The actual form card */
.form-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(56, 158, 231, 0.08);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--brand-gradient);
}

.form-card__header {
  text-align: center;
  margin-bottom: 32px;
}

.form-card__header-icon {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.form-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-card__subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 20px;
}

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

.form-group label .required {
  color: #ef4444;
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition-fast);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 4px rgba(56, 158, 231, 0.1);
}

.form-input--phone {
  padding-left: 60px;
}

.phone-wrapper {
  position: relative;
}

.phone-wrapper__prefix {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
  pointer-events: none;
}

.form-input--select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form__submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  margin-top: 8px;
}

.form__privacy {
  text-align: center;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-light);
}

.form__privacy a {
  color: var(--brand-primary);
  font-weight: 500;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.active {
  display: block;
  animation: scaleIn 0.5s ease;
}

.form-success__icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.form-success__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.form-success__text {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 80px 0;
  background: var(--brand-gradient-hero);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section__icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-section__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-section__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-section__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #031d3b;
  padding: 60px 0 32px;
  color: rgba(255, 255, 255, 0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer__brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__brand-name span {
  font-size: 1.5rem;
}

.footer__brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 360px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.footer__social-link:hover {
  background: var(--brand-primary);
  transform: translateY(-2px);
}

.footer__column-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  font-size: 0.88rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__link:hover {
  color: var(--brand-primary);
  transform: translateX(4px);
}

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 0.82rem;
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-link {
  font-size: 0.82rem;
  transition: var(--transition-fast);
}

.footer__bottom-link:hover {
  color: var(--brand-primary);
}

/* ---------- WHATSAPP FLOATING BTN ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-fast);
  animation: pulse-glow 3s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__visual {
    display: none;
  }

  .steps__grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }

  .step-card:not(:last-child)::after {
    display: none;
  }

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

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

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

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

  .about__image {
    max-width: 100%;
    margin: 0 auto;
  }

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

  .form-section__grid {
    grid-template-columns: 1fr;
  }

  .form-section__content {
    padding-right: 0;
    text-align: center;
  }

  .form-section__guarantees {
    align-items: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer__social {
    justify-content: center;
  }

  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  :root {
    --section-padding: 64px 0;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero__stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero__stat {
    text-align: center;
  }

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

  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

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

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

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

  .services-list__grid {
    grid-template-columns: 1fr;
  }

  .services-list__wrapper {
    padding: 28px 20px;
  }

  .about__info-cards {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 28px 20px;
  }

  .urgency-banner .container {
    flex-direction: column;
    gap: 12px;
  }

  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }

  .navbar__logo span:not(.navbar__logo-icon) {
    display: none;
  }

  .footer__bottom-links {
    flex-direction: column;
    gap: 8px;
  }
}

/* ---------- LOADING SKELETON ---------- */
.skeleton {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}
