/* ==========================================================================
   ARTMIDIA DESIGN - INTERACTIVE BENTO EXPANDER ACCORDION STYLESHEET
   ========================================================================== */

:root {
  /* Colors from reference attachment */
  --bg-dark: #050718;
  --bg-hero: linear-gradient(135deg, #050718 0%, #080D2C 45%, #22104E 100%);
  --bg-card-dark: #0A0E2B;
  --bg-card-purple: #160D3D;
  
  --primary-cyan: #00F2FE;
  --primary-teal: #00D2FF;
  --accent-mint: #00C9A7;
  --accent-purple: #1E1552;
  --accent-magenta: #E100FF;
  --accent-violet: #6C5CE7;
  
  --gradient-teal-btn: linear-gradient(135deg, #00C9A7 0%, #00D2FF 100%);
  --gradient-purple-btn: linear-gradient(135deg, #6C5CE7 0%, #7F00FF 100%);
  --gradient-cyan-text: linear-gradient(135deg, #00F2FE 0%, #00C9A7 100%);
  
  --text-white: #FFFFFF;
  --text-muted: #CBD5E1;
  --text-dark-title: #1E1552;
  --text-dark-sub: #64748B;
  
  /* Fonts */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

.highlight-cyan {
  color: #00D2FF;
  background: var(--gradient-cyan-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.highlight-purple {
  background: linear-gradient(135deg, #E100FF 0%, #7F00FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn-teal-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-full);
  background: var(--gradient-teal-btn);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(0, 201, 167, 0.45);
  transition: var(--transition-normal);
  letter-spacing: 0.5px;
}

.btn-teal-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 201, 167, 0.65);
}

.btn-purple-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  background: #6C5CE7;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
  transition: var(--transition-normal);
}

.btn-purple-explore:hover {
  background: #5B4BC4;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(108, 92, 231, 0.6);
}

.btn-purple-explore .arrow-icon-circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* ==========================================================================
   HEADER NAVBAR & DROPDOWN SUBMENU
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: var(--transition-normal);
}

.header.scrolled {
  background: rgba(5, 7, 24, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo img {
  transform: scale(0.9);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-link {
  color: #CBD5E1;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link:hover,
.nav-link.active {
  color: #00D2FF;
}

/* Dropdown Submenu */
.nav-links li.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: rgba(10, 14, 43, 0.96);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: 14px;
  padding: 0.75rem 0;
  min-width: 250px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.2);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}

.nav-links li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.25rem;
  color: #CBD5E1;
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

.dropdown-menu li a:hover {
  background: rgba(0, 242, 254, 0.12);
  color: #00F2FE;
  padding-left: 1.5rem;
}

.dropdown-menu li a i {
  color: #00D2FF;
  font-size: 0.95rem;
  width: 20px;
  text-align: center;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ==========================================================================
   ENHANCED DARK PAGE HEADER BANNER WITH NEON GLOW EFFECTS
   ========================================================================== */
.page-header-banner {
  background: #030511;
  padding-top: 9.5rem;
  padding-bottom: 4.5rem;
  position: relative;
  border-bottom: 1px solid rgba(0, 242, 254, 0.25);
  overflow: hidden;
}

/* Radial Glow Orbs */
.page-header-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.22) 0%, rgba(127, 0, 255, 0.15) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.page-header-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(225, 0, 255, 0.18) 0%, rgba(0, 210, 255, 0.1) 60%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

/* Grid Line Accents */
.header-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
  opacity: 0.7;
}

.page-header-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.page-header-title {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 0 35px rgba(0, 242, 254, 0.35);
}

.page-header-subtitle {
  font-size: 1.15rem;
  color: #CBD5E1;
  max-width: 650px;
  line-height: 1.6;
}

/* Breadcrumb Styling */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  list-style: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 242, 254, 0.2);
  padding: 0.55rem 1.4rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.breadcrumb-item {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #00D2FF;
  font-size: 0.75rem;
}

.breadcrumb-item a {
  color: #CBD5E1;
  text-decoration: none;
  transition: var(--transition-normal);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumb-item a:hover {
  color: #00D2FF;
}

.breadcrumb-item.active {
  color: #00F2FE;
  font-weight: 700;
}

/* ==========================================================================
   HERO SECTION (3D OVERLAPPING IMAGE)
   ========================================================================== */
.hero-exact {
  background: var(--bg-hero);
  padding-top: 4rem;
  padding-bottom: 3rem;
  min-height: 65vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: visible; /* Protrudes down onto white feature bar */
  z-index: 10;
}

/* Hero Intro Playlist Video Background */
.hero-intro-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-intro-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.7) contrast(1.1);
}

.hero-intro-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(3,5,17,0.85) 0%, rgba(3,5,17,0.3) 50%, rgba(3,5,17,0.5) 100%),
              linear-gradient(180deg, rgba(3,5,17,0.4) 0%, transparent 40%, rgba(3,5,17,0.7) 100%);
  z-index: 1;
}

/* Container de Luzes Dinâmicas da Hero (Aurora Effect) */
.hero-lights-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity 2.5s cubic-bezier(0.4, 0, 0.2, 1);
  mix-blend-mode: screen;
}

