/* ===== SMART iPHONES - Premium Apple-Inspired + Cookbook Aesthetics ===== */

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

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

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

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
  50% { box-shadow: 0 6px 30px rgba(37,211,102,.65); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

/* ===== PREMIUM HERO BANNER ===== */
.hero-banner {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 500px;
  max-height: 900px;
  overflow: hidden;
  background: #000;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.8) 100%
  );
  z-index: 1;
}
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  text-align: center;
  padding: 0 24px 80px;
  color: #fff;
  animation: fadeInUp 1s ease 0.3s both;
}
.hero-logo {
  width: 180px;
  height: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
  border-radius: 12px;
}
.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  opacity: 0.85;
}
.hero-subtitle {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  max-width: 680px;
  margin: 0 auto 28px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 980px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  border: none;
}
.hero-btn-primary {
  background: var(--green-wa);
  color: #fff;
}
.hero-btn-primary:hover {
  background: var(--green-wa-h);
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
}
.hero-btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(12px);
}
.hero-btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: #fff;
  transform: scale(1.04);
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0;
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.3);
  box-shadow: 0 0 12px rgba(255,255,255,0.5);
}
.hero-dot:hover { background: rgba(255,255,255,0.7); }

/* Hero Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  transition: all 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}
.hero-arrow:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.08);
}
.hero-arrow-left { left: 20px; }
.hero-arrow-right { right: 20px; }

/* ===== GALLERY STRIP ===== */
.gallery-strip {
  background: var(--black);
  padding: 2px 0;
  overflow: hidden;
}
.gallery-strip-inner {
  display: flex;
  gap: 3px;
  max-width: 1440px;
  margin: 0 auto;
}
.gallery-strip-item {
  flex: 1;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
  filter: brightness(0.85);
}
.gallery-strip-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

