/*
Theme Name:  Adzep
Theme URI:   https://adzep.com.br
Author:      Adzep
Author URI:  https://adzep.com.br
Description: Tema oficial Adzep – Design System completo com compatibilidade WordPress/Cortex. AdTech & Mídia Programática.
Version:     2.1.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adzep
Tags:        custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

/**
 * Tema: Adzep Headless
 * Criado por: Camillo Dantas
 * Website: camillodantas.com.br
 */

/* ==========================================================================
   1. DESIGN TOKENS (CSS Custom Properties)
   ========================================================================== */
:root {
  /* Brand Colors */
  --brand-purple:       #612D91;
  --brand-purple-hover: #4e2474;
  --brand-purple-dark:  #2A1143;
  --brand-purple-deep:  #0B0413;
  --brand-purple-light: #7C45A9;
  --brand-purple-soft:  #F4EFF9;

  --brand-green:        #0AA04A;
  --brand-green-light:  #16D166;

  /* Text */
  --text-main:   #0f172a;
  --text-muted:  #475569;
  --text-light:  #94a3b8;

  /* Backgrounds & Borders */
  --bg-white:      #ffffff;
  --bg-page:       #f8fafc;
  --border-color:  rgba(15, 23, 42, 0.08);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-sm:    0 1px 3px rgba(15, 23, 42, 0.05);
  --shadow-md:    0 4px 6px -1px rgba(15, 23, 42, 0.05), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
  --shadow-lg:    0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.01);
  --shadow-float: 0 20px 40px -10px rgba(15, 23, 42, 0.08);

  /* Glow Effects */
  --glow-purple: 0 8px 24px -6px rgba(97, 45, 145, 0.4);
  --glow-green:  0 8px 24px -6px rgba(10, 160, 74, 0.4);

  /* Animations */
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-out:    cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Layout */
  --container-max: 1200px;
  --header-height: 80px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background: var(--bg-page);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Quicksand', sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s var(--ease-out);
}

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

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* WordPress Core Classes */
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { text-align: center; margin: 0 auto 1rem; display: block; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 0.5rem; }
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px; width: 1px;
  margin: -1px; overflow: hidden;
  position: absolute;
  word-wrap: normal !important;
}

/* ==========================================================================
   3. LAYOUT / CONTAINER
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}

.site-main {
  min-height: 70vh;
}

/* Page padding-top when header is fixed */
.has-fixed-header .site-main {
  padding-top: var(--header-height);
}

/* ==========================================================================
   4. HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s var(--ease-out);
}

.site-header.scrolled,
.site-header.adzep-is-scrolled {
  box-shadow: var(--shadow-md);
}

.site-header.header-dark {
  background: rgba(11, 4, 19, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.site-logo a {
  display: flex;
  align-items: center;
}

.site-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.site-logo .logo-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-purple);
}

/* Primary Navigation */
.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all 0.2s;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
  color: var(--brand-purple);
  background: var(--brand-purple-soft);
}

.header-dark .main-navigation a {
  color: rgba(255, 255, 255, 0.75);
}

.header-dark .main-navigation a:hover,
.header-dark .main-navigation .current-menu-item > a {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Dropdown */
.main-navigation .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-float);
  flex-direction: column;
  gap: 0.5rem;
  align-items: stretch;
  padding: 0.5rem;
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0s linear 0.32s;
  z-index: 100;
}

.main-navigation li.menu-item-has-children::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
  background: transparent;
  z-index: 99;
}

.main-navigation li:hover > .sub-menu,
.main-navigation li:focus-within > .sub-menu,
.main-navigation li.adzep-submenu-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition: opacity 0.32s ease, transform 0.32s ease, visibility 0s;
}

.main-navigation .sub-menu a {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  justify-content: flex-start;
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--brand-purple-soft);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brand-purple);
  border-radius: 2px;
  transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1),
.menu-toggle.adzep-is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2),
.menu-toggle.adzep-is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3),
.menu-toggle.adzep-is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 4, 19, 0.97);
  z-index: 11000; /* menu mobile acima de header fixo (1000) e modal (9999) */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.active,
.mobile-nav-overlay.adzep-is-open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(92vw, 440px);
  padding: 18px 18px 22px;
  background: linear-gradient(180deg, rgba(11, 4, 19, 0.98), rgba(7, 3, 13, 0.96));
  border-left: 1px solid rgba(255,255,255,0.08);
  transform: translateX(110%);
  transition: transform 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mobile-nav-overlay.adzep-is-open .mobile-nav-drawer { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 4px 12px;
}
.mobile-nav-brand img { height: 44px; width: auto; object-fit: contain; }

.mobile-nav-close {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  font-size: 1.15rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav {
  flex: 1;
  overflow: auto;
  padding: 10px 2px 0;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list > li { position: relative; }
.mobile-nav-list li { position: relative; }

.mobile-nav-list > li > a {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 12px 12px;
  border-radius: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-nav-list > li > a:hover,
.mobile-nav-list > li > a:focus-visible {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.mobile-submenu-toggle {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.mobile-submenu-toggle:focus-visible { outline: 2px solid rgba(22, 209, 102, 0.9); outline-offset: 2px; }
.mobile-submenu-toggle i { transition: transform 0.25s ease; }
.mobile-submenu-open > .mobile-submenu-toggle i { transform: rotate(180deg); }

.mobile-nav-list .sub-menu {
  list-style: none;
  padding: 0 0 0 14px;
  margin: 0 0 6px 10px;
  border-left: 1px solid rgba(255,255,255,0.10);
  overflow: hidden;
  max-height: 0;
  will-change: max-height;
  transition: max-height 0.3s ease;
}
.mobile-nav-list .sub-menu[hidden] { display: none; }
.mobile-nav-list .sub-menu .mobile-submenu-toggle { top: 8px; right: 8px; width: 36px; height: 36px; border-radius: 10px; }
.mobile-nav-list .sub-menu .sub-menu { margin-left: 10px; }

.mobile-nav-list .sub-menu a {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
}

.mobile-nav-list .sub-menu a:hover,
.mobile-nav-list .sub-menu a:focus-visible {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.mobile-nav-footer { padding-top: 12px; }

/* ==========================================================================
   5. BOTÕES (Componentes do Design System)
   ========================================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--brand-purple);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--glow-purple);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(97, 45, 145, 0.6);
  color: #fff;
}

.btn-primary:active { transform: translateY(0); }

.btn-white {
  background: #fff;
  color: var(--brand-purple) !important;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--bg-page);
  box-shadow: var(--shadow-lg);
  color: var(--brand-purple-hover) !important;
}

.btn-green {
  background: linear-gradient(135deg, var(--brand-green) 0%, #16D166 100%);
  box-shadow: var(--glow-green);
  color: #fff !important;
}

.btn-green:hover {
  box-shadow: 0 16px 30px -8px rgba(10, 160, 74, 0.6);
  color: #fff !important;
}

.btn-outline {
  background: transparent;
  color: var(--brand-purple);
  border: 2px solid var(--brand-purple);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--brand-purple);
  color: #fff;
  box-shadow: var(--glow-purple);
}

.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-lg { padding: 18px 42px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ==========================================================================
   6. BADGES
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #fff;
  color: var(--brand-purple);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.badge-white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.badge-green {
  background: rgba(22, 209, 102, 0.1);
  color: var(--brand-green);
  border: none;
}

.badge-purple {
  background: var(--brand-purple-soft);
  color: var(--brand-purple);
  border: none;
}

/* ==========================================================================
   7. CARDS
   ========================================================================== */
.card-base {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  padding: 2rem;
  transition: all 0.3s var(--ease-out);
}

.card-base:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(97, 45, 145, 0.15);
}

.card-glass {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
}

/* Stat Card */
.stat-card {
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: transform 0.3s var(--ease-out);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background: var(--brand-purple-dark);
  color: #fff;
}

.stat-card:hover { transform: translateY(-4px); }

.stat-icon { font-size: 1.5rem; margin-bottom: 1rem; opacity: 0.9; }

.stat-value {
  font-family: 'Quicksand', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.stat-label { font-size: 0.9rem; font-weight: 500; opacity: 0.8; line-height: 1.4; }

/* Service Card */
.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-purple), var(--brand-green-light));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
  border-color: rgba(97, 45, 145, 0.2);
}

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

.service-icon {
  width: 56px; height: 56px;
  background: var(--brand-purple-soft);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-purple);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.service-card:hover .service-icon {
  background: var(--brand-purple);
  color: #fff;
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.service-card p { color: var(--text-muted); line-height: 1.6; }

/* ==========================================================================
   8. TEAM CARD & SLIDER
   ========================================================================== */
.t-card { text-align: left; }

.t-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  margin-bottom: 1.2rem;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  background: #e2e8f0;
}

.t-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.t-card:hover .t-img-wrap img { transform: scale(1.05); }

.team-arrow-icon {
  position: absolute;
  top: 16px; left: 16px;
  width: 36px; height: 36px;
  background: var(--brand-purple);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.t-card:hover .team-arrow-icon { transform: scale(1.1); }

.t-tag {
  display: inline-block;
  background: var(--brand-purple);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

.t-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  font-family: 'Quicksand', sans-serif;
}

/* Team Pagination */
.team-pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
  padding: 10px 0;
}

.team-bullet {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(97, 45, 145, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
  position: relative;
}

.team-bullet::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
}

.team-bullet.active,
.team-bullet.adzep-is-active {
  background: var(--brand-purple);
  transform: scale(1.3);
}

/* Team Slider Wrapper */
.team-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.team-slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.4s var(--ease-out);
}

.team-slider-track .t-card {
  flex: 0 0 260px;
  max-width: 260px;
}

/* ==========================================================================
   9. FORMULÁRIOS
   ========================================================================== */
.form-group { margin-bottom: 1.2rem; width: 100%; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s;
  outline: none;
  background: var(--bg-page);
  color: var(--text-main);
  appearance: none;
}

.form-control:focus {
  border-color: var(--brand-purple);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(97, 45, 145, 0.1);
}

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

textarea.form-control { min-height: 120px; resize: vertical; }

/* WP Comment Form */
#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.2s;
  outline: none;
  background: var(--bg-page);
  color: var(--text-main);
  margin-bottom: 1rem;
}

#commentform input:focus,
#commentform textarea:focus {
  border-color: var(--brand-purple);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(97, 45, 145, 0.1);
}

