/* ==========================================================================
   🌟 SITO PRONTO — PREMIUM B2B STYLESHEET (VANILLA CSS)
   ========================================================================== */

/* --- CSS Variables & Design System --- */
:root {
  /* Colors */
  --color-primary: #0C2340;      /* Deep Navy Blue from Logo */
  --color-accent: #00A88F;       /* Vibrant Teal/Green from Logo */
  --color-accent-hover: #008C76; /* Darker Teal */
  --color-accent-light: #F0FAF8; /* Soft teal background highlight */
  
  --color-gold: #00A88F;         /* Matching Teal Accent */
  --color-gold-dark: #008C76;
  --color-gold-light: #E6FAF6;
  
  --color-whatsapp: #25D366;     /* Pure WhatsApp Green */
  --color-whatsapp-hover: #1ebe5a;
  
  --color-white: #FFFFFF;
  --color-bg-light: #F4F8FA;     /* Subtle navy-tinted light grey-blue */
  
  --color-text-dark: #0F253C;     /* Dark navy-tinted grey */
  --color-text-gray: #4B5E74;     /* Medium slate grey */
  --color-text-light: #9CAEBF;
  --color-border-light: #E2E8F0;

  /* Fonts */
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Outfit", system-ui, -apple-system, sans-serif;

  /* Shadow Systems */
  --shadow-sm: 0 4px 6px -1px rgba(12, 35, 64, 0.03), 0 2px 4px -1px rgba(12, 35, 64, 0.02);
  --shadow-md: 0 10px 25px -5px rgba(12, 35, 64, 0.05), 0 8px 10px -6px rgba(12, 35, 64, 0.03);
  --shadow-premium: 0 20px 40px -15px rgba(0, 168, 143, 0.08), 0 15px 25px -10px rgba(12, 35, 64, 0.02);
  --shadow-premium-hover: 0 35px 60px -15px rgba(0, 168, 143, 0.15), 0 20px 30px -10px rgba(12, 35, 64, 0.05);
  --shadow-glow: 0 10px 30px rgba(37, 211, 102, 0.3);

  /* Spacing */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease-out;
}

/* --- Base & Reset Styles --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--color-text-dark);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.gap-8 { gap: 32px; }
.gap-10 { gap: 40px; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* --- Margins & Paddings --- */
.section {
  padding: 100px 0;
}