/* Responsive Hero */
@media (max-width: 768px) {
  .hero-banner { height: 70vh; min-height: 420px; }
  .hero-content { padding: 0 20px 70px; }
  .hero-logo { width: 130px; }
  .hero-title { font-size: 16px; }
  .hero-subtitle { font-size: 20px; }
  .hero-btn { padding: 12px 24px; font-size: 14px; }
  .hero-arrow { width: 40px; height: 40px; font-size: 24px; }
  .hero-arrow-left { left: 10px; }
  .hero-arrow-right { right: 10px; }
  /* 2-column grid on tablet */
  .gallery-strip-inner { flex-wrap: wrap; }
  .gallery-strip-item { flex: 1 1 calc(50% - 2px); aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .hero-banner { height: 60vh; min-height: 360px; }
  .hero-content { padding: 0 16px 65px; }
  .hero-logo { width: 100px; }
  .hero-subtitle { font-size: 18px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-arrow { display: none; }
  /* Horizontal scroll strip on mobile — compact, no vertical stacking */
  .gallery-strip { padding: 0; }
  .gallery-strip-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .gallery-strip-inner::-webkit-scrollbar { display: none; }
  .gallery-strip-item {
    flex: 0 0 72vw;
    aspect-ratio: 4/3;
    scroll-snap-align: start;
  }
}

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

:root {
  --black: #000000;
  --gray-900: #1d1d1f;
  --gray-700: #333336;
  --gray-600: #424245;
  --gray-500: #6e6e73;
  --gray-400: #86868b;
  --gray-300: #d2d2d7;
  --gray-200: #e8e8ed;
  --gray-100: #f5f5f7;
  --white: #ffffff;
  --blue: #0071e3;
  --blue-light: #2997ff;
  --blue-dark: #004ea2;
  --green-wa: #25D366;
  --green-wa-h: #1ebe5d;
  --gold: #c8a55a;
  --gold-light: #f5e6c8;
  --accent-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --premium-dark: linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 50%, #16213e 100%);
  --surface-glass: rgba(255,255,255,0.06);
  --border-glass: rgba(255,255,255,0.08);
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-medium: 0 8px 40px rgba(0,0,0,0.1);
  --shadow-strong: 0 16px 64px rgba(0,0,0,0.14);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 980px;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-spring: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: -.01em;
  overflow-x: hidden;
}

a { text-decoration: none; color: var(--blue); transition: var(--transition-smooth); }
a:hover { text-decoration: underline; color: var(--blue-dark); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== GLOBAL NAV (Apple-style dark bar) ===== */
.globalnav {
  background: rgba(0,0,0,.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  position: sticky;
  top: 0;
  z-index: 9999;
  height: 48px;
}

.globalnav-inner {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 22px;
}

.globalnav-logo {
  display: flex;
  align-items: center;
  color: #f5f5f7;
  letter-spacing: -.02em;
}

.globalnav-logo:hover { text-decoration: none; color: #fff; }
.nav-logo-img { height: 32px; width: auto; display: block; }

.globalnav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.globalnav-links a {
  font-size: 13px;
  font-weight: 400;
  color: #f5f5f7;
  opacity: .8;
  transition: opacity .3s;
  letter-spacing: 0;
}

.globalnav-links a:hover {
  opacity: 1;
  text-decoration: none;
}

.globalnav-links .nav-wa {
  background: var(--green-wa);
  color: #fff !important;
  opacity: 1;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  transition: var(--transition-smooth);
}

.globalnav-links .nav-wa:hover {
  background: var(--green-wa-h);
  transform: scale(1.04);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #f5f5f7;
  margin: 4px 0;
  border-radius: 1px;
  transition: var(--transition-smooth);
}

/* ===== PROMO BANNER ===== */
.promo-banner {
  background: linear-gradient(90deg, #f5f5f7 0%, #eef0f5 50%, #f5f5f7 100%);
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
  font-weight: 400;
}

.promo-banner a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 500;
}

/* ===== CHAPTERNAV (sub-nav with product thumbnails) ===== */
.chapternav {
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
  position: sticky;
  top: 48px;
  z-index: 9998;
}

.chapternav-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 22px;
}

.chapternav-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.chapternav-items {
  display: flex;
  gap: 36px;
  align-items: flex-end;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.chapternav-items::-webkit-scrollbar { display: none; }

.chapternav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  min-width: 76px;
  color: var(--gray-900);
  font-size: 12px;
  transition: var(--transition-smooth);
}

.chapternav-item:hover { opacity: .7; text-decoration: none; color: var(--gray-900); }

.chapternav-item .thumb {
  width: 58px;
  height: 58px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  overflow: hidden;
  transition: var(--transition-spring);
}

.chapternav-item:hover .thumb {
  transform: scale(1.08);
  box-shadow: var(--shadow-soft);
}

.chapternav-item .thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.chapternav-item span {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
}

/* ===== FAMILY SECTION (main product cards) ===== */
.family-section {
  background: var(--gray-100);
  padding: 80px 0 100px;
  position: relative;
}

.family-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  pointer-events: none;
}

.family-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
}

.family-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 48px;
}

.family-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--gray-900);
}

.family-header a {
  font-size: 17px;
  color: var(--blue);
  font-weight: 500;
}

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

.family-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform .5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .5s ease;
  color: var(--gray-900);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.family-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-strong);
  text-decoration: none;
  color: var(--gray-900);
}

.family-card-image {
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.family-card-image .placeholder-icon {
  font-size: 120px;
  opacity: .5;
}
.family-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 20px 20px 0 20px;
}
.family-card:hover .family-card-img {
  transform: scale(1.06);
}

.family-card-image .placeholder-text {
  position: absolute;
  bottom: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
}

.family-card-body {
  background: var(--white);
  padding: 28px 20px 36px;
}

.family-card-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 6px;
}

.family-card-body .tagline {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.5;
}