#commentform input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-purple);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s var(--ease-out);
  box-shadow: var(--glow-purple);
}

/* Search Form */
.search-form {
  display: flex;
  gap: 0;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.search-form input[type="search"] {
  flex: 1;
  padding: 0.85rem 1.5rem;
  border: none;
  outline: none;
  font-size: 0.95rem;
  background: #fff;
  color: var(--text-main);
}

.search-form button[type="submit"] {
  padding: 0.85rem 1.5rem;
  background: var(--brand-purple);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.search-form button:hover { background: var(--brand-purple-hover); }

/* ==========================================================================
   10. MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active,
.modal-overlay.adzep-is-open {
  opacity: 1;
  pointer-events: all;
}

.modal-dialog {
  background: #fff;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  max-height: calc(100vh - 4rem);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-float);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s var(--ease-spring);
}

.modal-overlay.active .modal-dialog,
.modal-overlay.adzep-is-open .modal-dialog { transform: translateY(0); }

.modal-header {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.modal-close {
  background: var(--bg-page);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}

.modal-close:hover {
  background: #fee2e2;
  color: #ef4444;
  border-color: transparent;
}

.modal-body {
  padding: 1.5rem 2.5rem 2.5rem;
  overflow: auto;
}

@media (max-width: 640px) {
  .modal-overlay { padding: 1rem; align-items: flex-start; }
  .modal-dialog { max-height: calc(100vh - 2rem); }
  .modal-header { padding: 1.25rem 1.25rem 1rem; }
  .modal-body { padding: 1rem 1.25rem 1.25rem; }
}

.modal-privacy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
  font-weight: 500;
}

/* ==========================================================================
   11. FAQ (ACCORDION)
   ========================================================================== */
.faq-container { max-width: 800px; width: 100%; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(97, 45, 145, 0.15);
}

.faq-question {
  padding: 1.5rem 2rem;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-main);
  background: #fff;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--brand-purple); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--brand-purple-soft);
  color: var(--brand-purple);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: all 0.4s var(--ease-spring);
}

.faq-item.active .faq-icon,
.faq-item.is-open .faq-icon,
.faq-item.adzep-is-open .faq-icon { background: var(--brand-purple); color: #fff; transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer-inner {
  padding: 0 2rem 1.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--bg-page);
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.faq-item.active .faq-answer,
.faq-item.is-open .faq-answer,
.faq-item.adzep-is-open .faq-answer { max-height: 500px; }

/* Native details/summary fallback */
details {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

details:hover { box-shadow: var(--shadow-md); border-color: rgba(97,45,145,0.15); }

summary {
  padding: 1.5rem 2rem;
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  color: var(--text-main);
  transition: color 0.2s;
}

summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--brand-purple); }

summary::after {
  content: '\f067';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--brand-purple);
  transition: transform 0.4s var(--ease-spring);
  flex-shrink: 0;
  margin-left: 1rem;
}

details[open] summary { border-bottom: 1px solid var(--border-color); }
details[open] summary::after { transform: rotate(135deg); }

.faq-content {
  padding: 1.5rem 2rem;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--bg-page);
}

/* ==========================================================================
   12. SOCIAL ICONS
   ========================================================================== */
.social-icons { display: flex; gap: 0.8rem; }

.social-icons a {
  width: 36px; height: 36px;
  background: rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.2s;
  font-size: 1.1rem;
}

.social-icons a:hover {
  background: var(--brand-purple);
  color: #fff;
  transform: translateY(-3px);
}

.social-icons.dark a {
  background: var(--brand-purple-soft);
  color: var(--brand-purple);
}

.social-icons.dark a:hover {
  background: var(--brand-purple);
  color: #fff;
}

/* ==========================================================================
   13. BACKGROUNDS & EFEITOS VISUAIS
   ========================================================================== */
.bg-dot-grid {
  background-color: var(--brand-purple);
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px);
  background-size: 24px 24px;
}

.bg-dot-grid-light {
  background-color: var(--bg-white);
  background-image: radial-gradient(rgba(15, 23, 42, 0.06) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
}

.bg-gradient-purple {
  background: linear-gradient(135deg, var(--brand-purple-dark) 0%, var(--brand-purple) 100%);
  color: #fff;
}

.bg-dark-deep {
  background: var(--brand-purple-deep);
  color: #fff;
}

.bg-dot-grid h1, .bg-dot-grid h2, .bg-dot-grid h3, .bg-dot-grid h4, .bg-dot-grid h5, .bg-dot-grid h6,
.bg-gradient-purple h1, .bg-gradient-purple h2, .bg-gradient-purple h3, .bg-gradient-purple h4, .bg-gradient-purple h5, .bg-gradient-purple h6,
.bg-dark-deep h1, .bg-dark-deep h2, .bg-dark-deep h3, .bg-dark-deep h4, .bg-dark-deep h5, .bg-dark-deep h6 {
  color: #fff;
}

.glow-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.glow-bg.glow-purple {
  background: var(--brand-purple);
  width: 350px; height: 350px;
  top: -10%; left: -10%;
}

.glow-bg.glow-green {
  background: var(--brand-green-light);
  width: 250px; height: 250px;
  bottom: -10%; right: -5%;
}

/* ==========================================================================
   14. HERO – PRINCIPAL (Home)
   ========================================================================== */
.hero-main {
  position: relative;
  background: var(--brand-purple-deep);
  color: #fff;
  padding: 8rem 0 5rem;
  overflow: hidden;
  text-align: center;
}

.hero-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

.hero-main-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-main-inner .badge { margin-bottom: 1.5rem; }

.hero-main-inner h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #fff;
  line-height: 1.1;
  max-width: 800px;
}