.hero-lights-container.lights-active {
  opacity: 1;
}

.hero-light-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  will-change: transform;
}

/* Blob 1: Azul Ciano (#00F2FE) */
.blob-cyan {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.55) 0%, transparent 70%);
  top: 5%;
  left: -15%;
  animation: moveCyan 14s ease-in-out infinite alternate;
}

/* Blob 2: Roxo (#7928CA / #6B21A8) */
.blob-purple {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(121, 40, 202, 0.5) 0%, transparent 70%);
  bottom: -10%;
  right: -15%;
  animation: movePurple 18s ease-in-out infinite alternate;
}

/* Blob 3: Lilás (#D8B4FE / #B873FF / #9333EA) */
.blob-lilac {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(216, 180, 254, 0.45) 0%, transparent 70%);
  top: 30%;
  left: 35%;
  animation: moveLilac 16s ease-in-out infinite alternate;
}

/* Animações de um lado para o outro */
@keyframes moveCyan {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(65vw, 15vh) scale(1.3); }
  100% { transform: translate(35vw, -5vh) scale(0.9); }
}

@keyframes movePurple {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-70vw, -25vh) scale(1.2); }
  100% { transform: translate(-25vw, 10vh) scale(1.1); }
}

@keyframes moveLilac {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30vw, -20vh) scale(1.4); }
  100% { transform: translate(45vw, 25vh) scale(0.85); }
}

.hero-exact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-left-content h1 {
  font-size: 3.6rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-left-content p {
  font-size: 1.125rem;
  color: #CBD5E1;
  margin-bottom: 2.5rem;
  max-width: 480px;
  line-height: 1.6;
}

/* 3D PC Image Container */
.hero-3d-pc-container {
  position: relative;
  width: 100%;
  max-width: 920px;
  margin: 3.5rem auto -9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  transform: translateY(35px);
  transition: opacity 1.8s cubic-bezier(0.4, 0, 0.2, 1), transform 1.8s cubic-bezier(0.4, 0, 0.2, 1), filter 1.8s ease;
}

.hero-3d-pc-container.pc-exit-animation {
  opacity: 0 !important;
  transform: translateY(-80px) scale(0.65) rotateX(15deg) !important;
  filter: blur(25px) drop-shadow(0 0 0 transparent) !important;
  pointer-events: none !important;
}

.hero-3d-pc-img {
  width: 154%;
  max-width: 1080px;
  height: auto;
  max-height: 740px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 60px rgba(0, 242, 254, 0.55));
  transition: transform 0.5s ease, filter 0.5s ease;
  animation: floatBounce 5s ease-in-out infinite;
}

.hero-3d-pc-container:hover .hero-3d-pc-img {
  transform: translateY(-8px) scale(1.03);
  filter: drop-shadow(0 42px 84px rgba(0, 0, 0, 0.85)) drop-shadow(0 0 75px rgba(0, 242, 254, 0.7));
}