.family-card-body .card-links {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.family-card-body .card-links a {
  font-size: 14px;
  font-weight: 500;
}

.card-wa-link {
  color: var(--green-wa) !important;
  font-weight: 600 !important;
}

/* Card color themes - richer gradients */
.card-bg-dark   .family-card-image { background: linear-gradient(145deg, #0a0a1a 0%, #1a1a3e 50%, #0d1b2a 100%); }
.card-bg-blue   .family-card-image { background: linear-gradient(145deg, #89b4e8 0%, #b8d4f0 40%, #d6e8fa 100%); }
.card-bg-purple .family-card-image { background: linear-gradient(145deg, #b8a0d8 0%, #d4c4ee 40%, #ece4f8 100%); }
.card-bg-pink   .family-card-image { background: linear-gradient(145deg, #e8a8b8 0%, #f4c8d4 40%, #fae4ea 100%); }
.card-bg-green  .family-card-image { background: linear-gradient(145deg, #98c8b0 0%, #c0e0d0 40%, #e0f4e8 100%); }
.card-bg-gold   .family-card-image { background: linear-gradient(145deg, #c4a060 0%, #dcc498 40%, #f0e4cc 100%); }

/* ===== DIFERENCIAL SECTION ===== */
.diferencial-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative background element */
.diferencial-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,113,227,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.diferencial-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
}

.diferencial-header {
  text-align: center;
  margin-bottom: 64px;
}

.diferencial-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.diferencial-header p {
  font-size: 19px;
  color: var(--gray-500);
  font-weight: 400;
}

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

.diferencial-tile {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 40px 24px;
  text-align: center;
  transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .4s ease;
  position: relative;
  overflow: hidden;
}

.diferencial-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green-wa));
  opacity: 0;
  transition: opacity .4s ease;
}

.diferencial-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.diferencial-tile:hover::before {
  opacity: 1;
}

.diferencial-tile .tile-icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: inline-block;
  transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.diferencial-tile:hover .tile-icon {
  transform: scale(1.15);
}

.diferencial-tile h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.diferencial-tile p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.55;
}

/* ===== COMPARISON SECTION ===== */
.compare-section {
  padding: 100px 0;
  background: var(--gray-100);
  position: relative;
}

.compare-inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 22px;
}

.compare-header {
  text-align: center;
  margin-bottom: 56px;
}

.compare-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.compare-header p {
  font-size: 19px;
  color: var(--gray-500);
}

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

.compare-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  text-align: center;
  transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .4s ease;
  border: 1px solid transparent;
}

.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
  border-color: var(--gray-200);
}

.compare-card .card-emoji {
  font-size: 52px;
  margin-bottom: 18px;
  display: inline-block;
}

.compare-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
}

.compare-card ul { text-align: left; margin-bottom: 32px; }

.compare-card li {
  font-size: 15px;
  color: var(--gray-600);
  padding: 10px 0;
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}

.compare-card li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green-wa);
  font-weight: 700;
  font-size: 16px;
}

.compare-btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  background: var(--blue);
  color: var(--white) !important;
  transition: var(--transition-smooth);
  letter-spacing: 0.01em;
}

.compare-btn:hover {
  background: var(--blue-dark);
  text-decoration: none;
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(0,113,227,.3);
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.reviews-section::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.reviews-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 22px;
  position: relative;
}

.reviews-header {
  text-align: center;
  margin-bottom: 56px;
}

.reviews-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.reviews-header p {
  font-size: 19px;
  color: var(--gray-500);
}

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

.review-tile {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: transform .4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow .4s ease;
  position: relative;
}

.review-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.review-tile::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 56px;
  font-family: 'Bricolage Grotesque', serif;
  color: var(--gray-300);
  line-height: 1;
  opacity: 0.5;
}

.review-stars {
  color: #ff9500;
  margin-bottom: 16px;
  font-size: 15px;
  letter-spacing: 3px;
}

.review-tile blockquote {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 18px;
}

.review-tile .review-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
}

.review-tile .review-source {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

/* ===== INFLUENCER SECTION ===== */
.influencer-section {
  padding: 100px 20px;
  background: var(--gray-100);
}
.influencer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.influencer-header {
  text-align: center;
  margin-bottom: 56px;
}
.influencer-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--gray-900);
}
.influencer-header p {
  font-size: 19px;
  color: var(--gray-500);
  margin-top: 12px;
}
.influencer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.influencer-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
}
.influencer-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-strong);
}
.influencer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}
.influencer-card:hover img {
  transform: scale(1.08);
}
.influencer-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
  transition: padding .4s ease;
}
.influencer-card:hover .influencer-overlay {
  padding-bottom: 24px;
}
.influencer-name {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
}
@media (max-width: 768px) {
  .influencer-grid { grid-template-columns: repeat(2, 1fr); }
  .influencer-header h2 { font-size: 28px; }
}
@media (max-width: 480px) {
  .influencer-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .influencer-card { aspect-ratio: 3/4; }
}

/* ===== CTA FINAL ===== */
.cta-section {
  padding: 100px 20px;
  text-align: center;
  background: var(--premium-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

/* Atmospheric orb effects */
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,113,227,0.15) 0%, transparent 70%);
  animation: subtleRotate 20s linear infinite;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 19px;
  color: var(--gray-300);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  line-height: 1.55;
}