.hero-main-inner p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 700px;
  margin-inline: auto;
}

.hero-main-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.hero-main-metrics {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.hm-metric {
  flex: 1;
  min-width: 140px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.hm-metric:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.hm-metric-value {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.hm-metric-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==========================================================================
   15. HERO – SECUNDÁRIO (Páginas Internas)
   ========================================================================== */
.hero-secondary {
  position: relative;
  background: var(--brand-purple);
  color: #fff;
  padding: 6rem 0 4rem;
  overflow: hidden;
}

.hero-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.15) 2px, transparent 2px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

.hero-secondary .container { position: relative; z-index: 2; }

.hero-v2-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}

.hero-text-content .badge { margin-bottom: 1.5rem; }

.hero-text-content h1 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.hero-text-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.hc-item {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: transform 0.3s var(--ease-out);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hc-item:hover { transform: translateY(-4px); }

.hc-img {
  padding: 0;
  background: transparent;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

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

.hc-dark  { background: var(--brand-purple-dark); color: #fff; }
.hc-light { background: var(--brand-purple-light); color: #fff; }

.hc-icon { font-size: 1.2rem; margin-bottom: 0.8rem; opacity: 0.9; }

.hc-value {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.2rem;
  letter-spacing: -1px;
}

.hc-label { font-size: 0.8rem; font-weight: 500; opacity: 0.8; line-height: 1.3; }

/* ==========================================================================
   16. CEO / DESTAQUE SECTION
   ========================================================================== */
.ceo-section {
  position: relative;
  background: var(--brand-purple-deep);
  padding: 5rem 0;
  overflow: hidden;
  color: #fff;
}

.ceo-card {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 3rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  align-items: center;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.ceo-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.05);
  aspect-ratio: 1 / 1;
}

.ceo-image {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(10%) contrast(1.05);
  transition: transform 0.6s var(--ease-out);
}

.ceo-card:hover .ceo-image { transform: scale(1.05); filter: grayscale(0%); }

.ceo-header {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.ceo-titles .ceo-label {
  color: var(--brand-green-light);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  display: block;
}

.ceo-titles h3 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  margin-bottom: 0.2rem;
  letter-spacing: -0.04em;
}

.ceo-titles .ceo-role {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.linkedin-btn {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s;
  flex-shrink: 0;
}

.linkedin-btn:hover {
  background: #0077b5;
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 119, 181, 0.4);
}

.ceo-bio p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ==========================================================================
   17. SEÇÕES GENÉRICAS
   ========================================================================== */
.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-header .badge { margin-bottom: 1.5rem; }

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.section-header h2.light { color: #fff; }

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-header p.light { color: rgba(255, 255, 255, 0.7); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

/* Section Padding */
.section-py    { padding: 5rem 0; }
.section-py-sm { padding: 3rem 0; }
.section-py-lg { padding: 7rem 0; }

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--brand-purple-dark) 0%, var(--brand-purple) 100%);
  padding: 5rem 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-inline: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   18. BLOG / POSTS
   ========================================================================== */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.post-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-out);
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
  border-color: rgba(97, 45, 145, 0.15);
}

.post-card-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-page);
}

.post-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.post-card:hover .post-card-thumb img { transform: scale(1.06); }

.post-card-body { padding: 1.5rem; }

.post-card-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.post-card-cat {
  background: var(--brand-purple-soft);
  color: var(--brand-purple);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.post-card-date {
  font-size: 0.8rem;
  color: var(--text-light);
}

.post-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  line-height: 1.3;
}

.post-card h3 a { color: inherit; }
.post-card h3 a:hover { color: var(--brand-purple); }

.post-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.post-read-more {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-purple);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.post-read-more:hover { gap: 10px; }

/* Single Post */
.single-post-hero {
  background: var(--brand-purple-deep);
  padding: 6rem 0 3rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.entry-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
}

.entry-content h2 { font-size: 1.8rem; margin: 2rem 0 1rem; }
.entry-content h3 { font-size: 1.4rem; margin: 1.5rem 0 0.75rem; }
.entry-content p  { margin-bottom: 1.25rem; }
.entry-content ul, .entry-content ol { margin: 1rem 0 1rem 1.5rem; }
.entry-content li { margin-bottom: 0.5rem; list-style: disc; }
.entry-content ol li { list-style: decimal; }
.entry-content a { color: var(--brand-purple); text-decoration: underline; }
.entry-content blockquote {
  border-left: 4px solid var(--brand-purple);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--brand-purple-soft);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--brand-purple-dark);
  font-style: italic;
}

.entry-content img {
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.pagination a {
  background: #fff;
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.pagination a:hover { background: var(--brand-purple-soft); color: var(--brand-purple); border-color: transparent; }

.pagination .current {
  background: var(--brand-purple);
  color: #fff;
  border: none;
  box-shadow: var(--glow-purple);
}

/* ==========================================================================
   19. SIDEBAR
   ========================================================================== */
.sidebar-widget {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.sidebar-widget h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: var(--text-main);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--brand-purple-soft);
}

.sidebar-widget ul { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-widget ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
  display: flex;
  justify-content: space-between;
}

.sidebar-widget ul li a:hover { color: var(--brand-purple); }

/* ==========================================================================
   20. FOOTER
   ========================================================================== */
.site-footer {
  background: var(--brand-purple-deep);
  color: #fff;
  font-size: 0.95rem;
}

.footer-main { padding: 3.5rem 0 2.5rem; }

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 3rem;
  text-align: center;
}

.footer-logo img {
  height: 150px;
  width: auto;
  object-fit: contain;
}

.footer-social .social-icons { justify-content: center; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-grid--model {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4rem;
  margin-bottom: 0;
}

.footer-brand img {
  height: 100px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 1rem;
}

.footer-col-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer-links a:hover {
  color: var(--brand-green-light);
  padding-left: 4px;
}

/* WordPress Menu in Footer */
.footer-menu ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-menu ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.2s;
}
.footer-menu ul li a:hover { color: var(--brand-green-light); padding-left: 4px; }

.footer-muted { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; line-height: 1.6; margin: 0; }

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: rgba(255, 255, 255, 0.82);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-contact-list a i { color: var(--brand-green-light); }
.footer-contact-list a:hover { transform: translateY(-1px); border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.06); color: #fff; }

.footer-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
}
.footer-privacy i { color: rgba(255,255,255,0.72); }
.footer-privacy a { color: rgba(255,255,255,0.72); text-decoration: underline; text-underline-offset: 3px; }
.footer-privacy a:hover { color: var(--brand-green-light); }

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.footer-links-col--important { grid-column: 1 / -1; }

.site-footer .adzep-newsletter-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
}

.site-footer .adzep-newsletter-text { margin: 0 0 12px; font-size: 0.9rem; color: rgba(255,255,255,0.65); }

.site-footer .adzep-newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.site-footer .adzep-newsletter-msg,
.site-footer .adzep-newsletter-privacy {
  grid-column: 1 / -1;
}

.site-footer .adzep-newsletter-field {
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.06);
}