/* Floating 3D Checkmark Badges */
.floating-badge {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 17px;
  background: linear-gradient(135deg, #00D2FF 0%, #00C9A7 100%);
  box-shadow: 0 15px 38px rgba(0, 201, 167, 0.6), 0 0 28px rgba(0, 242, 254, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.7rem;
  z-index: 35;
  animation: floatBounce 4s ease-in-out infinite;
}

.floating-badge-left {
  top: 42%;
  left: -22px;
  animation-delay: 0s;
}

.floating-badge-right {
  top: 22%;
  right: -22px;
  animation-delay: 2s;
}

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

/* ==========================================================================
   WHITE FEATURE BAR & DOTS MATRIX EFFECT
   ========================================================================== */
@keyframes dotsFloat {
  0% { background-position: 0 0; }
  100% { background-position: 24px 24px; }
}

.hero-white-bar,
.bg-dots-effect {
  background-color: #FFFFFF;
  background-image: radial-gradient(rgba(15, 23, 42, 0.18) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  background-position: 0 0;
  color: var(--text-dark-title);
  padding: 5rem 0 3.5rem 0;
  border-bottom: 1px solid #F1F5F9;
  position: relative;
  z-index: 5;
  animation: dotsFloat 35s linear infinite;
}

.hero-white-bar::before,
.bg-dots-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.85) 75%, #FFFFFF 100%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, transparent 25%, transparent 75%, rgba(255, 255, 255, 0.95) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-white-bar .container,
.bg-dots-effect .container {
  position: relative;
  z-index: 2;
}

.feature-bar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.feature-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
  position: relative;
}

.feature-column:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  border-right: 1px solid #E2E8F0;
}

.feature-icon-circle {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 2px solid var(--accent-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-purple);
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: var(--transition-normal);
}

.feature-column:hover .feature-icon-circle {
  background: var(--accent-purple);
  color: #FFFFFF;
  transform: scale(1.1);
}

.feature-column h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark-title);
  margin-bottom: 0.5rem;
}

.feature-column p {
  font-size: 0.95rem;
  color: var(--text-dark-sub);
  line-height: 1.5;
  max-width: 290px;
}

/* ==========================================================================
   SECTION: "APRESENTAÇÃO ARTMIDIA DESIGN"
   ========================================================================== */
.apresentacao-section {
  width: 100%;
  background: #FFFFFF;
  color: #0F172A;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.apresentacao-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 260px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.9) 0%, rgba(0, 201, 167, 0.9) 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  pointer-events: none;
  z-index: 1;
}

.apresentacao-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(127, 0, 255, 0.9) 0%, rgba(0, 210, 255, 0.9) 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
  z-index: 1;
}

.apresentacao-full-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.apresentacao-left-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-right: 3rem;
  border-right: 1px solid #E2E8F0;
  position: relative;
}

.brand-3d-ribbon-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.brand-3d-ribbon-logo img {
  max-width: 100%;
  height: auto;
  transform: scale(0.9);
}

.brand-title-artmidia {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00C9A7 0%, #7F00FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

.brand-subtitle-design {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 12px;
  text-transform: uppercase;
  margin-top: -0.25rem;
}

.apresentacao-right-content {
  position: relative;
}

.apresentacao-header-tag {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: #00D2FF;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.apresentacao-main-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #7F00FF;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.apresentacao-underline {
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #00D2FF 0%, #7F00FF 100%);
  border-radius: 2px;
  margin-bottom: 2rem;
}

.apresentacao-quote {
  font-size: 1.3rem;
  color: #1E1552;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.apresentacao-quote strong {
  color: #00D2FF;
  font-weight: 800;
}

.apresentacao-quote span.transforma-bold {
  color: #7F00FF;
  font-weight: 800;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.pillar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pillar-icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pillar-icon-circle.cyan-pillar {
  color: #00C9A7;
  border-color: #00C9A7;
  background: rgba(0, 201, 167, 0.08);
}

.pillar-icon-circle.blue-pillar {
  color: #2563EB;
  border-color: #2563EB;
  background: rgba(37, 99, 235, 0.08);
}

.pillar-icon-circle.purple-pillar {
  color: #7F00FF;
  border-color: #7F00FF;
  background: rgba(127, 0, 255, 0.08);
}

.pillar-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: #1E1552;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  letter-spacing: 0.5px;
}

.pillar-desc {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.4;
}

/* ==========================================================================
   DYNAMIC BENTO EXPANDER ACCORDION SECTION (100% INTERACTIVE)
   ========================================================================== */
.creative-agency-section {
  background: #FFFFFF;
  color: #0F172A;
  padding: 5rem 0;
  border-top: 1px solid #F1F5F9;
  position: relative;
}

.creative-agency-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3.5rem;
}