.btn-wa-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--green-wa);
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-size: 17px;
  font-weight: 600;
  transition: var(--transition-smooth);
  border: none;
  cursor: pointer;
  position: relative;
  letter-spacing: 0.01em;
}

.btn-wa-big:hover {
  background: var(--green-wa-h);
  text-decoration: none;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37,211,102,.4);
}

.btn-wa-big svg { width: 22px; height: 22px; fill: currentColor; }

/* ===== APPLE-STYLE FOOTER ===== */
.site-footer {
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
}

.footer-inner {
  max-width: 1024px;
  margin: 0 auto;
  padding: 24px 22px 16px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.footer-col a {
  display: block;
  font-size: 12px;
  color: var(--gray-500);
  padding: 3px 0;
  transition: color .3s;
}

.footer-col a:hover { color: var(--gray-900); text-decoration: none; }

.footer-bottom {
  padding: 16px 0;
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 999;
  transition: var(--transition-smooth);
  animation: pulseGlow 3s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,.55);
  animation: none;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ===== PAGE HERO (internal pages) ===== */
.page-hero {
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
  padding: 72px 22px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}

.page-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 19px;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ===== INTERNAL PAGES (info, about, contact) ===== */
.page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 22px 80px;
}

.page-content h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}

.page-content p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}

.content-tile {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition-smooth);
}

.content-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.content-tile h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.content-tile p {
  font-size: 14px;
  margin-bottom: 0;
}

/* ===== iPHONE DETAIL (internal product pages) ===== */
.product-detail {
  max-width: 1024px;
  margin: 0 auto;
  padding: 60px 22px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-gallery {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 120px;
}

.product-gallery .placeholder-icon { font-size: 100px; opacity: .3; }

.product-info h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}

.product-info > p {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 28px;
  line-height: 1.7;
}

.product-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.badge-l {
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  background: #e8f5e9;
  color: #2e7d32;
}

.badge-v {
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  background: #fff3e0;
  color: #e65100;
}

.specs-table { margin-bottom: 32px; }

.specs-table li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 15px;
}

.specs-table .label { font-weight: 700; color: var(--gray-900); }
.specs-table .value { color: var(--gray-500); }

.product-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-wa-product {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--green-wa);
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-wa-product:hover {
  background: var(--green-wa-h);
  text-decoration: none;
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.btn-outline-product {
  display: inline-flex;
  padding: 14px 28px;
  border: 1.5px solid var(--blue);
  color: var(--blue) !important;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-outline-product:hover {
  background: var(--blue);
  color: var(--white) !important;
  text-decoration: none;
  transform: scale(1.04);
}

/* Contact page specifics */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px 0;
}

.contact-block h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-item-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-item-row:hover .contact-icon {
  background: rgba(0,113,227,0.08);
  transform: scale(1.05);
}

.contact-item-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.contact-item-text p { font-size: 14px; margin-bottom: 0; }

.map-box {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 14px;
}

/* ===== FADE ANIMATIONS (Staggered Reveals) ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform .8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Staggered delay for grid children */
.diferencial-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.diferencial-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.diferencial-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.diferencial-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

.family-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.family-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }
.family-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }
.family-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }
.family-grid .fade-in:nth-child(5) { transition-delay: 0.4s; }
.family-grid .fade-in:nth-child(6) { transition-delay: 0.5s; }

.reviews-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.reviews-grid .fade-in:nth-child(2) { transition-delay: 0.12s; }
.reviews-grid .fade-in:nth-child(3) { transition-delay: 0.24s; }

.influencer-grid .fade-in:nth-child(1) { transition-delay: 0s; }
.influencer-grid .fade-in:nth-child(2) { transition-delay: 0.08s; }
.influencer-grid .fade-in:nth-child(3) { transition-delay: 0.16s; }
.influencer-grid .fade-in:nth-child(4) { transition-delay: 0.24s; }
.influencer-grid .fade-in:nth-child(5) { transition-delay: 0.32s; }
.influencer-grid .fade-in:nth-child(6) { transition-delay: 0.4s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1068px) {
  .family-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-columns { grid-template-columns: repeat(3, 1fr); }
  .family-section { padding: 60px 0 80px; }
  .diferencial-section,
  .compare-section,
  .reviews-section { padding: 80px 0; }
  .influencer-section { padding: 80px 20px; }
  .cta-section { padding: 80px 20px; }
}