.section-dark {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section-dark p {
  line-height: 1.75;
}

.section-dark-accent {
  background-color: #0F1626;
  color: var(--color-white);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-dark-accent p {
  line-height: 1.75;
}

.bg-light {
  background-color: var(--color-bg-light);
}

.bg-white {
  background-color: var(--color-white);
}

.text-center { text-align: center; }
.mb-6 { margin-bottom: 24px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }
.mb-20 { margin-bottom: 80px; }
.mr-1 { margin-right: 4px; }

/* --- Typography Utilities --- */
.section-subtitle {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
  display: inline-block;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-accent), #6366F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 17px;
  color: var(--color-text-gray);
  margin-top: 16px;
  font-weight: 350;
}

.text-white { color: var(--color-white) !important; }
.text-dark { color: var(--color-text-dark) !important; }
.text-accent { color: var(--color-accent) !important; }
.text-whatsapp { color: var(--color-whatsapp) !important; }
.text-gold { color: var(--color-gold) !important; }
.text-gray-light { color: #E2E8F0 !important; }
.text-gray-dark { color: #4A5568 !important; }

.font-serif {
  font-family: var(--font-serif);
}

.max-w-xl { max-width: 600px; }
.max-w-2xl { max-width: 700px; }
.max-w-4xl { max-width: 900px; }
.mx-auto { margin-left: auto; margin-right: auto; }

@media (min-width: 768px) {
  .section-title {
    font-size: 46px;
  }
  .section {
    padding: 120px 0;
  }
}

/* --- Buttons & CTAs --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.btn-nav {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 10px 22px;
  font-size: 13px;
}

.btn-nav:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--color-whatsapp), #1ebe5a);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #20ba59, #1aa34e);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  border: 1px solid var(--color-border-light);
  background-color: transparent;
  color: var(--color-text-dark);
}

.btn-outline:hover {
  background-color: var(--color-bg-light);
  border-color: var(--color-text-light);
}

.btn-text-wrapper {
  display: flex;
  flex-direction: column;
}

.btn-subtitle {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

.btn-title {
  font-size: 15px;
  font-weight: 700;
}

.shadow-glow-green {
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  }
  100% {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  }
}

/* --- Top Announcement Bar --- */
.top-bar {
  background-color: var(--color-primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  position: relative;
  z-index: 50;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-new {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 800;
  font-size: 9px;
}

.top-bar-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.top-bar-link:hover {
  color: var(--color-whatsapp);
}

@media (max-width: 580px) {
  .top-bar-right {
    display: none;
  }
}

/* --- Header & Navigation --- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(11, 15, 25, 0.05);
  z-index: 100;
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo-footer-img {
  height: auto;
  width: 160px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.logo-hero-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  margin-bottom: 24px;
  display: block;
}

@media (max-width: 768px) {
  .header-container {
    position: relative;
    justify-content: flex-end;
    padding-top: 4px;
    padding-bottom: 4px;
    min-height: 80px;
  }
  .header .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
  .logo-img {
    height: 80px;
  }
  .logo-hero-img {
    height: 56px;
  }
  .text-logo {
    font-size: 20px !important;
  }
  .text-logo i {
    font-size: 22px !important;
  }
  .text-logo-footer {
    font-size: 24px !important;
  }
  .text-logo-footer i {
    font-size: 26px !important;
  }
  .top-bar {
    padding: 6px 0;
  }
}

.text-logo {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-logo i {
  font-size: 26px;
}

.text-logo-footer {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.text-logo-footer i {
  font-size: 30px;
}

/* Nav links */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 550;
  color: var(--color-text-gray);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  display: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  font-size: 22px;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 860px) {
  .nav-desktop { display: flex; }
  .header-cta { display: block; }
  .mobile-menu-btn { display: none; }
}

/* Mobile Nav Overlay */
.mobile-nav {
  position: fixed;
  top: 89px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--color-white);
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.mobile-nav.open {
  height: calc(100vh - 89px);
}

.mobile-nav-content {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-light);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 16px 0 64px 0;
  background-color: var(--color-white);
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(46, 98, 246, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 56px;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    padding-top: 16px;
  }
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-accent-light);
  color: var(--color-accent);
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-primary);
  margin-bottom: 24px;
  letter-spacing: -1px;
}

@media (min-width: 480px) {
  .hero-title { font-size: 54px; line-height: 1.1; margin-bottom: 32px; }
}
@media (min-width: 768px) {
  .hero-title { font-size: 58px; line-height: 1.15; margin-bottom: 36px; }
}
@media (min-width: 1200px) {
  .hero-title { font-size: 64px; }
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-gray);
  margin-bottom: 40px;
  font-weight: 350;
}

.hero-description strong {
  color: var(--color-primary);
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 580px) {
  .hero-ctas {
    flex-direction: row;
    align-items: center;
  }
}

.btn-hero-primary {
  padding: 16px 36px;
}

.btn-hero-secondary {
  padding: 16px 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid var(--color-border-light);
  padding-top: 32px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-gray);
}

/* Hero Right Visuals - CSS Mockups */
.hero-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
}

.mockup-container {
  width: 100%;
  max-width: 480px;
  height: 380px;
  position: relative;
}

@media (min-width: 480px) {
  .mockup-container {
    max-width: 560px;
    height: 420px;
  }
}

/* Laptop Frame */
.laptop-frame {
  width: 90%;
  max-width: 440px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  box-shadow: var(--shadow-premium);
  border-radius: 12px;
}