.case-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(108, 92, 231, 0.1);
  color: #6C5CE7;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.case-badge-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid #6C5CE7;
}

.creative-agency-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1E1035;
  line-height: 1.1;
  max-width: 650px;
  letter-spacing: -0.02em;
}

/* Bento Expandable Grid Container */
.bento-cards-grid {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
  min-height: 350px;
}

/* Base Bento Card Style */
.bento-card {
  flex: 0.65;
  border-radius: 20px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(108, 92, 231, 0.3);
}

/* EXPANDED CARD STATE */
.bento-card.expanded {
  flex: 2.8;
  box-shadow: 0 20px 45px rgba(108, 92, 231, 0.4);
}

/* Background Image Overlay on Hover & Expanded */
.bento-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 0;
  opacity: 0.15;
}

.bento-card:hover .bento-bg-image,
.bento-card.expanded .bento-bg-image {
  opacity: 0.85;
  transform: scale(1.04);
}

.bento-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.95) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.bento-card:hover .bento-dark-overlay,
.bento-card.expanded .bento-dark-overlay {
  opacity: 1;
}

/* Collapsed vs Expanded Content Visibility */
.bento-collapsed-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  transition: opacity 0.3s ease;
}

.bento-expanded-content {
  position: relative;
  z-index: 2;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}

.bento-card.expanded .bento-collapsed-content {
  display: none;
  opacity: 0;
}

.bento-card.expanded .bento-expanded-content {
  display: flex;
  opacity: 1;
}

/* Vertical Text for Collapsed Capsule Cards */
.vertical-text-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #FFFFFF;
  letter-spacing: 1px;
  white-space: nowrap;
}

/* Expanded Card Elements */
.bento-pill-tags {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.bento-expanded-header h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.bento-expanded-header p {
  font-size: 0.9rem;
  color: #CBD5E1;
  line-height: 1.5;
  max-width: 500px;
}

.bento-category-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--gradient-teal-btn);
  color: #050718;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 201, 167, 0.4);
  transition: var(--transition-normal);
}

.bento-category-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 201, 167, 0.6);
}

.bento-num-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #0F172A;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

/* Card Specific Base Themes */
.card-theme-blue {
  background: linear-gradient(135deg, #1E88E5 0%, #1565C0 100%);
}

.card-theme-glass {
  background: linear-gradient(135deg, #6C5CE7 0%, #4834D4 100%);
}

.card-theme-purple {
  background: #6C5CE7;
}

/* ==========================================================================
   "O QUE FAREMOS" SECTION
   ========================================================================== */
.oque-faremos-card {
  background: #FFFFFF;
  color: #0F172A;
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.oque-faremos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.oque-faremos-title-wrapper {
  position: relative;
}

.oque-faremos-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #0D1236;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.oque-faremos-line {
  width: 140px;
  height: 4px;
  background: linear-gradient(90deg, #00D2FF 0%, #7F00FF 100%);
  border-radius: 2px;
  margin-top: 0.5rem;
}

.target-graphic-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7F00FF 0%, #1E1035 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(127, 0, 255, 0.4);
}

.process-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.5rem;
  row-gap: 1.5rem;
  margin-bottom: 3rem;
}

.process-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #F1F5F9;
  transition: var(--transition-normal);
}

.process-item:hover {
  transform: translateX(6px);
}

.process-icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E1552 0%, #0D1236 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(30, 21, 82, 0.25);
}

.process-icon-circle.cyan-theme {
  background: linear-gradient(135deg, #00C9A7 0%, #00D2FF 100%);
  color: #050718;
}

.process-num-badge {
  width: 38px;
  height: 32px;
  border-radius: 8px;
  background: #1E1552;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.process-num-badge.cyan-num {
  background: #00D2FF;
  color: #050718;
}

.process-title-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: #0F172A;
  text-transform: uppercase;
  line-height: 1.3;
}