/* ── TABLET (768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .globalnav-links { display: none; }
  .nav-hamburger { display: block; }

  /* Typography scale-down */
  .chapternav-title { font-size: 34px; }
  .family-header h2 { font-size: 32px; }
  .family-header { flex-direction: column; gap: 10px; align-items: flex-start; }
  .diferencial-header h2,
  .compare-header h2,
  .reviews-header h2,
  .influencer-header h2 { font-size: 28px; }
  .cta-section h2 { font-size: 30px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 17px; }

  /* Grids → single column, except diferencial stays 2-col */
  .family-grid,
  .reviews-grid,
  .compare-grid,
  .content-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .diferencial-grid { grid-template-columns: 1fr 1fr; }

  /* Section padding */
  .family-section { padding: 50px 0 70px; }
  .diferencial-section,
  .compare-section,
  .reviews-section { padding: 60px 0; }
  .influencer-section { padding: 60px 20px; }
  .cta-section { padding: 60px 20px; }
  .diferencial-header,
  .compare-header,
  .reviews-header,
  .influencer-header { margin-bottom: 40px; }

  /* Product detail */
  .product-detail { grid-template-columns: 1fr; }
  .product-gallery { position: static; min-height: 300px; }

  /* Footer */
  .footer-columns { grid-template-columns: 1fr 1fr; }
}

/* ── MOBILE (480px) ── */
@media (max-width: 480px) {
  /* Nav */
  .globalnav-inner { padding: 0 16px; }

  /* Chapternav */
  .chapternav-title { font-size: 26px; }
  .chapternav-inner { padding: 0 16px; }
  .chapternav-items { gap: 20px; }

  /* Typography */
  .family-header h2 { font-size: 26px; }
  .diferencial-header h2,
  .compare-header h2,
  .reviews-header h2,
  .influencer-header h2 { font-size: 24px; }
  .cta-section h2 { font-size: 26px; }
  .cta-section p { font-size: 16px; }
  .page-hero h1 { font-size: 28px; }

  /* Grids → single column everywhere */
  .diferencial-grid { grid-template-columns: 1fr; }
  .family-card-image { height: 240px; }

  /* Sections */
  .family-section { padding: 40px 0 56px; }
  .diferencial-section,
  .compare-section,
  .reviews-section { padding: 48px 0; }
  .influencer-section { padding: 50px 16px; }
  .cta-section { padding: 56px 16px; }
  .family-inner,
  .diferencial-inner,
  .compare-inner,
  .reviews-inner { padding: 0 16px; }
  .compare-card { padding: 32px 20px; }
  .review-tile { padding: 28px 20px; }

  /* Footer */
  .footer-columns { grid-template-columns: 1fr; }
  .footer-inner { padding: 40px 16px 24px; }

  /* Product */
  .product-ctas { flex-direction: column; }
  .product-detail { padding: 40px 16px 60px; }

  /* Buttons */
  .btn-wa-big { padding: 16px 28px; font-size: 16px; }

  /* WA Float */
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ── TOUCH DEVICES: disable hover effects ── */
@media (hover: none) {
  .family-card:hover { transform: none !important; box-shadow: 0 1px 3px rgba(0,0,0,.04) !important; }
  .diferencial-tile:hover { transform: none !important; box-shadow: none !important; }
  .compare-card:hover { transform: none !important; box-shadow: none !important; }
  .review-tile:hover { transform: none !important; box-shadow: none !important; }
  .influencer-card:hover { transform: none !important; }
  .chapternav-item:hover { opacity: 1; }
  .chapternav-item:hover .thumb { transform: none; box-shadow: none; }
  .hero-btn:hover { transform: none; }
  .btn-wa-big:hover { transform: none; }
  .compare-btn:hover { transform: none; }
}

/* ===== iPHONE 17 PRO SHOWCASE ===== */
@keyframes showcaseGlow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.15); }
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.02); }
}

@keyframes phoneFloatSide {
  0%, 100% { transform: translateY(0) scale(0.88); }
  50% { transform: translateY(-10px) scale(0.9); }
}

@keyframes textReveal {
  from { opacity: 0; transform: translateY(40px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,149,0,0.4); }
  50% { box-shadow: 0 0 0 10px rgba(255,149,0,0); }
}