.laptop-screen {
  background-color: #121212;
  border: 12px solid #1e1e1e;
  border-bottom: 0;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.mockup-screenshot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.laptop-keyboard {
  background-color: #cbd5e1;
  height: 10px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  position: relative;
  border-bottom: 2px solid #94a3b8;
}

.laptop-keyboard::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #94a3b8;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

/* Simulated Website Inside Laptop */
.simulated-website {
  width: 100%;
  height: 100%;
  background-color: #FDFBF7;
  color: #1A1A1A;
  font-size: 8px;
  font-family: var(--font-sans);
  overflow-y: auto;
  scrollbar-width: none; /* Hide scrollbar Firefox */
}
.simulated-website::-webkit-scrollbar {
  display: none; /* Hide scrollbar Chrome/Safari */
}

.sim-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 12px;
  background-color: #fff;
  border-bottom: 1px solid #F1EAD8;
  position: sticky;
  top: 0;
  z-index: 5;
}

.sim-logo {
  font-weight: 700;
  font-size: 8px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.gold-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-gold);
}

.sim-cta {
  background-color: #121212;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 6px;
  padding: 2px 6px;
  border-radius: 3px;
}

.sim-hero {
  height: 90px;
  background-image: url('https://images.unsplash.com/photo-1522337360788-8b13dee7a37e?auto=format&fit=crop&w=400&q=85');
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 14px;
}

.sim-hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(18, 18, 18, 0.45);
}

.sim-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 150px;
}

.sim-badge {
  font-size: 4px;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 1px;
}

.sim-title {
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 700;
  margin-top: 2px;
}

.sim-button {
  background-color: var(--color-whatsapp);
  color: #fff;
  font-weight: 700;
  font-size: 5px;
  padding: 3px 6px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 6px;
}

.sim-calculator {
  padding: 10px 14px;
  background-color: #fff;
  border-top: 3px solid var(--color-gold);
  margin: 10px 14px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.sim-calc-head {
  font-weight: 700;
  font-size: 8px;
  margin-bottom: 6px;
}

.sim-calc-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f1f1f1;
  padding: 4px 0;
  font-size: 6px;
}

.sim-calc-total {
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
  font-weight: 700;
  font-size: 7px;
  color: var(--color-accent);
}

/* Phone Frame */
.phone-frame {
  width: 140px;
  height: 270px;
  background-color: #121212;
  border: 7px solid #1e1e1e;
  border-radius: 22px;
  position: absolute;
  bottom: 0;
  right: 5%;
  z-index: 5;
  box-shadow: 0 25px 50px -12px rgba(11,15,25,0.25);
  overflow: hidden;
}

@media (min-width: 480px) {
  .phone-frame {
    width: 160px;
    height: 310px;
    right: 10%;
  }
}

.phone-speaker {
  width: 40px;
  height: 12px;
  background-color: #1e1e1e;
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
}