.mission-callout-box {
  background: linear-gradient(135deg, #1E103D 0%, #0D153A 100%);
  border: 1px solid rgba(0, 210, 255, 0.4);
  border-radius: var(--radius-md);
  padding: 1.75rem 2.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.mission-rocket-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E100FF 0%, #7F00FF 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(225, 0, 255, 0.5);
}

.mission-text-content {
  color: #FFFFFF;
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 500;
}

.mission-text-content strong {
  color: #FFFFFF;
}

.mission-text-content span.highlight-mint {
  color: #00F2FE;
  font-weight: 800;
}

.mission-chart-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: rgba(0, 210, 255, 0.15);
  border: 1px solid #00D2FF;
  color: #00D2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

/* ==========================================================================
   SUBSEQUENT SECTIONS & PLATFORM CARDS
   ========================================================================== */
section {
  padding: 5.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.25);
  color: var(--primary-cyan);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  color: #FFFFFF;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.glass-card {
  background: rgba(14, 18, 50, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  transition: var(--transition-normal);
}

.glass-card:hover {
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.15);
}

/* Platforms Grid for Paid Traffic Page */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.platform-card {
  background: rgba(10, 14, 43, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  transition: var(--transition-normal);
}

.platform-card:hover {
  border-color: #00D2FF;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 210, 255, 0.2);
}

.platform-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 210, 255, 0.1);
  color: #00D2FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem auto;
}

/* Checklist Layout Banner */
.layout-banner-card {
  background: linear-gradient(135deg, rgba(10, 14, 43, 0.95) 0%, rgba(22, 13, 61, 0.95) 100%);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  padding: 3.5rem;
}

.layout-badge-number {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(127, 0, 255, 0.2);
  border: 1px solid var(--primary-purple);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  margin-bottom: 2rem;
}

.badge-num {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #E100FF 0%, #7F00FF 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.badge-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #FFFFFF;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.offers-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.site-feature-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
              border-color 0.4s ease, 
              box-shadow 0.4s ease,
              background 0.4s ease;
  cursor: pointer;
}

.site-feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 242, 254, 0.5);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 15px 35px rgba(0, 242, 254, 0.15);
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.check-icon-wrapper {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(0, 201, 167, 0.15);
  border: 1px solid var(--accent-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-mint);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.offer-text {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
}

.layout-bottom-callout {
  background: linear-gradient(135deg, rgba(127, 0, 255, 0.4) 0%, rgba(0, 210, 255, 0.4) 100%);
  border: 1px solid rgba(0, 242, 254, 0.5);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.callout-rocket-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E100FF 0%, #7F00FF 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
}

/* ===== SITE TYPES GRID (sites-e-landingpages.html) ===== */
.site-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.site-type-card {
  background: rgba(10, 14, 43, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
}

.site-type-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.site-type-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.4);
  box-shadow: 0 25px 50px rgba(0, 242, 254, 0.12);
}

.site-type-card:hover::before {
  opacity: 1;
}

.site-type-card--featured {
  border-color: rgba(225, 0, 255, 0.4);
  background: linear-gradient(135deg, rgba(22, 13, 61, 0.9) 0%, rgba(10, 14, 43, 0.9) 100%);
  box-shadow: 0 10px 30px rgba(225, 0, 255, 0.1);
}

.site-type-card--featured:hover {
  border-color: rgba(225, 0, 255, 0.7);
  box-shadow: 0 25px 50px rgba(225, 0, 255, 0.2);
}

.site-type-icon-box {
  width: 62px;
  height: 62px;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-cyan);
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-type-card:hover .site-type-icon-box {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 8px 20px rgba(0, 242, 254, 0.2);
}

.site-type-badge {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: rgba(0, 242, 254, 0.12);
  border: 1px solid rgba(0, 242, 254, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary-cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  width: fit-content;
}

.site-type-badge--purple {
  background: rgba(225, 0, 255, 0.12);
  border-color: rgba(225, 0, 255, 0.3);
  color: #E100FF;
}

.site-type-badge--mint {
  background: rgba(0, 201, 167, 0.12);
  border-color: rgba(0, 201, 167, 0.3);
  color: var(--accent-mint);
}

.site-type-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.site-type-card p {
  color: #CBD5E1;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.site-type-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  flex-grow: 1;
}

.site-type-features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #CBD5E1;
}