.showcase-17pro {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0a1a 0%, #0d0d2b 30%, #1a0a2e 60%, #0a0a1a 100%);
  padding: 100px 0 80px;
}

.showcase-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.showcase-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: showcaseGlow 6s ease-in-out infinite;
}

.showcase-orb.orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,149,0,0.3), transparent 70%);
  top: -100px; left: 10%;
  animation-delay: 0s;
}

.showcase-orb.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(100,100,255,0.25), transparent 70%);
  bottom: -80px; right: 10%;
  animation-delay: 2s;
}

.showcase-orb.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200,100,255,0.2), transparent 70%);
  top: 40%; left: 50%;
  transform: translateX(-50%);
  animation-delay: 4s;
}

.showcase-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Hero text */
.showcase-hero {
  text-align: center;
  margin-bottom: 60px;
}

.showcase-hero.visible .showcase-eyebrow,
.showcase-hero.visible .showcase-title,
.showcase-hero.visible .showcase-subtitle {
  animation: textReveal 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.showcase-hero.visible .showcase-title { animation-delay: 0.15s; }
.showcase-hero.visible .showcase-subtitle { animation-delay: 0.3s; }

.showcase-eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ff9500;
  margin-bottom: 12px;
  opacity: 0;
}

.showcase-title {
  font-family: 'Bricolage Grotesque', serif;
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
  opacity: 0;
  background: linear-gradient(135deg, #ffffff 0%, #e0c3fc 40%, #ff9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.showcase-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(17px, 2.5vw, 22px);
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
}

/* Phone images */
.showcase-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  margin-bottom: 70px;
  min-height: 380px;
}

.showcase-phone {
  text-align: center;
  position: relative;
}

.showcase-phone img {
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-phone-main img {
  height: 360px;
  animation: phoneFloat 5s ease-in-out infinite;
}

.showcase-phone-side img {
  height: 280px;
  opacity: 0.85;
  animation: phoneFloatSide 5s ease-in-out infinite;
}

.showcase-phone-side:first-child img { animation-delay: 0.8s; }
.showcase-phone-side:last-child img { animation-delay: 1.6s; }

.showcase-phone:hover img {
  transform: scale(1.08);
  filter: drop-shadow(0 30px 50px rgba(255,149,0,0.3));
}

.showcase-color-label {
  display: block;
  margin-top: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

/* Features */
.showcase-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 60px;
}

.showcase-feature {
  text-align: center;
  padding: 32px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-feature:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,149,0,0.3);
  transform: translateY(-4px);
}

.feature-icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,149,0,0.2), rgba(200,100,255,0.15));
  border: 1px solid rgba(255,149,0,0.3);
  margin-bottom: 18px;
  color: #ff9500;
  animation: ringPulse 3s ease-in-out infinite;
}

.showcase-feature:nth-child(2) .feature-icon-ring { animation-delay: 1s; }
.showcase-feature:nth-child(3) .feature-icon-ring { animation-delay: 2s; }