.phone-home-bar {
  width: 50px;
  height: 3px;
  background-color: #e2e8f0;
  border-radius: 2px;
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* Simulated Mobile Website */
.simulated-mobile-website {
  width: 100%;
  height: 100%;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
  font-size: 8px;
  padding-top: 10px;
}

.sim-mob-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 10px;
  background-color: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.sim-mob-cta {
  color: var(--color-whatsapp);
  font-size: 10px;
}

.sim-mob-hero {
  padding: 14px 10px;
  background-color: #0B0F19;
  color: #fff;
  text-align: center;
}

.sim-mob-title {
  font-weight: 700;
  font-size: 9px;
  line-height: 1.2;
}

.sim-mob-sub {
  font-size: 6px;
  color: #94a3b8;
  margin-top: 2px;
}

.sim-mob-features {
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.sim-mob-feat-card {
  background-color: #fff;
  padding: 8px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  font-size: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.sim-mob-feat-card i {
  display: block;
  font-size: 10px;
  color: var(--color-accent);
  margin-bottom: 4px;
}

.sim-mob-floating-cta {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-whatsapp);
  color: #fff;
  font-weight: 700;
  font-size: 7px;
  padding: 5px 12px;
  border-radius: 9999px;
  box-shadow: 0 4px 10px rgba(37,211,102,0.3);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.pulse-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #fff;
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Floating Mockup Animation */
.floating {
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* Overlay badges */
.floating-card {
  position: absolute;
  background-color: var(--color-white);
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: var(--shadow-premium);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.stat-card {
  top: 35%;
  right: -2%;
  border-left: 3px solid var(--color-accent);
}

.stat-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background-color: rgba(46,98,246,0.1);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.stat-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.stat-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-primary);
}

.stat-lbl {
  font-size: 8px;
  color: var(--color-text-light);
  font-weight: 600;
}

.client-card {
  bottom: 25%;
  left: -8%;
  padding: 6px 12px;
}

.client-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-cover: cover;
}

.client-info {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.client-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--color-primary);
}

.client-status {
  font-size: 8px;
  color: var(--color-whatsapp);
  font-weight: 600;
  margin-top: 1px;
}

@media (max-width: 480px) {
  .client-card { display: none; }
  .stat-card { display: none; }
}

/* --- Trust Cards Grid --- */
.card {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: var(--transition-smooth);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium-hover);
  border-color: rgba(46,98,246,0.15);
}

.card-dark {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-dark:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-color: rgba(46, 98, 246, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.card-dark .card-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.05);
}

.card-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}

.card-text {
  font-size: 15px;
  color: var(--color-text-gray);
  font-weight: 350;
  line-height: 1.6;
}

/* --- Portfolio Demo Section --- */
.tab-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--color-border-light);
  color: var(--color-text-gray);
  background-color: var(--color-white);
  transition: var(--transition-fast);
}

.tab-btn:hover {
  background-color: var(--color-bg-light);
}

.tab-btn.active {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(12, 35, 64, 0.15);
  transform: translateY(-1px);
}

/* Portfolio Grid Items */
.portfolio-card {
  background-color: var(--color-white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium-hover);
  border-color: rgba(46, 98, 246, 0.1);
}

.portfolio-visual {
  position: relative;
  aspect-ratio: 16/10;
  background-color: #e2e8f0;
  overflow: hidden;
}

.portfolio-screen {
  width: 100%;
  height: 100%;
  position: relative;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(11, 15, 25, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-fast);
  z-index: 10;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 4px;
}

.badge-beauty { background-color: var(--color-gold-light); color: var(--color-gold-dark); }
.badge-food { background-color: #FFF3EB; color: #E26E20; }
.badge-barber { background-color: #EDF2F7; color: #2D3748; }
.badge-local { background-color: #E6FFFA; color: #319795; }
.badge-medical { background-color: #EBF4FF; color: #2B6CB0; }

.badge-feature {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-gray);
  display: flex;
  align-items: center;
}

.portfolio-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.portfolio-text {
  font-size: 14px;
  color: var(--color-text-gray);
  font-weight: 350;
  line-height: 1.6;
  margin-bottom: 24px;
}

.portfolio-features-list {
  border-top: 1px solid var(--color-border-light);
  padding-top: 20px;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.portfolio-features-list span {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-gray);
}/* Simulated Pages Inside Portfolio screen */
.sim-page {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  font-size: 8px;
  pointer-events: none;
}

.sim-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sim-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 6px;
}

.sim-body {
  margin-top: 10px;
}

.sim-body h4 {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 4px;
}

.sim-body p {
  font-size: 8px;
  opacity: 0.85;
  font-weight: 350;
  margin-bottom: 8px;
}

.sim-meta-tag {
  font-size: 5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 3px;
  display: inline-block;
}

/* Barber Simulated Theme */
.page-barber {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.82)), url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=400&q=85') center/cover;
  color: #FFFFFF;
}