.site-type-features li i.fa-check {
  color: var(--accent-mint);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.service-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary-cyan);
  margin-bottom: 1.25rem;
}

/* ROI Calculator */
.roi-calculator-container {
  background: rgba(10, 14, 43, 0.95);
  border: 1px solid rgba(0, 242, 254, 0.25);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.slider-group label {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.slider-group label span {
  color: var(--primary-cyan);
  font-size: 1.1rem;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #1C2449;
  outline: none;
  -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-cyan);
  cursor: pointer;
}

.calc-result-box {
  background: #050718;
  border: 1px solid rgba(127, 0, 255, 0.3);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
}

.result-value {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #00D2FF;
  margin-bottom: 0.8rem;
}

/* Portfolio Filters & Cards */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-normal);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gradient-teal-btn);
  color: white;
  border-color: transparent;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-normal);
  cursor: pointer;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 242, 254, 0.4);
}

.portfolio-img {
  width: 100%;
  height: 230px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 7, 24, 0.9) 0%, rgba(5, 7, 24, 0.2) 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-normal);
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: #00D2FF;
}

.form-select option { background: #0A0E2B; }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition-normal);
}

.whatsapp-float:hover { transform: scale(1.1); }

/* Footer */
/* Footer Hologram Style */
.footer {
  background: #020617;
  border-top: none;
  padding: 2rem 0 3rem 0;
  position: relative;
}

.footer-holo-banner {
  background: linear-gradient(135deg, #7F00FF 0%, #0072FF 50%, #00F2FE 100%);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  margin-top: -90px;
  margin-bottom: 4.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 10px 30px rgba(127, 0, 255, 0.3);
  position: relative;
  z-index: 10;
}

.holo-banner-left {
  max-width: 600px;
}

.holo-banner-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.holo-banner-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 500;
}

.holo-banner-bullets span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.holo-banner-bullets i {
  color: #00F2FE;
}

.holo-banner-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.holo-btn-dark {
  background: #03040F;
  color: #FFFFFF;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.holo-btn-dark:hover {
  background: #0B0E27;
  transform: translateY(-2px);
}

.holo-btn-outline {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.holo-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-holo-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 3.5rem;
}

.footer-holo-brand img {
  max-height: 36px;
  width: auto;
}

.footer-holo-brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.footer-holo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.footer-holo-col h4 {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748B;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-holo-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
}

.footer-holo-col ul li a {
  color: #94A3B8;
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-holo-col ul li a:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

.footer-holo-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2.5rem;
  font-size: 0.82rem;
  color: #64748B;
}

.footer-holo-legal {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.footer-holo-legal a {
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-holo-legal a:hover {
  color: #FFFFFF;
}

.footer-holo-status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  color: #94A3B8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
}

.footer-holo-status .status-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
}

/* Responsiveness */
@media (max-width: 992px) {
  .hero-exact-grid, .banner-grid, .contact-grid, .roi-calculator-container, .process-grid-container, .apresentacao-full-grid, .bento-cards-grid, .creative-agency-header {
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  .hero-3d-pc-container {
    margin-bottom: 0;
  }
  .hero-3d-pc-img {
    width: 100%;
  }
  .hero-white-bar {
    padding: 3.5rem 0;
  }
  .bento-card {
    min-height: 220px;
  }
  .bento-card.expanded {
    flex: 1;
  }
  .apresentacao-left-brand {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 2.5rem;
  }
  .pillars-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .feature-bar-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .feature-column:not(:last-child)::after {
    display: none;
  }
  .hero-left-content h1 { font-size: 2.75rem; }
  .creative-agency-title { font-size: 2.2rem; margin-bottom: 1.5rem; }
  .oque-faremos-card { padding: 2rem 1.5rem; }
  .vertical-text-title { writing-mode: horizontal-tb; transform: none; }
  .page-header-title { font-size: 2.6rem; }
  .footer-holo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  .footer-holo-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    margin-top: -60px;
  }
  .holo-banner-actions {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .footer-holo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .footer-holo-bottom {
    flex-direction: column-reverse;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .footer-holo-legal {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: none;
    box-shadow: none;
    padding-left: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-holo-grid {
    grid-template-columns: 1fr;
  }
}