.showcase-feature h3 {
  font-family: 'Bricolage Grotesque', serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.showcase-feature p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* CTA */
.showcase-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.showcase-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.showcase-btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

.showcase-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: transparent;
  color: #ff9500;
  border: 1.5px solid rgba(255,149,0,0.4);
  border-radius: 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.showcase-btn-secondary:hover {
  background: rgba(255,149,0,0.1);
  border-color: #ff9500;
  transform: translateY(-2px);
}

/* Showcase responsive */
@media (max-width: 768px) {
  .showcase-17pro { padding: 70px 0 60px; }
  .showcase-phones { gap: 0; }
  .showcase-phone-main img { height: 260px; }
  .showcase-phone-side img { height: 200px; }
  .showcase-features { grid-template-columns: 1fr; gap: 20px; }
  .showcase-orb.orb-1 { width: 250px; height: 250px; }
  .showcase-orb.orb-2 { width: 200px; height: 200px; }
}

@media (max-width: 480px) {
  .showcase-17pro { padding: 50px 0 40px; }
  .showcase-phone-main img { height: 200px; }
  .showcase-phone-side img { height: 150px; }
  .showcase-hero { margin-bottom: 40px; }
  .showcase-phones { margin-bottom: 50px; }
  .showcase-cta { flex-direction: column; }
  .showcase-btn-primary, .showcase-btn-secondary { width: 100%; justify-content: center; }
}

/* Print */
@media print { .globalnav, .chapternav, .wa-float, .site-footer, .promo-banner, .showcase-17pro { display: none; } }

/* ─── ASSISTENCIA HOME SECTION ─── */
@keyframes astHomeOrbPulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.15); opacity: 0.65; }
}
@keyframes astCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.ast-home-section {
  position: relative;
  overflow: hidden;
  background: #030308;
  padding: 100px 0 90px;
}
.ast-home-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.ast-home-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: astHomeOrbPulse 6s ease-in-out infinite;
}
.ast-home-orb1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,122,255,0.22) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation-delay: 0s;
}
.ast-home-orb2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(88,86,214,0.18) 0%, transparent 70%);
  bottom: -80px; right: -80px;
  animation-delay: 3s;
}
.ast-home-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
}
.ast-home-header {
  text-align: center; margin-bottom: 60px;
}
.ast-home-badge {
  display: inline-block;
  background: rgba(0,122,255,0.12);
  border: 1px solid rgba(0,122,255,0.3);
  color: #0a84ff;
  font-size: 13px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 18px; border-radius: 30px;
  margin-bottom: 20px;
}
.ast-home-header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700; color: #f5f5f7;
  margin: 0 0 16px; line-height: 1.1;
}
.ast-home-header p {
  font-size: 17px; color: rgba(245,245,247,0.6);
  max-width: 580px; margin: 0 auto; line-height: 1.65;
}
.ast-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.ast-home-card {
  background: rgba(10,132,255,0.04);
  border: 1px solid rgba(10,132,255,0.12);
  border-radius: 18px;
  padding: 30px 24px;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
  cursor: default;
}
.ast-home-card:hover {
  background: rgba(10,132,255,0.08);
  border-color: rgba(10,132,255,0.3);
  transform: translateY(-4px);
  animation: astCardFloat 3s ease-in-out infinite;
}
.ast-home-card-icon {
  font-size: 32px; margin-bottom: 14px;
}
.ast-home-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px; font-weight: 700;
  color: #f5f5f7; margin: 0 0 8px;
}
.ast-home-card p {
  font-size: 14px; color: rgba(245,245,247,0.55);
  line-height: 1.6; margin: 0;
}
.ast-home-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 52px;
}
.ast-home-photo {
  border-radius: 16px; overflow: hidden;
  aspect-ratio: 4/3;
}
.ast-home-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.ast-home-photo:hover img {
  transform: scale(1.04);
}
.ast-home-cta {
  display: flex; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.ast-home-btn-primary {
  display: inline-flex; align-items: center;
  background: #0a84ff;
  color: #fff; font-weight: 700; font-size: 15px;
  padding: 14px 32px; border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 0 28px rgba(10,132,255,0.4);
}
.ast-home-btn-primary:hover {
  background: #2a94ff;
  transform: translateY(-2px);
  box-shadow: 0 0 42px rgba(10,132,255,0.55);
}
.ast-home-btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #f5f5f7; font-weight: 600; font-size: 15px;
  padding: 14px 32px; border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
}
.ast-home-btn-wa:hover {
  background: rgba(37,211,102,0.12);
  border-color: #25d366;
  color: #25d366;
  transform: translateY(-2px);
}

/* Responsive ast-home */
@media (max-width: 768px) {
  .ast-home-section { padding: 70px 0 60px; }
  .ast-home-inner { padding: 0 20px; }
  .ast-home-grid { grid-template-columns: repeat(2, 1fr); }
  .ast-home-photo-row { grid-template-columns: 1fr 1fr; }
  .ast-home-photo:last-child { display: none; }
  .ast-home-header { margin-bottom: 40px; }
}
@media (max-width: 480px) {
  .ast-home-section { padding: 50px 0 45px; }
  .ast-home-inner { padding: 0 16px; }
  .ast-home-grid { grid-template-columns: 1fr; }
  .ast-home-photo-row { grid-template-columns: 1fr; }
  .ast-home-photo:last-child { display: block; }
  .ast-home-photo:nth-child(2) { display: none; }
  .ast-home-cta { flex-direction: column; align-items: center; }
  .ast-home-btn-primary, .ast-home-btn-wa { width: 100%; justify-content: center; }
}