.page-barber .sim-overlay {
  background: radial-gradient(circle at top right, rgba(0, 168, 143, 0.15), transparent 60%);
}

.page-barber .logo-font {
  font-weight: 800;
  letter-spacing: 1px;
}

.page-barber .sim-btn-white {
  background-color: var(--color-white);
  color: var(--color-primary);
  font-weight: 800;
  padding: 2.5px 8px;
  border-radius: 4px;
  font-size: 7px;
}

.page-barber .sim-meta-tag { color: var(--color-accent); }

.page-barber .sim-features-chips {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.page-barber .sim-features-chips span {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 6px;
  font-weight: 600;
}

.page-barber .sim-floating-widget {
  background-color: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 6px;
  font-weight: 600;
  margin-top: auto;
  align-self: flex-start;
}

.page-barber .green-indicator {
  width: 4px;
  height: 4px;
  background-color: #25D366;
  border-radius: 50%;
  animation: pulse-widget 1.5s infinite alternate;
}

@keyframes pulse-widget {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.3); opacity: 1; }
}

/* Aura Beauty Simulated Theme (Aura Verona) */
.page-beauty-aura {
  background: linear-gradient(rgba(12, 35, 64, 0.65), rgba(12, 35, 64, 0.88)), url('https://images.unsplash.com/photo-1562322140-8baeececf3df?auto=format&fit=crop&w=400&q=85') center/cover;
  color: #FFFFFF;
}

.page-beauty-aura .sim-overlay {
  background: radial-gradient(circle at top right, rgba(0, 168, 143, 0.2), transparent 70%);
}

.page-beauty-aura .sim-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}

.page-beauty-aura .sim-logo-circle {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  font-size: 8px;
}

.page-beauty-aura .logo-font {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #FFFFFF;
}

.page-beauty-aura .sim-nav-links-mini {
  display: flex;
  gap: 8px;
  font-size: 5.5px;
  opacity: 0.8;
}

.page-beauty-aura .sim-btn-gold {
  background-color: var(--color-accent);
  color: var(--color-white);
  font-weight: 700;
  padding: 2.5px 8px;
  border-radius: 20px;
  font-size: 6.5px;
}

.page-beauty-aura .sim-body {
  text-align: center;
  max-width: 320px;
  margin: 8px auto 0 auto;
}

.page-beauty-aura .sim-meta-tag-gold {
  font-size: 4.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--color-accent);
  margin-bottom: 2px;
  display: inline-block;
}

.page-beauty-aura .aura-title-main {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3px;
  color: #FFFFFF;
}

.page-beauty-aura .aura-subtext {
  font-size: 6px;
  opacity: 0.8;
  line-height: 1.15;
  margin-bottom: 6px;
}