.site-footer .adzep-newsletter-btn {
  width: auto;
  border-radius: 8px;
  padding: 10px 14px;
  box-shadow: none;
  font-weight: 800;
}

.site-footer .adzep-newsletter-privacy { margin-top: 10px; }

.adzep-newsletter-card {
  border-radius: 22px;
  background: radial-gradient(120% 120% at 0% 0%, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 45%, rgba(0,0,0,0.18) 100%),
              linear-gradient(135deg, rgba(97,45,145,0.95), rgba(17,8,33,0.96));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  padding: 22px;
}

.adzep-newsletter-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Quicksand', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
}

.adzep-newsletter-title i { color: var(--brand-green-light); }
.adzep-newsletter-divider { height: 1px; background: rgba(255,255,255,0.10); margin: 14px 0; }
.adzep-newsletter-text { color: rgba(255,255,255,0.78); line-height: 1.5; margin: 0 0 14px; font-size: 0.95rem; }

.adzep-newsletter-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}
.adzep-newsletter-benefits li { display: flex; align-items: center; gap: 10px; }
.adzep-newsletter-benefits i { color: rgba(22, 209, 102, 0.95); }

.adzep-newsletter-form { display: grid; gap: 12px; }
.adzep-newsletter-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.08);
}
.adzep-newsletter-field i { color: rgba(255,255,255,0.70); }
.adzep-newsletter-form input[type="email"] {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  color: #fff;
  outline: none;
}
.adzep-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.55); }
.adzep-newsletter-field:focus-within { box-shadow: 0 0 0 3px rgba(22,209,102,0.18); border-color: rgba(22,209,102,0.30); }
.adzep-newsletter-field.is-invalid { box-shadow: 0 0 0 3px rgba(255, 127, 127, 0.18); border-color: rgba(255, 127, 127, 0.35); }
.adzep-newsletter-field.is-valid { box-shadow: 0 0 0 3px rgba(182, 255, 220, 0.16); border-color: rgba(182, 255, 220, 0.30); }

.adzep-newsletter-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  border-radius: 999px;
  padding: 14px 18px;
  background: rgba(22, 209, 102, 0.95);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 16px 32px rgba(22, 209, 102, 0.20);
}
.adzep-newsletter-btn:hover { transform: translateY(-1px); box-shadow: 0 18px 36px rgba(22, 209, 102, 0.28); }
.adzep-newsletter-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

.adzep-newsletter-msg { min-height: 1.2em; font-size: 0.9rem; color: rgba(255,255,255,0.75); }
.adzep-newsletter-msg.is-error { color: rgba(255, 189, 189, 0.95); }
.adzep-newsletter-msg.is-success { color: rgba(182, 255, 220, 0.95); }

.adzep-newsletter-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.66);
}
.adzep-newsletter-privacy a { color: rgba(255,255,255,0.76); text-decoration: underline; text-underline-offset: 3px; }
.adzep-newsletter-privacy a:hover { color: var(--brand-green-light); }

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--brand-green-light); }

.footer-bottom-bar { background: transparent; }
.footer-bottom-links { display:flex; gap:1.5rem; flex-wrap:wrap; margin:0; padding:0; }

/* ==========================================================================
   21. UTILIDADES
   ========================================================================== */