.page-beauty-aura .aura-buttons-row {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.page-beauty-aura .aura-btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.page-beauty-aura .aura-btn-secondary {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--color-white);
  font-size: 5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

/* Gusto Italiano Simulated Theme */
.page-food {
  background: linear-gradient(rgba(18, 13, 10, 0.6), rgba(18, 13, 10, 0.85)), url('https://images.unsplash.com/photo-1555396273-367ea4eb4db5?auto=format&fit=crop&w=400&q=85') center/cover;
  color: #FFFFFF;
}

.page-food .sim-overlay {
  background: radial-gradient(circle at top right, rgba(226, 110, 32, 0.15), transparent 60%);
}

.page-food .text-orange {
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #E26E20;
}

.page-food .sim-btn-orange {
  background-color: #E26E20;
  color: #fff;
  font-weight: 800;
  padding: 2.5px 8px;
  border-radius: 4px;
  font-size: 7px;
}

.page-food .sim-meta-tag { color: #E26E20; }
.page-food .text-orange-light { font-size: 7px; opacity: 0.8; margin-top: 2.5px; }

.page-food .sim-menu-floating {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  background-color: rgba(255, 255, 255, 0.04);
  padding: 6px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.page-food .menu-sim-row {
  display: flex;
  justify-content: space-between;
  font-size: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 2px;
}

.page-food .menu-sim-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* Gym Local Simulated Theme */
.page-palestra {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.88), rgba(254, 36, 36, 0.65)), url('https://images.unsplash.com/photo-1517838277536-f5f99be501cd?auto=format&fit=crop&w=400&q=85') center/cover;
  color: #FFFFFF;
}

.page-palestra .sim-overlay {
  background: radial-gradient(circle at top right, rgba(254, 36, 36, 0.25), transparent 60%);
}

.page-palestra .sim-header {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.page-palestra .text-neon {
  font-weight: 800;
  color: #FE2424;
}

.page-palestra .sim-btn-neon {
  background-color: #FE2424;
  color: #FFFFFF;
  font-weight: 800;
  padding: 2.5px 8px;
  border-radius: 4px;
  font-size: 7px;
  text-transform: uppercase;
}

.page-palestra .sim-meta-tag-neon {
  color: #FE2424;
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.page-palestra .text-neon-light {
  font-size: 7px;
  opacity: 0.85;
  margin-top: 2.5px;
}

.page-palestra .sim-local-contact-strip {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.page-palestra .sim-local-contact-strip span {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 6px;
  font-weight: 700;
}

/* Medical / Dentist Simulated Theme */
.page-medical {
  background: linear-gradient(rgba(10, 30, 60, 0.5), rgba(10, 30, 60, 0.78)), url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=400&q=85') center/cover;
  color: #FFFFFF;
}

.page-medical .sim-overlay {
  background: radial-gradient(circle at top right, rgba(56, 178, 230, 0.2), transparent 60%);
}

.page-medical .sim-header {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.page-medical .text-medical {
  font-weight: 800;
  color: #FFFFFF;
}

.page-medical .sim-btn-medical {
  background-color: #38B2E6;
  color: #FFFFFF;
  font-weight: 800;
  padding: 2.5px 8px;
  border-radius: 4px;
  font-size: 7px;
}

.page-medical .sim-meta-tag-medical {
  color: #38B2E6;
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.page-medical .text-medical-light {
  font-size: 7px;
  opacity: 0.9;
  margin-top: 2.5px;
  color: #E2E8F0;
}

.page-medical .sim-local-contact-strip {
  display: flex;
  gap: 6px;
  margin-top: 8px;
}

.page-medical .sim-local-contact-strip span {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 6px;
  font-weight: 700;
}

/* Color Suite Simulated Theme */
.page-beauty-color {
  background: linear-gradient(rgba(20, 15, 10, 0.4), rgba(20, 15, 10, 0.7)), url('https://images.unsplash.com/photo-1522337660859-02fbefca4702?auto=format&fit=crop&w=400&q=85') center/cover;
  color: #FFFFFF;
}

.page-beauty-color .sim-overlay {
  background: radial-gradient(circle at top right, rgba(230, 200, 170, 0.2), transparent 70%);
}

.page-beauty-color .sim-header {
  border-bottom-color: rgba(255, 255, 255, 0.15);
}

.page-beauty-color .text-color-suite {
  font-family: var(--font-serif);
  font-weight: 800;
  color: #FDFBF7;
  letter-spacing: 0.5px;
}

.page-beauty-color .sim-btn-color {
  background-color: #E6C8AA;
  color: #1A1A1A;
  font-weight: 800;
  padding: 2.5px 8px;
  border-radius: 4px;
  font-size: 7px;
}

.page-beauty-color .sim-meta-tag-color {
  color: #E6C8AA;
  font-size: 6.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.page-beauty-color .text-color-light {
  font-size: 7px;
  opacity: 0.9;
  margin-top: 2.5px;
  color: #E2E8F0;
}

/* Tab filter trigger hide logic */
.portfolio-card.hide {
  display: none;
}

/* --- Value Proposition Deep Dive --- */
.feature-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 36px;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(46, 98, 246, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-white);
}

.feature-text {
  font-size: 14px;
  color: #A0AEC0;
  line-height: 1.6;
  font-weight: 350;
}

/* --- Timeline Section --- */
.timeline {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  width: 2px;
  height: 100%;
  background-color: var(--color-border-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 56px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 2px;
  left: -32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  border: 4px solid var(--color-bg-light);
  box-shadow: 0 4px 10px rgba(46,98,246,0.15);
  z-index: 5;
}

.timeline-content {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 28px 36px;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
  transform: translateX(4px);
  border-color: rgba(46,98,246,0.1);
  box-shadow: var(--shadow-premium);
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.timeline-text {
  font-size: 15px;
  color: var(--color-text-gray);
  line-height: 1.6;
  font-weight: 350;
}

/* --- Testimonials Section --- */
.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  position: relative;
  min-height: 280px;
  display: flex;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.testimonial-rating {
  color: #FFB020;
  font-size: 16px;
  margin-bottom: 24px;
  display: flex;
  gap: 4px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-white);
  text-align: center;
  margin-bottom: 32px;
  font-style: italic;
}

@media (min-width: 768px) {
  .testimonial-quote { font-size: 24px; }
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-accent);
}

.author-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
}

.author-role {
  font-size: 12px;
  color: var(--color-gold);
  font-weight: 600;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.05);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background-color: rgba(255,255,255,0.1);
  color: var(--color-accent);
  border-color: rgba(255,255,255,0.2);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.15);
  transition: var(--transition-fast);
}

.dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: var(--color-accent);
}

/* --- FAQ Accordion --- */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: var(--color-bg-light);
  border-radius: 16px;
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-item:hover {
  border-color: rgba(46,98,246,0.15);
  box-shadow: var(--shadow-sm);
}

.accordion-header {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
  background: none;
}

@media (min-width: 768px) {
  .accordion-header { font-size: 18px; }
}

.accordion-icon {
  font-size: 14px;
  color: var(--color-text-gray);
  transition: transform 0.3s ease;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.accordion-body p {
  padding: 0 28px 24px 28px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-gray);
  font-weight: 350;
}

/* Accordion Active States */
.accordion-item.active {
  border-color: rgba(46,98,246,0.15);
  background-color: var(--color-white);
  box-shadow: var(--shadow-premium);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: var(--color-accent);
}

/* --- Action Banner --- */
.action-banner {
  background-color: var(--color-primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.action-banner-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.action-banner-container {
  position: relative;
  z-index: 10;
}

.badge-accent {
  background-color: rgba(46,98,246,0.12);
  color: var(--color-accent);
}

.action-banner-title {
  font-size: 32px;
  font-weight: 950;
  line-height: 1.25;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .action-banner-title { font-size: 46px; }
}

.action-banner-desc {
  font-size: 17px;
  color: #CBD5E1;
  margin-bottom: 40px;
  font-weight: 350;
}

.action-banner-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.btn-large {
  padding: 18px 40px;
}

.action-banner-subtext {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* --- Footer --- */
.footer {
  background-color: #060911;
  color: var(--color-white);
  padding: 80px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 0.8fr 1fr 1fr;
  }
}

.footer-col-brand {
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #CBD5E1;
}

.footer-socials a:hover {
  background-color: rgba(255,255,255,0.1);
  color: var(--color-accent);
}

.footer-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: #CBD5E1;
  font-weight: 350;
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contacts li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #CBD5E1;
  font-weight: 350;
}

.footer-contacts li i {
  font-size: 16px;
}

.hover-underline:hover {
  text-decoration: underline;
  color: var(--color-whatsapp) !important;
}

.footer-bottom {
  background-color: #03050A;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom-container {
    flex-direction: row;
    text-align: left;
  }
}

.copyright-text {
  font-weight: 350;
}

.legal-text {
  font-weight: 350;
}

/* --- Floating Widgets --- */
.floating-widgets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

@media (max-width: 480px) {
  .floating-widgets {
    bottom: 16px;
    right: 16px;
  }
}

.widget-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--color-white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  position: relative;
}

@media (max-width: 480px) {
  .widget-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}

.widget-whatsapp {
  background-color: var(--color-whatsapp);
}

.widget-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  transform: scale(1.08);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
}

/* --- Scroll Reveal Effects --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.top-bar-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
@media (min-width: 580px) {
  .top-bar-left { width: auto; }
}

/* --- Pricing & Packages Section Styles --- */
.pricing-grid {
  align-items: stretch;
  margin-top: 48px;
}

.pricing-card {
  background-color: #122846; /* Slightly lighter navy for glassmorphic card contrast */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-accent);
  box-shadow: 0 30px 60px rgba(0, 168, 143, 0.15);
}

.pricing-card-popular {
  background-color: #162f52;
  border: 2px solid var(--color-accent);
  box-shadow: 0 15px 45px rgba(0, 168, 143, 0.15);
}

.pricing-card-popular:hover {
  border-color: var(--color-accent);
  box-shadow: 0 30px 60px rgba(0, 168, 143, 0.3);
}

.pricing-popular-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, var(--color-accent), #6366F1);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(0, 168, 143, 0.4);
}

.pricing-card-header {
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 24px;
}

.pricing-badge-tier {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-text-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.tier-popular {
  color: var(--color-accent);
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.price-original {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: line-through;
  font-weight: 500;
  margin-right: 4px;
}

.price-currency {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.price-amount {
  font-size: 54px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  font-family: var(--font-sans);
}

.pricing-card-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  font-weight: 350;
}

.pricing-card-body {
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-features li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.5;
  font-weight: 350;
}

.pricing-features li strong {
  color: var(--color-white);
  font-weight: 600;
}

.pricing-features li i {
  font-size: 14px;
  color: var(--color-accent) !important;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-card-footer {
  margin-top: auto;
}

.pricing-domain-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 350;
}

.note-popular {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.btn-outline-pricing {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.02);
  color: var(--color-white);
}

.btn-outline-pricing:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent);
}