.text-center { text-align: center; }
.text-purple  { color: var(--brand-purple); }
.text-green   { color: var(--brand-green-light); }
.text-muted   { color: var(--text-muted); }
.text-white   { color: #fff; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.d-flex   { display: flex; }
.flex-col { flex-direction: column; }
.gap-1    { gap: 0.5rem; }
.gap-2    { gap: 1rem; }
.gap-3    { gap: 1.5rem; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ==========================================================================
   22. RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid--model { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-links-grid { grid-template-columns: 1fr; }
  .hero-v2-container { grid-template-columns: 1fr; }
  .hero-cards-grid { max-width: 400px; margin: 0 auto; }
  .ceo-card { grid-template-columns: 1fr; text-align: center; }
  .ceo-image-wrap { max-width: 200px; margin: 0 auto; }
  .ceo-header { flex-direction: column; align-items: center; }
}

@media (max-width: 768px) {
  :root { --header-height: 68px; }

  .menu-toggle { display: flex; }
  .main-navigation,
  .header-cta { display: none; }

  .hero-main { padding: 6rem 0 3rem; }
  .hero-main-inner h1 { font-size: 2rem; }

  .hero-main-metrics { flex-direction: column; }
  .hm-metric:not(:last-child)::after { display: none; }
  .hm-metric { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .hm-metric:last-child { border-bottom: none; }

  .section-py    { padding: 3.5rem 0; }
  .section-py-lg { padding: 4rem 0; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid--model { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .ceo-card { padding: 1.5rem; }

  .hero-cards-grid { grid-template-columns: 1fr 1fr; }
  .hero-v2-container { grid-template-columns: 1fr; text-align: center; }

  .pagination a, .pagination span { width: 36px; height: 36px; }

  .modal-dialog { max-width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .modal-overlay { align-items: flex-end; padding: 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-main-actions { flex-direction: column; align-items: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-cards-grid { grid-template-columns: 1fr 1fr; max-width: 100%; }
}

/* ==========================================================================
   23. ANIMAÇÕES DE ENTRADA (Intersection Observer)
   ========================================================================== */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s var(--ease-out);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"]  { transform: translateX(-24px); }
[data-aos="fade-right"] { transform: translateX(24px); }
[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

[data-aos][data-delay="100"] { transition-delay: 0.1s; }
[data-aos][data-delay="200"] { transition-delay: 0.2s; }
[data-aos][data-delay="300"] { transition-delay: 0.3s; }
[data-aos][data-delay="400"] { transition-delay: 0.4s; }

/* ==========================================================================
   24. WP ADMIN BAR COMPATIBILITY
   ========================================================================== */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}










/* =============================================
   Adzep – Quem Somos | Page Stylesheet
   Versão: 1.0
   ============================================= */

/* ── DESIGN TOKENS ── */
:root {
  --brand-purple: #612D91;
  --brand-purple-hover: #4e2474;
  --brand-purple-dark: #2A1143;
  --brand-purple-deep: #0B0413;
  --brand-purple-light: #7C45A9;
  --brand-purple-soft: #F4EFF9;
  --brand-green: #0AA04A;
  --brand-green-light: #16D166;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --bg-white: #ffffff;
  --bg-page: #f8fafc;
  --border-color: rgba(15, 23, 42, 0.08);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.05);
  --shadow-md: 0 4px 6px -1px rgba(15,23,42,0.05), 0 2px 4px -2px rgba(15,23,42,0.03);
  --shadow-lg: 0 10px 25px -5px rgba(15,23,42,0.05), 0 8px 10px -6px rgba(15,23,42,0.01);
  --shadow-float: 0 20px 40px -10px rgba(15,23,42,0.08);
  --glow-purple: 0 8px 24px -6px rgba(97,45,145,0.4);
  --glow-green: 0 8px 24px -6px rgba(10,160,74,0.4);
  --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ── RESET & BASE ── */
.adzep-page * { box-sizing: border-box; margin: 0; padding: 0; }
.adzep-page { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; color: var(--text-main); background: var(--bg-white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
.adzep-page h1,.adzep-page h2,.adzep-page h3,.adzep-page h4,.adzep-page h5 { font-family: 'Quicksand', sans-serif; color: var(--text-main); line-height: 1.2; letter-spacing: -0.03em; }
.adzep-page .bg-dot-grid h1,.adzep-page .bg-dot-grid h2,.adzep-page .bg-dot-grid h3,.adzep-page .bg-dot-grid h4,.adzep-page .bg-dot-grid h5,.adzep-page .bg-dot-grid h6,
.adzep-page .bg-gradient-purple h1,.adzep-page .bg-gradient-purple h2,.adzep-page .bg-gradient-purple h3,.adzep-page .bg-gradient-purple h4,.adzep-page .bg-gradient-purple h5,.adzep-page .bg-gradient-purple h6,
.adzep-page .bg-dark-deep h1,.adzep-page .bg-dark-deep h2,.adzep-page .bg-dark-deep h3,.adzep-page .bg-dark-deep h4,.adzep-page .bg-dark-deep h5,.adzep-page .bg-dark-deep h6 { color: #fff; }
.adzep-page a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease-out); }
.adzep-page img { max-width: 100%; height: auto; display: block; }

/* ── LAYOUT ── */
.adzep-page .container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.adzep-page .text-center { text-align: center; }

/* ── COMPONENTES ── */
.adzep-page .badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; background: #fff; color: var(--brand-purple); margin-bottom: 1.5rem; border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.adzep-page .badge-white { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.1); box-shadow: none; backdrop-filter: blur(12px); font-size: 0.8rem; }
.adzep-page .badge-green { background: rgba(22,209,102,0.1); color: var(--brand-green); border: none; }
.adzep-page .btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: var(--brand-purple); color: #fff; padding: 14px 32px; border-radius: 50px; font-family: 'Quicksand', sans-serif; font-weight: 700; font-size: 1rem; cursor: pointer; border: none; transition: all 0.3s var(--ease-out); box-shadow: var(--glow-purple); }
.adzep-page .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -8px rgba(97,45,145,0.6); }
.adzep-page .btn-primary:active { transform: translateY(0); scale: 0.98; }
.adzep-page .btn-white { background: #fff; color: var(--brand-purple); box-shadow: var(--shadow-md); }
.adzep-page .btn-white:hover { background: var(--bg-page); box-shadow: var(--shadow-lg); color: var(--brand-purple-hover); }
.adzep-page .btn-green { background: linear-gradient(135deg, var(--brand-green) 0%, #16D166 100%); box-shadow: var(--glow-green); color: #fff; }
.adzep-page .btn-green:hover { box-shadow: 0 12px 24px -8px rgba(10,160,74,0.6); color: #fff; }
.adzep-page .section-title { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800; margin-bottom: 1rem; color: var(--text-main); }
.adzep-page .section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 800px; margin-bottom: 3rem; line-height: 1.7; font-weight: 400; }

/* ── HEADER ── */
.adzep-page header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border-color); padding: 1rem 0; transition: all 0.3s var(--ease-out); }
.adzep-page header.scrolled { box-shadow: 0 4px 20px rgba(15,23,42,0.05); padding: 0.75rem 0; background: rgba(255,255,255,0.95); }
.adzep-page .header-inner { display: flex; align-items: center; justify-content: space-between; }
.adzep-page .logo img { height: 36px; transition: transform 0.3s; }
.adzep-page .logo:hover img { transform: scale(1.02); }
.adzep-page .nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; margin-right: 1.5rem; }
.adzep-page .nav-links a { color: var(--text-muted); font-weight: 600; font-size: 0.95rem; }
.adzep-page .nav-links a:hover, .adzep-page .nav-links a.active { color: var(--brand-purple); }
.adzep-page .dropdown-wrapper { position: relative; }
.adzep-page .dropdown-menu { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(10px); background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 0.75rem; min-width: 280px; opacity: 0; visibility: hidden; transition: all 0.2s var(--ease-out); display: flex; flex-direction: column; gap: 0.5rem; align-items: stretch; border: 1px solid var(--border-color); }
.adzep-page .dropdown-wrapper:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.adzep-page .dropdown-item { display: block; width: 100%; box-sizing: border-box; text-align: left; padding: 0.75rem 1rem; border-radius: var(--radius-sm); transition: background 0.2s, color 0.2s; color: var(--text-main); font-weight: 600; font-size: 0.95rem; }
.adzep-page .dropdown-item:hover { background: var(--brand-purple-soft, var(--bg-page)); color: var(--brand-purple); }
.adzep-page .dropdown-item.active, .adzep-page .dropdown-item[aria-current="page"], .adzep-page .dropdown-item[aria-current="true"] { background: var(--brand-purple-soft, var(--bg-page)); color: var(--brand-purple); }
.adzep-page .mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; color: var(--text-main); cursor: pointer; z-index: 1002; padding: 0.5rem; }
.adzep-page .mobile-menu-overlay { display: none; position: fixed; inset: 0; background: rgba(15,23,42,0.4); backdrop-filter: blur(4px); z-index: 10003; opacity: 0; transition: opacity 0.3s; }
.adzep-page .nav-menu-wrapper { display: flex; align-items: center; }
.adzep-page .mobile-menu-header-internal { display: none; }

@media (max-width: 960px) {
  .adzep-page .mobile-menu-btn { display: block; }
  .adzep-page .mobile-menu-overlay { display: block; visibility: hidden; }
  .adzep-page .mobile-menu-overlay.is-open { visibility: visible; opacity: 1; }
  .adzep-page .nav-menu-wrapper { position: fixed; top: 0; right: 0; width: 85vw; max-width: 400px; height: 100dvh; background: #fff; flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; transform: translateX(100%); transition: transform 0.4s var(--ease-spring); z-index: 10005; overflow-y: auto; box-shadow: -10px 0 30px rgba(0,0,0,0.1); }
  .adzep-page .nav-menu-wrapper.is-open { transform: translateX(0); }
  .adzep-page .mobile-menu-header-internal { display: flex; justify-content: space-between; align-items: center; width: 100%; padding-bottom: 1.5rem; margin-bottom: 2rem; border-bottom: 1px solid var(--border-color); }
  .adzep-page .mobile-menu-header-internal img { height: 28px; }
  .adzep-page .btn-close-menu { background: none; border: none; font-size: 1.5rem; color: var(--text-muted); cursor: pointer; padding: 0.5rem; }
  .adzep-page .nav-links { flex-direction: column; gap: 1.5rem; width: 100%; align-items: flex-start; margin-right: 0; }
  .adzep-page .dropdown-menu { position: static; transform: none !important; box-shadow: none; border: none; padding: 0.5rem 0 0 0; width: 100%; opacity: 1; visibility: visible; display: none; }
  .adzep-page .dropdown-wrapper.is-open .dropdown-menu { display: flex; }
  .adzep-page .header-cta { width: 100%; margin-top: auto; padding-top: 2rem; }
  .adzep-page .header-cta .btn-primary { width: 100%; }
}

/* ── 1. HERO ── */
.adzep-page .hero-v2 { position: relative; background: var(--brand-purple-deep); color: #fff; padding: 10rem 0 9rem; overflow: hidden; }
.adzep-page .hero-v2::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.05) 1.5px, transparent 1.5px); background-size: 24px 24px; pointer-events: none; z-index: 1; }
.adzep-page .glow-bg { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; pointer-events: none; z-index: 0; }
.adzep-page .glow-purple { background: var(--brand-purple); width: 450px; height: 450px; }
.adzep-page .glow-green { background: var(--brand-green-light); width: 350px; height: 350px; }
.adzep-page .hero-bg-map { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 120%; max-width: 1400px; pointer-events: none; z-index: 1; }
.adzep-page .hero-bg-map img { width: 100%; height: auto; filter: invert(1); opacity: 0.06; }
.adzep-page .hero-profit-coin { position: absolute; color: var(--brand-green-light); font-weight: 800; font-family: 'Quicksand', sans-serif; font-size: 1.8rem; text-shadow: 0 0 15px rgba(22,209,102,0.5); opacity: 0; pointer-events: none; display: flex; align-items: center; gap: 4px; z-index: 2; }
.adzep-page .hero-profit-coin i { font-size: 1.1rem; }
.adzep-page .hpc-1 { bottom: -5%; left: 15%; animation: heroFloatProfit 6.5s linear infinite 0s; }
.adzep-page .hpc-2 { bottom: -10%; left: 35%; animation: heroFloatProfit 7.2s linear infinite 1.5s; }
.adzep-page .hpc-3 { bottom: -2%; left: 55%; animation: heroFloatProfit 6.8s linear infinite 3.2s; }
.adzep-page .hpc-4 { bottom: -8%; left: 75%; animation: heroFloatProfit 5.8s linear infinite 0.8s; }
.adzep-page .hpc-5 { bottom: -15%; left: 88%; animation: heroFloatProfit 8s linear infinite 2.4s; }
.adzep-page .hpc-6 { bottom: -4%; left: 45%; animation: heroFloatProfit 7.5s linear infinite 4.5s; }
@keyframes heroFloatProfit { 0% { transform: translateY(50px) scale(0.6); opacity: 0; } 10% { transform: translateY(0px) scale(1.1); opacity: 0.7; } 85% { transform: translateY(-500px) scale(1); opacity: 0.7; } 100% { transform: translateY(-600px) scale(0.8); opacity: 0; } }
.adzep-page .hero-v2-container { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 3; }
.adzep-page .hero-cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.adzep-page .hc-item { border-radius: var(--radius-lg); padding: 2rem 1.5rem; display: flex; flex-direction: column; justify-content: center; position: relative; transition: transform 0.3s var(--ease-out); box-shadow: 0 10px 25px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.08); }
.adzep-page .hc-item:hover { transform: translateY(-4px); }
.adzep-page .hc-img { padding: 0; background: transparent; overflow: hidden; aspect-ratio: 1/1; border: 1px solid rgba(255,255,255,0.08); }
.adzep-page .hc-img img { width: 100%; height: 100%; object-fit: cover; }
.adzep-page .hc-dark { background: var(--brand-purple-dark); color: #fff; }
.adzep-page .hc-light { background: var(--brand-purple-light); color: #fff; }
.adzep-page .hc-icon { font-size: 1.5rem; margin-bottom: 1rem; opacity: 0.9; }
.adzep-page .hc-value { font-family: 'Quicksand', sans-serif; font-size: 2.5rem; font-weight: 800; line-height: 1; margin-bottom: 0.5rem; letter-spacing: -1px; }
.adzep-page .hc-label { font-size: 0.9rem; font-weight: 500; opacity: 0.8; line-height: 1.4; }
.adzep-page .hero-text-content h1 { font-size: clamp(2.5rem, 4.5vw, 3.8rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }
.adzep-page .hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; z-index: 4; line-height: 0; }
.adzep-page .hero-wave svg { display: block; width: 100%; height: auto; fill: var(--bg-white); }

@media (max-width: 960px) {
  .adzep-page .hero-v2 { padding: 8rem 0 6rem; }
  .adzep-page .hero-v2-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .adzep-page .hero-cards-grid { max-width: 480px; margin: 0 auto; }
  .adzep-page .badge-white { margin: 0 auto 1.5rem; }
}
@media (max-width: 480px) {
  .adzep-page .hero-cards-grid { grid-template-columns: 1fr; gap: 1rem; }
  .adzep-page .hc-img { display: none; }
  .adzep-page .hc-item { padding: 1.5rem; text-align: left; }
}

/* ── 2. FUTURO DA MÍDIA ── */
.adzep-page .future-section { padding: 8rem 0; background: var(--bg-white); position: relative; overflow: hidden; }
.adzep-page .future-section::before { content: ''; position: absolute; top: -10%; right: -5%; width: 50%; height: 60%; background: var(--brand-purple); filter: blur(160px); opacity: 0.04; pointer-events: none; }
.adzep-page .future-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; position: relative; z-index: 2; }
.adzep-page .future-text-col h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 1.5rem; }
.adzep-page .future-text-col p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.2rem; }
.adzep-page .future-text-col p strong { color: var(--text-main); }
.adzep-page .clients-box { text-align: center; }
.adzep-page .clients-box h3 { font-size: 1.5rem; margin-bottom: 2rem; color: var(--text-main); font-weight: 800; }
.adzep-page .clients-logo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.adzep-page .cl-item { background: #fff; border: 1px solid rgba(15,23,42,0.04); border-radius: var(--radius-md); padding: 1.2rem; height: 80px; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(15,23,42,0.03); }
.adzep-page .cl-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(97,45,145,0.15); }
.adzep-page .cl-item img { max-height: 100%; max-width: 100%; object-fit: contain; transition: all 0.3s ease; }

@media (max-width: 960px) {
  .adzep-page .future-section { padding: 5rem 0; }
  .adzep-page .future-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .adzep-page .clients-logo-grid { grid-template-columns: repeat(3, 1fr); max-width: 600px; margin: 0 auto; }
}
@media (max-width: 480px) { .adzep-page .clients-logo-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── 3. RENTABILIDADE ── */
.adzep-page .rentabilidade-section { padding: 8rem 0; background: var(--bg-page); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.adzep-page .rent-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.adzep-page .rent-list { list-style: none; margin: 2rem 0; display: flex; flex-direction: column; gap: 1rem; }
.adzep-page .rent-list li { display: flex; align-items: center; gap: 12px; font-size: 1rem; color: var(--text-muted); font-weight: 500; }
.adzep-page .rent-list i { background: rgba(22,209,102,0.15); color: var(--brand-green); width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; }
.adzep-page .rent-chart-card { background: #fff; padding: 2.5rem; border-radius: var(--radius-xl); box-shadow: var(--shadow-float); position: relative; border: 1px solid rgba(15,23,42,0.03); }
.adzep-page .rent-chart-card::before { content: ''; position: absolute; top: -1px; left: -1px; right: -1px; height: 6px; background: var(--brand-purple); border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
.adzep-page .rent-chart-title { text-align: center; font-size: 0.8rem; text-transform: uppercase; font-weight: 800; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 2rem; }

@media (max-width: 960px) {
  .adzep-page .rentabilidade-section { padding: 5rem 0; }
  .adzep-page .rent-grid { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .adzep-page .rent-list li { justify-content: center; text-align: left; }
  .adzep-page .rent-chart-card { padding: 1.5rem; }
}

/* ── 4. PILARES (BENTO GRID) ── */
.adzep-page .pilares-section { padding: 8rem 0; background-color: var(--bg-white); background-image: radial-gradient(rgba(15,23,42,0.06) 1.5px, transparent 1.5px); background-size: 32px 32px; }
.adzep-page .bento-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; grid-template-rows: auto auto auto; gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.adzep-page .b-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-md); transition: transform 0.3s var(--ease-out); }
.adzep-page .b-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.adzep-page .b-missao { grid-column: 1/2; grid-row: 1/3; background: var(--brand-purple); color: #fff; padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.adzep-page .b-visao { grid-column: 1/2; grid-row: 3/5; background: var(--brand-purple); color: #fff; padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.adzep-page .b-img1 { grid-column: 2/3; grid-row: 1/2; aspect-ratio: 4/3; }
.adzep-page .b-img2 { grid-column: 3/4; grid-row: 1/2; aspect-ratio: 4/3; }
.adzep-page .b-img3 { grid-column: 2/3; grid-row: 2/3; aspect-ratio: 4/3; }
.adzep-page .b-img4 { grid-column: 3/4; grid-row: 2/3; aspect-ratio: 4/3; }
.adzep-page .b-valores { grid-column: 2/4; grid-row: 3/5; background: var(--brand-purple); color: #fff; padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.adzep-page .b-icon { font-size: 1.8rem; color: #fff; opacity: 0.7; margin-bottom: 1rem; }
.adzep-page .b-card h3 { font-size: 2rem; color: #fff; margin-bottom: 1rem; }
.adzep-page .b-card p { font-size: 1rem; color: rgba(255,255,255,0.9); line-height: 1.6; }
.adzep-page .b-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.adzep-page .b-img-wrapper:hover img { transform: scale(1.03); }
.adzep-page .valores-tags { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1rem; }
.adzep-page .v-tag { background: rgba(0,0,0,0.2); border: 1px solid rgba(255,255,255,0.1); padding: 8px 16px; border-radius: 50px; font-size: 0.9rem; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; color: #fff; transition: background 0.2s; }
.adzep-page .v-tag:hover { background: rgba(0,0,0,0.3); }
.adzep-page .v-tag i { font-size: 0.8rem; opacity: 0.8; }

@media (max-width: 960px) {
  .adzep-page .pilares-section { padding: 5rem 0; }
  .adzep-page .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .adzep-page .b-missao,.adzep-page .b-visao,.adzep-page .b-valores { grid-column: 1/-1; grid-row: auto; }
  .adzep-page .b-img1,.adzep-page .b-img2,.adzep-page .b-img3,.adzep-page .b-img4 { grid-column: auto; grid-row: auto; aspect-ratio: 16/9; }
}
@media (max-width: 600px) { .adzep-page .bento-grid { grid-template-columns: 1fr; } }

/* ── 5. EQUIPE ── */
.adzep-page .team-section { padding: 8rem 0 4rem; background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-page) 100%); overflow: hidden; }
.adzep-page .team-header { max-width: 800px; margin: 0 auto 3rem; text-align: center; }
.adzep-page .team-slider-wrapper { position: relative; max-width: 1248px; margin: 0 auto; }
.adzep-page .team-slider { display: flex; gap: 1.5rem; overflow-x: auto; padding: 1rem 1rem 2rem; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; position: relative; cursor: grab; user-select: none; -webkit-user-select: none; }
.adzep-page .team-slider.dragging { scroll-behavior: auto; cursor: grabbing; scroll-snap-type: none; }
.adzep-page .team-slider::-webkit-scrollbar { display: none; }
.adzep-page .t-card { flex: 0 0 260px; scroll-snap-align: start; text-align: left; }
.adzep-page .t-img-wrap { width: 100%; aspect-ratio: 1/1; border-radius: 24px; margin-bottom: 1.2rem; overflow: hidden; position: relative; box-shadow: var(--shadow-sm); background: #e2e8f0; }
.adzep-page .t-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; pointer-events: none; }
.adzep-page .t-card:hover .t-img-wrap img { transform: scale(1.05); }
.adzep-page .team-arrow-icon { position: absolute; top: 16px; left: 16px; width: 36px; height: 36px; background: var(--brand-purple); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; z-index: 2; box-shadow: 0 4px 10px rgba(0,0,0,0.15); transition: transform 0.3s; }
.adzep-page .t-card:hover .team-arrow-icon { transform: scale(1.1); }
.adzep-page .t-tag { display: inline-block; background: var(--brand-purple); color: #fff; font-size: 0.85rem; font-weight: 700; padding: 6px 16px; border-radius: 50px; margin-bottom: 0.8rem; }
.adzep-page .t-name { font-size: 1.3rem; font-weight: 800; color: var(--text-main); font-family: 'Quicksand', sans-serif; }
.adzep-page .team-pagination { display: flex; justify-content: center; gap: 12px; margin-top: 1.5rem; padding: 10px 0; }
.adzep-page .team-bullet { width: 12px; height: 12px; border-radius: 50%; background: rgba(97,45,145,0.2); border: none; cursor: pointer; transition: all 0.3s; padding: 0; position: relative; }
.adzep-page .team-bullet::after { content: ''; position: absolute; inset: -10px; border-radius: 50%; }
.adzep-page .team-bullet.active,
.adzep-page .team-bullet.adzep-is-active { background: var(--brand-purple); transform: scale(1.3); }

@media (max-width: 960px) { .adzep-page .team-section { padding: 5rem 0 2rem; } }

/* ── 6. CEO ── */
.adzep-page .leadership-section { padding: 4rem 0 8rem; background: var(--bg-page); }
.adzep-page .lideranca-container { max-width: 900px; margin: 0 auto; }
.adzep-page .ceo-card { background: var(--brand-purple-deep); border-radius: var(--radius-xl); padding: 3rem; display: grid; grid-template-columns: 240px 1fr; gap: 3rem; align-items: center; text-align: left; position: relative; box-shadow: var(--shadow-float); }
.adzep-page .ceo-img-wrap { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1/1; box-shadow: 0 15px 30px rgba(0,0,0,0.4); border: 2px solid rgba(255,255,255,0.05); }
.adzep-page .ceo-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.adzep-page .ceo-info-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; }
.adzep-page .ceo-tag { font-size: 0.8rem; color: var(--brand-green-light); font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.5rem; display: block; }
.adzep-page .ceo-info h3 { font-size: 2.2rem; color: #fff; margin-bottom: 0.2rem; }
.adzep-page .ceo-info h4 { font-size: 0.95rem; color: rgba(255,255,255,0.6); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.adzep-page .ceo-info p { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 1rem; }
.adzep-page .linkedin-btn { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 10px; color: #fff; font-size: 1.1rem; transition: all 0.3s; }
.adzep-page .linkedin-btn:hover { background: #0077b5; transform: scale(1.1); }

@media (max-width: 768px) {
  .adzep-page .leadership-section { padding: 2rem 0 5rem; }
  .adzep-page .ceo-card { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; text-align: center; }
  .adzep-page .ceo-img-wrap { max-width: 200px; margin: 0 auto; }
  .adzep-page .ceo-info-header { flex-direction: column; align-items: center; gap: 1rem; }
}

/* ── 7. MAPA ── */
.adzep-page .map-section { background: linear-gradient(135deg, var(--brand-purple-dark) 0%, var(--brand-purple) 100%); padding: 8rem 0; color: #fff; position: relative; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.05); }
.adzep-page .map-section::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.06) 2px, transparent 2px); background-size: 32px 32px; pointer-events: none; z-index: 1; }
.adzep-page .map-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-xl); padding: 4rem; backdrop-filter: blur(16px); box-shadow: 0 20px 40px rgba(0,0,0,0.2); display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.adzep-page .map-text .badge-map { background: rgba(0,0,0,0.25); padding: 10px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; color: #fff; display: inline-flex; align-items: center; gap: 10px; margin-bottom: 2rem; border: 1px solid rgba(255,255,255,0.1); box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.adzep-page .map-text .badge-map i { font-size: 1rem; color: var(--brand-green-light); }
.adzep-page .map-text p { font-size: 1.4rem; line-height: 1.6; color: rgba(255,255,255,0.85); font-family: 'Quicksand', sans-serif; font-weight: 500; }
.adzep-page .map-text strong { color: #fff; font-weight: 800; }
.adzep-page .map-img { display: flex; justify-content: center; position: relative; }
.adzep-page .map-img-wrapper { position: relative; display: inline-block; animation: floatMap 6s ease-in-out infinite; }
.adzep-page .map-img-wrapper img { width: 100%; max-width: 450px; display: block; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2)); }
.adzep-page .profit-coin { position: absolute; padding: 6px 12px; background: linear-gradient(135deg, var(--brand-green) 0%, var(--brand-green-light) 100%); color: #fff; border-radius: 50px; display: flex; align-items: center; gap: 5px; font-weight: 800; font-family: 'Quicksand', sans-serif; font-size: 0.85rem; box-shadow: 0 6px 15px rgba(22,209,102,0.4); opacity: 0; pointer-events: none; z-index: 10; }
.adzep-page .profit-coin i { font-size: 0.75rem; }
.adzep-page .pc-1 { top: 68%; left: 65%; animation: floatProfit 3.5s infinite 0.2s; }
.adzep-page .pc-2 { top: 38%; left: 80%; animation: floatProfit 4.2s infinite 1.5s; }
.adzep-page .pc-3 { top: 52%; left: 48%; animation: floatProfit 3.8s infinite 2.8s; }
.adzep-page .pc-4 { top: 82%; left: 52%; animation: floatProfit 3.2s infinite 0.9s; }
.adzep-page .pc-5 { top: 32%; left: 28%; animation: floatProfit 4.5s infinite 2.2s; }
.adzep-page .pc-6 { top: 25%; left: 58%; animation: floatProfit 3.6s infinite 3.5s; }
@keyframes floatMap { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes floatProfit { 0% { transform: translateY(15px) scale(0.6); opacity: 0; } 15% { transform: translateY(0px) scale(1.1); opacity: 1; } 30% { transform: translateY(-10px) scale(1); opacity: 1; } 100% { transform: translateY(-60px) scale(0.9); opacity: 0; } }

@media (max-width: 960px) {
  .adzep-page .map-section { padding: 5rem 0; }
  .adzep-page .map-card { grid-template-columns: 1fr; text-align: center; gap: 3rem; padding: 2.5rem 1.5rem; }
  .adzep-page .map-text .badge-map { margin: 0 auto 1.5rem; }
  .adzep-page .map-text p { font-size: 1.2rem; }
}

/* ── 8. CTA ── */
.adzep-page .cta-container-wrapper { background: var(--bg-white); padding: 8rem 0; width: 100%; position: relative; overflow: hidden; }
.adzep-page .cta-container-wrapper::after { content: ''; position: absolute; bottom: -20%; left: 50%; transform: translateX(-50%); width: 60%; height: 50%; background: var(--brand-green); filter: blur(150px); opacity: 0.08; pointer-events: none; z-index: 0; }
.adzep-page .cta-bottom { background: linear-gradient(135deg, var(--brand-purple-dark) 0%, var(--brand-purple) 100%); padding: 5rem 2rem; text-align: center; color: #fff; border-radius: var(--radius-xl); margin: 0 auto; max-width: 1100px; box-shadow: var(--shadow-float); position: relative; overflow: hidden; z-index: 2; }
.adzep-page .cta-bottom::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.06) 2px, transparent 2px); background-size: 24px 24px; pointer-events: none; }
.adzep-page .cta-bottom-inner { position: relative; z-index: 2; }
.adzep-page .cta-bottom h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 1rem; color: #fff; }
.adzep-page .cta-bottom p { font-size: 1.05rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; max-width: 600px; margin-inline: auto; line-height: 1.7; }

@media (max-width: 960px) { .adzep-page .cta-container-wrapper { padding: 5rem 0; } }

/* ── FOOTER ── */
.adzep-page footer { background: var(--brand-purple-deep); color: #fff; padding: 5rem 0 2rem; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.95rem; }
.adzep-page .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.adzep-page .footer-brand img { height: 100px; object-fit: contain; margin-bottom: 1rem; }
.adzep-page .footer-brand p { color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 360px; margin-bottom: 1rem; }
.adzep-page .footer-title { font-family: 'Quicksand', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 1.5rem; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; }
.adzep-page .footer-links-col { display: flex; flex-direction: column; gap: 0.8rem; }
.adzep-page .footer-links-col a { color: rgba(255,255,255,0.6); transition: all 0.2s; }
.adzep-page .footer-links-col a:hover { color: var(--brand-green-light); transform: translateX(3px); }
.adzep-page .social-icons { display: flex; gap: 0.8rem; margin-top: 1.5rem; }
.adzep-page .social-icons a { width: 36px; height: 36px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; border-radius: 8px; color: rgba(255,255,255,0.8); transition: all 0.2s; font-size: 1.1rem; }
.adzep-page .social-icons a:hover { background: var(--brand-purple); color: #fff; transform: translateY(-3px); }
.adzep-page .footer-bottom { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.adzep-page .footer-bottom a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.adzep-page .footer-bottom a:hover { color: #fff; text-decoration: underline; }

@media (max-width: 960px) { .adzep-page .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .adzep-page .footer-grid { grid-template-columns: 1fr; } .adzep-page .footer-bottom { flex-direction: column; text-align: center; } }

/* ── MODAL ── */
.adzep-page .modal-overlay { position: fixed; inset: 0; background: rgba(15,23,42,0.6); backdrop-filter: blur(4px); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; padding: 1rem; }
.adzep-page .modal-overlay.is-open { opacity: 1; visibility: visible; }
.adzep-page .modal-dialog { background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 480px; transform: translateY(20px) scale(0.98); transition: all 0.4s var(--ease-out); box-shadow: var(--shadow-float); overflow: hidden; }
.adzep-page .modal-overlay.is-open .modal-dialog { transform: translateY(0) scale(1); }
.adzep-page .modal-header { padding: 2rem 2.5rem 1.5rem; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; }
.adzep-page .modal-header h3 { font-size: 1.5rem; font-weight: 800; margin: 0; color: var(--text-main); }
.adzep-page .btn-close { background: var(--bg-page); width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border-color); font-size: 1rem; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.adzep-page .btn-close:hover { background: #e2e8f0; color: var(--text-main); }
.adzep-page .modal-body { padding: 1.5rem 2.5rem 2.5rem; background: var(--bg-white); }
.adzep-page .form-group { margin-bottom: 1.2rem; }
.adzep-page .form-label { display: block; font-size: 0.8rem; font-weight: 700; color: var(--text-muted); margin-bottom: 0.5rem; text-transform: uppercase; }
.adzep-page .form-control { width: 100%; padding: 1rem 1.2rem; border-radius: var(--radius-sm); border: 1px solid var(--border-color); font-family: inherit; font-size: 1rem; transition: all 0.2s; outline: none; background: var(--bg-page); color: var(--text-main); }
.adzep-page .form-control:focus { border-color: var(--brand-purple); background: #fff; box-shadow: 0 0 0 3px rgba(97,45,145,0.1); }
.adzep-page .btn-submit { width: 100%; margin-top: 1rem; padding: 1rem; font-size: 1.05rem; }
.adzep-page .btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; box-shadow: none; }

/* ── WHATSAPP ── */
.floating-whatsapp,
.adzep-page .floating-whatsapp { position: fixed; bottom: 24px; right: 24px; z-index: 1000; }
.floating-whatsapp-btn,
.adzep-page .floating-whatsapp-btn { width: 56px; height: 56px; background-color: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: 0 8px 20px rgba(37,211,102,0.3); transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease; }
.floating-whatsapp-btn i,
.adzep-page .floating-whatsapp-btn i { display: inline-block; animation: floatWpp 2.6s ease-in-out infinite; will-change: transform; transform: translate3d(0,0,0); }
.floating-whatsapp:hover .floating-whatsapp-btn,
.adzep-page .floating-whatsapp:hover .floating-whatsapp-btn { background-color: #1ebe57; transform: scale(1.08); box-shadow: 0 12px 28px rgba(37,211,102,0.38); }
@keyframes floatWpp { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-10px,0); } }
@media (max-width: 960px) { .floating-whatsapp, .adzep-page .floating-whatsapp { bottom: 20px; right: 20px; } .floating-whatsapp-btn, .adzep-page .floating-whatsapp-btn { width: 56px; height: 56px; font-size: 1.8rem; } }
@media (prefers-reduced-motion: reduce) { .floating-whatsapp-btn i, .adzep-page .floating-whatsapp-btn i { animation: none; } .floating-whatsapp-btn, .adzep-page .floating-whatsapp-btn { transition: none; } }