.w-full {
  width: 100% !important;
}

.justify-center {
  justify-content: center !important;
}

@media (max-width: 767px) {
  .pricing-card {
    padding: 36px 24px;
  }
  .pricing-grid {
    gap: 32px;
  }
}

/* --- Promo Countdown Banner --- */
.promo-banner {
  background: linear-gradient(135deg, #071324 0%, #0F233C 100%);
  border-bottom: 2px solid var(--color-accent);
  color: var(--color-white);
  padding: 12px 0;
  position: relative;
  z-index: 90;
}

.promo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.promo-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.promo-badge {
  background-color: rgba(239, 68, 68, 0.15);
  color: #EF4444;
  padding: 4px 12px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: pulse-red 2s infinite alternate;
}

@keyframes pulse-red {
  0% { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(1.03); opacity: 1; }
}

.promo-text {
  font-size: 14px;
  font-weight: 400;
}

.promo-text strong {
  color: var(--color-accent);
}

.promo-timer-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.promo-timer-desc {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--color-text-light);
  letter-spacing: 1px;
  font-weight: 600;
}

.promo-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.timer-segment {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
  min-width: 48px;
}

.timer-val {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
}

.timer-lbl {
  font-size: 8px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.timer-divider {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-accent);
}

.btn-promo {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-promo:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-1px);
}

@media (max-width: 991px) {
  .promo-container {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 12px;
  }
  .promo-content {
    flex-direction: column;
    gap: 6px;
  }
  .promo-timer-wrapper {
    flex-direction: column;
    gap: 8px;
  }
}

/* Specific styling when promo banner is moved below hero CTAs on mobile */
.promo-banner.mobile-card-mode {
  margin-top: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 168, 143, 0.15);
  margin-bottom: 24px;
}

.promo-banner.mobile-card-mode .promo-container {
  padding: 0 16px;
}
