/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES - GOVENTURE ASSESSORIA
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Brand Colors */
  --color-navy: #1C2431;
  --color-navy-dark: #121821;
  --color-navy-light: #2A3649;
  --color-turquoise: #10B5BA;
  --color-turquoise-rgb: 16, 181, 186;
  --color-purple: #6D35DB;
  --color-purple-rgb: 109, 53, 219;
  --color-white: #FFFFFF;
  --color-gray: #4D5863;
  --color-gray-light: #F5F7FA;
  --color-gray-border: #E2E8F0;
  
  /* Gradientes */
  --grad-primary: linear-gradient(135deg, var(--color-turquoise) 0%, var(--color-purple) 100%);
  --grad-hover: linear-gradient(135deg, var(--color-purple) 0%, var(--color-turquoise) 100%);
  --grad-dark-overlay: linear-gradient(to bottom, rgba(28, 36, 49, 0.4) 0%, rgba(18, 24, 33, 0.95) 100%);
  --grad-glow: radial-gradient(circle, rgba(16, 181, 186, 0.15) 0%, rgba(109, 53, 219, 0.05) 50%, rgba(28, 36, 49, 0) 100%);

  /* Typography */
  --font-main: 'Poppins', system-ui, -apple-system, sans-serif;
  
  /* Layout & Spacing */
  --container-max-width: 1200px;
  --section-padding: 80px 20px;
  --section-padding-mobile: 60px 16px;
  
  /* Misc */
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(28, 36, 49, 0.15);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-white);
  color: var(--color-navy);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
p { font-size: 1rem; color: var(--color-gray); }

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */

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

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-dark {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.section-dark p {
  color: var(--color-gray-light);
}

.section-light {
  background-color: var(--color-gray-light);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.text-gradient {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--border-radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  font-family: var(--font-main);
  gap: 10px;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--color-white);
  box-shadow: 0 4px 18px rgba(16, 181, 186, 0.35);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  background: var(--grad-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(109, 53, 219, 0.45);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-turquoise);
  color: var(--color-turquoise);
}

.btn-secondary:hover {
  background-color: rgba(16, 181, 186, 0.08);
  transform: translateY(-3px);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
}

.btn-outline-white:hover {
  border-color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 0.85rem;
  border-radius: var(--border-radius-sm);
}

.btn-accent {
  background: var(--color-purple);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(109, 53, 219, 0.3);
}

.btn-accent:hover {
  background-color: #5b28c0;
  transform: translateY(-3px);
}

/* ==========================================================================
   NAVIGATION BAR (HEADER)
   ========================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  padding: 20px 0;
}

.header.sticky {
  background-color: rgba(28, 36, 49, 0.95);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-normal);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(10px, 2vw, 30px);
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 5px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-turquoise);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-primary);
  transition: var(--transition-normal);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* Open state for toggle */
.mobile-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: var(--grad-glow);
  z-index: 1;
  pointer-events: none;
}

.hero-bg-glow-left {
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(109, 53, 219, 0.1) 0%, rgba(28, 36, 49, 0) 60%);
  z-index: 1;
  pointer-events: none;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: -45px;
}

.hero-content h1 {
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--color-white);
  line-height: 1.25;
}

.hero-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.hero-trust-indicators {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--color-turquoise);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.3);
  pointer-events: none;
}

.hero-visual-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hero-visual-wrapper:hover img {
  transform: scale(1.05);
}

/* Float card detail */
.hero-floating-card {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: rgba(28, 36, 49, 0.6);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--color-white);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  max-width: 250px;
  animation: float 4s ease-in-out infinite;
}

.hero-floating-card-icon {
  width: 40px;
  height: 40px;
  background: var(--grad-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-floating-card-text h4 {
  font-size: 1rem;
  font-weight: 600;
}

.hero-floating-card-text p {
  font-size: 0.75rem;
  color: var(--color-turquoise);
}

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

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

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

.service-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-primary);
  opacity: 0;
  transition: var(--transition-normal);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(16, 181, 186, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-turquoise);
  transition: var(--transition-normal);
}

.service-icon-box svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-navy);
  transition: var(--transition-normal);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-gray);
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-purple);
  transition: var(--transition-fast);
}

.service-link svg {
  transition: var(--transition-fast);
}

/* Hover effects */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(28, 36, 49, 0.08);
  border-color: rgba(16, 181, 186, 0.25);
}

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

.service-card:hover .service-icon-box {
  background: var(--grad-primary);
  color: var(--color-white);
}

.service-card:hover .service-link {
  color: var(--color-turquoise);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   DESTINATIONS SECTION
   ========================================================================== */

.destinations-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.destination-panel {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-slow);
}

.destination-panel .bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: var(--transition-slow);
  z-index: 1;
}

.destination-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-dark-overlay);
  z-index: 2;
  transition: var(--transition-normal);
}

.destination-panel-content {
  position: relative;
  z-index: 3;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.destination-panel-content h3 {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
}

.destination-panel-content h3 span {
  font-size: 1.5rem;
}

.destination-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.destination-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  opacity: 0.9;
}

.destination-list li svg {
  color: var(--color-turquoise);
  flex-shrink: 0;
}

.destination-panel .btn {
  align-self: flex-start;
  margin-top: 10px;
}

/* Hover Zoom effects */
.destination-panel:hover {
  box-shadow: var(--shadow-lg);
}

.destination-panel:hover .bg-image {
  transform: scale(1.06);
}

.destination-panel:hover::after {
  background: linear-gradient(to bottom, rgba(28, 36, 49, 0.3) 0%, rgba(18, 24, 33, 0.98) 100%);
}

/* ==========================================================================
   HOW IT WORKS (TIMELINE)
   ========================================================================== */

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-gray-border);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-line-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  background: var(--grad-primary);
  transform: translateX(-50%);
  z-index: 2;
  height: 0%;
  transition: height 1s ease-out;
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px;
  margin-bottom: 50px;
  z-index: 3;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item-left {
  left: 0;
  text-align: right;
}

.timeline-item-right {
  left: 50%;
  text-align: left;
}

.timeline-badge {
  position: absolute;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-white);
  border: 4px solid var(--color-gray-border);
  color: var(--color-gray);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  transition: var(--transition-normal);
}

.timeline-item-left .timeline-badge {
  right: -20px;
}

.timeline-item-right .timeline-badge {
  left: -20px;
}

.timeline-panel {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: inline-block;
  text-align: left;
  max-width: 420px;
}

.timeline-panel h3 {
  font-size: 1.25rem;
  color: var(--color-navy);
  margin-bottom: 10px;
}

.timeline-panel p {
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* Active Timeline States */
.timeline-item.active .timeline-badge {
  border-color: var(--color-turquoise);
  background: var(--grad-primary);
  color: var(--color-white);
  box-shadow: 0 0 15px rgba(16, 181, 186, 0.4);
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 181, 186, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(16, 181, 186, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 181, 186, 0); }
}

.timeline-item.active .timeline-panel {
  border-color: var(--color-turquoise);
  box-shadow: var(--shadow-md);
}

.timeline-cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

/* ==========================================================================
   DIFFERENTIALS
   ========================================================================== */

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

.differential-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition-normal);
}

.differential-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 15px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.85;
}

.differential-card h3 {
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.differential-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.differential-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(16, 181, 186, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ==========================================================================
   PRE-ANALYSIS WIZARD FORM
   ========================================================================== */

.form-section {
  position: relative;
  background: var(--color-navy);
  color: var(--color-white);
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(109, 53, 219, 0.08) 0%, rgba(28, 36, 49, 0) 70%);
  pointer-events: none;
}

.wizard-container {
  max-width: 750px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

/* Steps Progress bar */
.wizard-progress {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 40px;
}

.wizard-progress::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.wizard-progress-bar {
  position: absolute;
  top: 15px;
  left: 0;
  height: 3px;
  background: var(--grad-primary);
  width: 0%;
  z-index: 2;
  transition: width var(--transition-normal);
}

.wizard-step-node {
  position: relative;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--color-navy);
  border: 3px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.wizard-step-node.active {
  border-color: var(--color-turquoise);
  color: var(--color-white);
  background-color: var(--color-navy);
  box-shadow: 0 0 10px rgba(16, 181, 186, 0.5);
}

.wizard-step-node.completed {
  border-color: var(--color-purple);
  color: var(--color-white);
  background-color: var(--color-purple);
}

.wizard-step-node-label {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  white-space: nowrap;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-normal);
}

.wizard-step-node.active .wizard-step-node-label {
  color: var(--color-turquoise);
  font-weight: 600;
}

.wizard-step-node.completed .wizard-step-node-label {
  color: var(--color-white);
}

/* Wizard Form Content */
.wizard-form {
  position: relative;
  min-height: 280px;
}

.wizard-step-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.wizard-step-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
}

/* Form controls */
.form-group-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.form-label span {
  color: #ff4a4a;
}

.form-input, .form-select, .form-textarea {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 14px 18px;
  color: var(--color-white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-turquoise);
  background-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 3px rgba(16, 181, 186, 0.25);
}

.form-select option {
  background-color: var(--color-navy);
  color: var(--color-white);
}

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

/* Radio buttons container */
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}

.radio-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}

.radio-option input {
  display: none;
}

.radio-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.radio-check::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grad-primary);
  transform: scale(0);
  transition: var(--transition-fast);
}

.radio-option input:checked + .radio-check {
  border-color: var(--color-turquoise);
}

.radio-option input:checked + .radio-check::after {
  transform: scale(1);
}

/* Consent checkboxes */
.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
}

.consent-checkbox input {
  display: none;
}

.consent-check {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.consent-check svg {
  color: var(--color-white);
  width: 12px;
  height: 12px;
  transform: scale(0);
  transition: var(--transition-fast);
}

.consent-checkbox input:checked + .consent-check {
  border-color: var(--color-turquoise);
  background: var(--grad-primary);
}

.consent-checkbox input:checked + .consent-check svg {
  transform: scale(1);
}

.consent-checkbox a {
  color: var(--color-turquoise);
  text-decoration: underline;
}

/* Validation error text */
.form-error-msg {
  color: #ff6b6b;
  font-size: 0.75rem;
  margin-top: 4px;
  display: none;
}

.form-group.has-error .form-input, 
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.15);
}

.form-group.has-error .form-error-msg {
  display: block;
}

/* Wizard navigation actions */
.wizard-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
}

/* Success layout */
.wizard-success-panel {
  text-align: center;
  padding: 40px 20px;
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.wizard-success-icon {
  width: 80px;
  height: 80px;
  background: rgba(16, 181, 186, 0.1);
  color: var(--color-turquoise);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  border: 2px solid var(--color-turquoise);
}

.wizard-success-icon svg {
  width: 40px;
  height: 40px;
}

.wizard-success-panel h3 {
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 15px;
}

.wizard-success-panel p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 30px auto;
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 50px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.about-content h2 {
  font-size: 2.25rem;
  color: var(--color-navy);
}

.about-content p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Values List */
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.value-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--border-radius-md);
  transition: var(--transition-fast);
}

.value-card-icon {
  color: var(--color-turquoise);
  flex-shrink: 0;
  margin-top: 2px;
}

.value-card-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 3px;
}

.value-card-text p {
  font-size: 0.8rem;
  color: var(--color-gray);
  line-height: 1.4;
}

.value-card:hover {
  border-color: var(--color-turquoise);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.about-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-frame {
  position: relative;
  width: 100%;
  max-width: 450px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--color-white);
}

.about-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--grad-primary);
  color: var(--color-white);
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  text-align: center;
  z-index: 5;
}

.about-badge .num {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge .txt {
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
}

/* ==========================================================================
   TESTIMONIALS (CAROUSEL)
   ========================================================================== */

.testimonials-slider-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.testimonials-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  min-width: 100%;
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.testimonial-inner {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.testimonial-inner::before {
  content: '"';
  position: absolute;
  top: 10px;
  right: 40px;
  font-size: 6rem;
  line-height: 1;
  font-family: serif;
  color: rgba(16, 181, 186, 0.12);
}

.testimonial-stars {
  display: flex;
  color: #FFB800;
  gap: 4px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-content {
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-navy);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-navy);
}

.testimonial-info p {
  font-size: 0.8rem;
  color: var(--color-turquoise);
  font-weight: 500;
}

.testimonial-demo-tag {
  align-self: flex-start;
  background-color: rgba(77, 88, 99, 0.1);
  color: var(--color-gray);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Slider navigation */
.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.testimonials-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-gray-border);
  background-color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--color-navy);
}

.testimonials-arrow:hover {
  background-color: var(--color-turquoise);
  color: var(--color-white);
  border-color: var(--color-turquoise);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-gray-border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonials-dot.active {
  background-color: var(--color-turquoise);
  width: 24px;
  border-radius: 4px;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-border);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 20px;
  user-select: none;
}

.faq-header h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-navy);
  transition: var(--transition-fast);
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--color-gray-light);
  color: var(--color-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  transition: var(--transition-normal);
}

/* Open Accordion Panel */
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal) ease-out;
  padding: 0 28px;
}

.faq-body-content {
  padding-bottom: 24px;
  font-size: 0.95rem;
  color: var(--color-gray);
  line-height: 1.6;
}

.faq-item.active {
  border-color: var(--color-turquoise);
  box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-header h3 {
  color: var(--color-turquoise);
}

.faq-item.active .faq-icon {
  background-color: var(--color-turquoise);
  color: var(--color-white);
  transform: rotate(180deg);
}

/* ==========================================================================
   FINAL CALL TO ACTION (CTA)
   ========================================================================== */

.final-cta {
  padding: 100px 20px;
  background: var(--grad-primary);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 60%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.final-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
}

.final-cta-content p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
}

.final-cta-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background-color: var(--color-navy-dark);
  color: var(--color-white);
  padding: 80px 20px 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.footer-about-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-col h3 {
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  color: var(--color-white);
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  font-size: 1.2rem;
  line-height: 0;
  color: var(--color-turquoise);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-turquoise);
  padding-left: 5px;
}

.footer-contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item svg {
  color: var(--color-turquoise);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a:hover {
  color: var(--color-turquoise);
}

.footer-contact-item .label {
  display: block;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 2px;
}

/* Privacy warning legal disclaimer */
.footer-disclaimer {
  grid-column: 1 / -1;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius-md);
  padding: 20px 25px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
  display: flex;
  gap: 25px;
}

.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

.footer-legal-links a:hover {
  color: var(--color-turquoise);
}

/* ==========================================================================
   FLOATING WIDGETS
   ========================================================================== */

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
  z-index: 999;
  transition: var(--transition-normal);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #20ba59;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 30px;
  right: 30px;
  max-width: 650px;
  margin: 0 auto;
  background-color: rgba(28, 36, 49, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 25px 30px;
  box-shadow: var(--shadow-lg);
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  transition: bottom var(--transition-slow);
}

.cookie-banner.show {
  bottom: 30px;
}

.cookie-content {
  flex-grow: 1;
}

.cookie-content h4 {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 8px;
  font-weight: 600;
}

.cookie-content p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.cookie-content a {
  color: var(--color-turquoise);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: var(--grad-primary);
  border: none;
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: var(--border-radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cookie-btn-accept:hover {
  background: var(--grad-hover);
  transform: translateY(-2px);
}

.cookie-btn-decline {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: var(--border-radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cookie-btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */

@media (max-width: 1100px) {
  h1 { font-size: 2.5rem; }
  .hero-content h1 { font-size: 2.85rem; }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --section-padding: 60px 16px;
  }
  
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.85rem; }
  
  .hero {
    padding-top: 110px;
    min-height: auto;
    padding-bottom: 60px;
  }
  
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-content {
    text-align: center;
    align-items: center;
  }
  
  .hero-content p {
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-trust-indicators {
    max-width: 500px;
    margin: 25px auto 0 auto;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-visual-wrapper img {
    height: 380px;
  }
  
  .hero-floating-card {
    left: 20px;
    bottom: -15px;
  }
  
  .destinations-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .destination-panel {
    height: 380px;
  }
  
  .timeline-line {
    left: 20px;
  }
  
  .timeline-item {
    width: 100%;
    padding-left: 55px;
    padding-right: 0;
    text-align: left;
    margin-bottom: 40px;
  }
  
  .timeline-item-left {
    left: 0;
  }
  
  .timeline-item-right {
    left: 0;
  }
  
  .timeline-item-left .timeline-badge,
  .timeline-item-right .timeline-badge {
    left: 0px;
    right: auto;
  }
  
  .timeline-panel {
    max-width: 100%;
  }
  
  .differentials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-visual {
    order: -1;
  }
  
  .about-img-frame img {
    height: 380px;
  }
  
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    left: 16px;
    right: 16px;
    padding: 20px;
  }
  
  .cookie-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 768px) {
  /* Navigation mobile behavior */
  .mobile-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px 40px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.25);
    transition: var(--transition-slow);
    z-index: 1000;
    gap: 25px;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.1rem;
    color: var(--color-white);
    width: 100%;
  }
  
  .header-cta {
    display: none; /* Hide top CTA on small screens, rely on menu or floating analyze */
  }
  
  .wizard-container {
    padding: 30px 20px;
  }
  
  .form-group-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .differentials-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-inner {
    padding: 30px 20px;
  }
  
  .testimonial-inner::before {
    font-size: 4rem;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 2.15rem;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .hero-trust-indicators {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .wizard-progress {
    margin-bottom: 50px;
  }
  
  .wizard-step-node-label {
    display: none; /* Hide labels on mobile to save space, rely on node numbers */
  }
  
  .wizard-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .wizard-actions .btn {
    width: 100%;
  }
  
  .wizard-actions .btn:nth-child(2) {
    order: -1; /* Primary button on top */
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-legal-links {
    justify-content: center;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* Page specific layouts (e.g. Terms / Privacy) */
.legal-page {
  padding-top: 140px;
  background-color: var(--color-gray-light);
  min-height: 80vh;
}

.legal-container {
  max-width: 800px;
  margin: 0 auto 60px auto;
  background-color: var(--color-white);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-gray-border);
}

.legal-container h1 {
  font-size: 2.25rem;
  color: var(--color-navy);
  margin-bottom: 20px;
}

.legal-container h2 {
  font-size: 1.4rem;
  color: var(--color-navy);
  margin-top: 35px;
  margin-bottom: 15px;
}

.legal-container p, .legal-container ul {
  font-size: 0.95rem;
  color: var(--color-gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

.legal-container ul {
  padding-left: 20px;
}

.legal-container li {
  margin-bottom: 8px;
}

.legal-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-purple);
  font-weight: 600;
  margin-bottom: 30px;
}

.legal-back-btn:hover {
  color: var(--color-turquoise);
  transform: translateX(-4px);
}

@media (max-width: 768px) {
  .legal-page {
    padding-top: 100px;
  }
  .legal-container {
    padding: 30px 20px;
  }
}

/* ==========================================================================
   ÁREA DO CLIENTE & AUTENTICAÇÃO - ESTILOS ADICIONAIS
   ========================================================================== */

.auth-page {
  background-color: var(--color-navy-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-wrapper {
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-card {
  background-color: var(--color-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 460px;
  padding: 45px;
  color: var(--color-white);
}

.auth-card.broad {
  max-width: 760px;
}

.auth-logo {
  text-align: center;
  margin-bottom: 25px;
}

.auth-logo img {
  height: 48px;
  width: auto;
  display: inline-block;
}

.auth-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.auth-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  margin-bottom: 30px;
  text-wrap: balance;
}

.auth-alert, .auth-success {
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 22px;
  line-height: 1.5;
}

.auth-alert {
  background-color: rgba(255, 74, 90, 0.1);
  color: #ff5e6d;
  border: 1px solid rgba(255, 74, 90, 0.2);
}

.auth-success {
  background-color: rgba(16, 181, 186, 0.1);
  color: #2cd2d7;
  border: 1px solid rgba(16, 181, 186, 0.2);
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrapper .form-input {
  padding-right: 45px;
}

.btn-toggle-password {
  position: absolute;
  right: 14px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: var(--transition-fast);
}

.btn-toggle-password:hover {
  color: var(--color-turquoise);
}

.password-strength-container {
  margin-top: 10px;
}

.password-strength-bar {
  background-color: rgba(255, 255, 255, 0.1);
  height: 5px;
  border-radius: 3px;
  overflow: hidden;
}

#strengthProgress {
  height: 100%;
  width: 0;
  border-radius: 3px;
  transition: width var(--transition-normal), background-color var(--transition-normal);
}

#strengthProgress.weak { background-color: #ff4a5a; }
#strengthProgress.medium { background-color: #dcb42c; }
#strengthProgress.strong { background-color: #10B5BA; }

#strengthText {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
  display: block;
}

.password-rules {
  margin: 15px 0 25px 0;
  padding-left: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.password-rules li {
  margin-bottom: 5px;
  transition: var(--transition-fast);
}

.password-rules li.met {
  color: var(--color-turquoise);
  opacity: 0.7;
}

.auth-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 0.85rem;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}

.remember-me input {
  display: none;
}

.remember-check {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.02);
  transition: var(--transition-fast);
  color: transparent;
}

.remember-me input:checked + .remember-check {
  background-color: var(--color-turquoise);
  border-color: var(--color-turquoise);
  color: var(--color-white);
}

.auth-footer {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.auth-footer .highlight {
  color: var(--color-turquoise);
  font-weight: 600;
}

.btn-block {
  width: 100%;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  font-size: 0.85rem;
  line-height: 1.5;
}

.consent-checkbox input {
  display: none;
}

.consent-check {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.02);
  transition: var(--transition-fast);
  color: transparent;
  flex-shrink: 0;
  margin-top: 2px;
}

.consent-checkbox input:checked + .consent-check {
  background-color: var(--color-turquoise);
  border-color: var(--color-turquoise);
  color: var(--color-white);
}

.consent-desc {
  color: rgba(255, 255, 255, 0.85);
}

/* ==========================================================================
   PAINEL DO CLIENTE & CORES DO DASHBOARD
   ========================================================================== */

.dashboard-page {
  background-color: var(--color-navy-dark);
  color: var(--color-white);
  min-height: 100vh;
}

.dash-header {
  background-color: var(--color-navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 99;
}

.dash-header-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dash-logo img {
  height: 38px;
}

.dash-user-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-greeting {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.dash-layout {
  display: flex;
  min-height: calc(100vh - 69px);
  position: relative;
}

.dash-sidebar {
  width: 250px;
  background-color: var(--color-navy);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 0;
  flex-shrink: 0;
}

.dash-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dash-nav-item {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 25px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 3px solid transparent;
  transition: var(--transition-fast);
  width: 100%;
}

.dash-nav-item:hover, .dash-nav-item.active {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.04);
  border-left-color: var(--color-turquoise);
}

.dash-main-content {
  flex-grow: 1;
  padding: 40px 25px;
}

.container-dash {
  max-width: 900px;
  margin: 0 auto;
}

.dash-card {
  background-color: var(--color-navy);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
  padding: 35px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.dash-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.main-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  gap: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--color-turquoise);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.spinner.large {
  width: 48px;
  height: 48px;
  border-width: 4px;
}

.card-alert {
  border-color: rgba(255, 74, 90, 0.2);
  text-align: center;
  padding: 40px 35px;
}

.card-alert-icon {
  color: #ff4a5a;
  margin-bottom: 20px;
}

.card-alert-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.welcome-disclaimer {
  background-color: rgba(16, 181, 186, 0.04);
  border: 1px solid rgba(16, 181, 186, 0.15);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 25px 0;
  line-height: 1.6;
}

.welcome-disclaimer svg {
  color: var(--color-turquoise);
  flex-shrink: 0;
  margin-top: 2px;
}

.triage-header {
  margin-bottom: 35px;
}

.triage-step-indicator {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-turquoise);
  letter-spacing: 1px;
}

.triage-progress-bar {
  background-color: rgba(255, 255, 255, 0.1);
  height: 6px;
  border-radius: 3px;
  margin-top: 10px;
  overflow: hidden;
}

#triageProgressBarFill {
  height: 100%;
  background: var(--grad-primary);
  transition: width var(--transition-normal);
}

.triage-step {
  display: none;
}

.triage-step.active {
  display: block;
}

.triage-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 25px;
  line-height: 1.5;
}

.triage-help {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: -18px;
  margin-bottom: 25px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px;
}

.triage-checkbox-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  transition: var(--transition-fast);
  user-select: none;
}

.triage-checkbox-card:hover {
  border-color: rgba(16, 181, 186, 0.4);
  background-color: rgba(16, 181, 186, 0.02);
}

.triage-checkbox-card input {
  accent-color: var(--color-turquoise);
  width: 16px;
  height: 16px;
}

.tag-input-container {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 15px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.country-tag {
  background-color: rgba(16, 181, 186, 0.1);
  border: 1px solid rgba(16, 181, 186, 0.2);
  color: var(--color-turquoise);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tag-remove {
  background: transparent;
  border: none;
  color: var(--color-turquoise);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.tag-input-row {
  display: flex;
  gap: 10px;
}

.tag-input-field {
  margin-bottom: 0 !important;
}

.radio-group-dash {
  display: flex;
  gap: 20px;
  margin: 15px 0;
}

.radio-group-dash .radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}

.radio-group-dash input {
  display: none;
}

.radio-group-dash .radio-check {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.radio-group-dash input:checked + .radio-check {
  border-color: var(--color-turquoise);
}

.radio-group-dash .radio-check::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--color-turquoise);
  border-radius: 50%;
  transform: scale(0);
  transition: transform var(--transition-fast);
}

.radio-group-dash input:checked + .radio-check::after {
  transform: scale(1);
}

.duration-fields {
  display: flex;
  gap: 15px;
}

.wizard-actions-dash {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  margin-top: 35px;
}

.autosave-indicator {
  text-align: right;
  font-size: 0.75rem;
  color: var(--color-turquoise);
  opacity: 0;
  margin-top: 15px;
  transition: opacity 0.5s ease;
}

.autosave-indicator.show {
  opacity: 0.8;
}

/* ==========================================================================
   TELA DE REVISÃO E STATUS
   ========================================================================== */

.review-sections-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 25px;
}

.review-section-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px;
}

.review-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.review-section-header h4 {
  font-size: 1rem;
  color: var(--color-turquoise);
}

.btn-edit-review {
  background: transparent;
  border: none;
  color: var(--color-purple);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.85rem;
}

.btn-edit-review:hover {
  color: var(--color-turquoise);
}

.review-section-body p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 6px;
}

.review-section-body strong {
  color: rgba(255, 255, 255, 0.6);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
}

.card-status {
  border-left: 4px solid var(--color-turquoise);
}

.status-indicator-block {
  margin: 15px 0;
}

.status-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid transparent;
}

.status-badge.status-pending {
  background-color: rgba(219, 109, 53, 0.1);
  color: #db8a35;
  border-color: rgba(219, 109, 53, 0.2);
}

.status-badge.status-analysis {
  background-color: rgba(109, 53, 219, 0.1);
  color: #a48df6;
  border-color: rgba(109, 53, 219, 0.2);
}

.status-badge.status-action {
  background-color: rgba(255, 74, 90, 0.1);
  color: #ff5e6d;
  border-color: rgba(255, 74, 90, 0.2);
}

.status-badge.status-completed {
  background-color: rgba(16, 181, 186, 0.1);
  color: #2cd2d7;
  border-color: rgba(16, 181, 186, 0.2);
}

.status-badge.status-active, .status-badge.status-success {
  background-color: rgba(16, 181, 186, 0.1);
  color: #10B5BA;
  border-color: rgba(16, 181, 186, 0.2);
}

.status-description {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.card-travel-summary .summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.card-travel-summary .summary-item:last-child {
  border-bottom: none;
}

.card-travel-summary .label {
  color: rgba(255, 255, 255, 0.5);
}

.card-travel-summary .val {
  font-weight: 500;
  color: var(--color-white);
}

.document-upload-placeholder {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255, 255, 255, 0.5);
}

.placeholder-icon {
  color: rgba(255, 255, 255, 0.15);
  margin-bottom: 20px;
}

.lgpd-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.lgpd-action-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}

.lgpd-action-card h5 {
  font-size: 0.95rem;
  color: var(--color-white);
}

.lgpd-action-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.btn-delete-danger {
  border-color: #ff4a5a;
  color: #ff4a5a;
}

.btn-delete-danger:hover {
  background-color: rgba(255, 74, 90, 0.08);
}

.sec-subsection h4 {
  font-size: 1.1rem;
  color: var(--color-white);
  margin-bottom: 8px;
}

.sec-subsection p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.sec-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 30px 0;
}

/* ==========================================================================
   PAINEL ADMINISTRATIVO (TABELAS E FICHA CLIENTE)
   ========================================================================== */

.admin-body {
  background-color: var(--color-navy-dark);
}

.admin-section-header {
  margin-bottom: 30px;
}

.admin-section-header h2 {
  font-size: 1.8rem;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.admin-section-header p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.card-table {
  padding: 0;
  overflow: hidden;
}

.table-responsive {
  width: 100%;
  overflow-x: hidden; /* Totalmente sem barra de rolagem horizontal */
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.8rem;
  table-layout: fixed; /* Força as larguras estritas das colunas */
}

/* Distribuição estrita das larguras das colunas para encaixar na tela */
.admin-table th:nth-child(1), .admin-table td:nth-child(1) { width: 20%; word-break: break-word; } /* Cliente */
.admin-table th:nth-child(2), .admin-table td:nth-child(2) { width: 14%; word-break: break-word; } /* Profissão / Renda */
.admin-table th:nth-child(3), .admin-table td:nth-child(3) { width: 10%; word-break: break-word; } /* Objetivo */
.admin-table th:nth-child(4), .admin-table td:nth-child(4) { width: 11%; } /* Etapa */
.admin-table th:nth-child(5), .admin-table td:nth-child(5) { width: 12%; } /* Status */
.admin-table th:nth-child(6), .admin-table td:nth-child(6) { width: 12%; } /* Ação Cliente */
.admin-table th:nth-child(7), .admin-table td:nth-child(7) { width: 10%; } /* Última At. */
.admin-table th:nth-child(8), .admin-table td:nth-child(8) { width: 11%; text-align: center; } /* Botão */

.admin-table th {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  padding: 10px 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.admin-table td {
  padding: 10px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
  color: rgba(255, 255, 255, 0.85);
}

.admin-table .status-badge {
  padding: 4px 8px;
  font-size: 0.68rem;
  letter-spacing: 0.2px;
}

.client-cell-info {
  display: flex;
  flex-direction: column;
}

.client-cell-info strong {
  color: var(--color-white);
  font-size: 0.9rem;
}

.client-cell-info span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
}

.client-detail-pane {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.detail-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 15px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
}

.detail-block {
  padding: 25px;
  margin-bottom: 20px;
}

.detail-block h4 {
  font-size: 1rem;
  color: var(--color-turquoise);
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}

.info-group-detail p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
}

.info-group-detail strong {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.detail-list-ul {
  padding-left: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.detail-list-ul li {
  margin-bottom: 4px;
}

.detail-quote {
  background-color: rgba(255, 255, 255, 0.02);
  border-left: 3px solid var(--color-turquoise);
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  font-style: italic;
}

.alert-block-admin {
  border-left: 4px solid #db6d35;
}

.alerts-admin-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alert-item {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
}

.alert-item.danger-item {
  background-color: rgba(255, 74, 90, 0.1);
  color: #ff5e6d;
  border: 1px solid rgba(255, 74, 90, 0.15);
}

.alert-item.warning-item {
  background-color: rgba(219, 109, 53, 0.1);
  color: #db8a35;
  border: 1px solid rgba(219, 109, 53, 0.15);
}

.alert-item.info-item {
  background-color: rgba(16, 181, 186, 0.08);
  color: #2cd2d7;
  border: 1px solid rgba(16, 181, 186, 0.15);
}

.alert-item.success-item {
  background-color: rgba(16, 181, 186, 0.08);
  color: #10B5BA;
  border: 1px solid rgba(16, 181, 186, 0.15);
}

.internal-notes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 250px;
  overflow-y: auto;
}

.internal-note-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 12px;
}

.note-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.note-content-p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* ==========================================================================
   RESPONSIVIDADE ADICIONAL
   ========================================================================== */

@media (max-width: 992px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dash-layout {
    flex-direction: column;
  }
  .dash-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 0;
  }
  .dash-nav {
    flex-direction: row;
    justify-content: space-around;
    overflow-x: auto;
    padding: 0 10px;
  }
  .dash-nav-item {
    padding: 10px 15px;
    border-left: none;
    border-bottom: 2px solid transparent;
    font-size: 0.8rem;
    white-space: nowrap;
    width: auto;
    justify-content: center;
  }
  .dash-nav-item:hover, .dash-nav-item.active {
    border-left-color: transparent;
    border-bottom-color: var(--color-turquoise);
  }
  .dash-main-content {
    padding: 25px 15px;
  }
  .auth-card {
    padding: 30px 20px;
  }
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
  .form-group-grid {
    grid-template-columns: 1fr;
  }
}

/* Ajustes finos de responsividade para o menu superior do site */
@media (min-width: 769px) and (max-width: 1300px) {
  .nav-menu {
    gap: clamp(6px, 1vw, 15px);
  }
  .nav-link {
    font-size: clamp(0.75rem, 0.95vw, 0.85rem);
  }
  .logo img {
    height: 38px;
  }
  .btn-sm {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* Correção para evitar deformação de ícones SVG dentro de botões */
.btn svg, .btn-block svg {
  flex-shrink: 0;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  min-height: 20px;
}

/* ==========================================================================
   ACOMPANHAMENTO DO PROCESSO - TIMELINE E CARDS
   ========================================================================== */

/* Progress Bar */
.progress-bar-wrapper {
  background-color: rgba(255, 255, 255, 0.08);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  margin: 15px 0;
  position: relative;
}

.progress-bar-fill {
  background: var(--grad-primary);
  height: 100%;
  border-radius: 4px;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  width: 0%;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.progress-info .progress-pct {
  color: var(--color-turquoise);
  font-weight: 700;
}

/* Action Banner Cards */
.action-banner-card {
  padding: 20px;
  border-radius: var(--border-radius-md);
  margin-bottom: 25px;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-normal);
}

.action-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.action-banner-card.pending {
  background: rgba(220, 180, 44, 0.06);
  border-color: rgba(220, 180, 44, 0.2);
  color: var(--color-white);
}

.action-banner-card.pending::before {
  background-color: #dcb42c;
}

.action-banner-card.success {
  background: rgba(16, 181, 186, 0.06);
  border-color: rgba(16, 181, 186, 0.2);
  color: var(--color-white);
}

.action-banner-card.success::before {
  background-color: var(--color-turquoise);
}

.action-banner-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.05rem;
}

.action-banner-header svg {
  flex-shrink: 0;
}

.action-banner-card.pending .action-banner-header {
  color: #e5c147;
}

.action-banner-card.success .action-banner-header {
  color: var(--color-turquoise);
}

.action-banner-body {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.action-banner-footer {
  margin-top: 5px;
}

/* Vertical Timeline */
.timeline-vertical {
  position: relative;
  margin: 30px 0 30px 15px;
  padding: 0;
  list-style: none;
}

.timeline-vertical::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.timeline-node {
  position: relative;
  margin-bottom: 25px;
  padding-left: 35px;
  transition: var(--transition-normal);
}

.timeline-node:last-child {
  margin-bottom: 0;
}

.timeline-badge-circle {
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background-color: var(--color-bg-card);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition-normal);
}

.timeline-node.completed .timeline-badge-circle {
  border-color: #26b37a;
  background-color: rgba(38, 179, 122, 0.1);
  color: #26b37a;
}

.timeline-node.current .timeline-badge-circle {
  border-color: var(--color-turquoise);
  background-color: rgba(16, 181, 186, 0.15);
  color: var(--color-turquoise);
  box-shadow: 0 0 0 4px rgba(16, 181, 186, 0.15);
  animation: pulse-node 2s infinite;
}

@keyframes pulse-node {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 181, 186, 0.4);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(16, 181, 186, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 181, 186, 0);
  }
}

.timeline-node.future .timeline-badge-circle {
  border-color: rgba(255, 255, 255, 0.15);
  background-color: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.2);
}

.timeline-node.not-applicable {
  opacity: 0.4;
}

.timeline-node.not-applicable .timeline-badge-circle {
  border-color: rgba(255, 255, 255, 0.1);
  background-color: transparent;
  color: rgba(255, 255, 255, 0.15);
  text-decoration: line-through;
}

.timeline-node-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.timeline-node-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-normal);
}

.timeline-node.completed .timeline-node-title {
  color: #26b37a;
}

.timeline-node.current .timeline-node-title {
  color: var(--color-turquoise);
}

.timeline-node.future .timeline-node-title {
  color: rgba(255, 255, 255, 0.35);
}

.timeline-node-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  display: none;
}

.timeline-node.completed .timeline-node-desc,
.timeline-node.current .timeline-node-desc {
  display: block;
}

.timeline-node.future .timeline-node-desc {
  display: none;
}

/* Histórico de Processo */
.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
}

.history-card {
  padding: 15px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.history-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.history-card-header .history-date {
  font-weight: 600;
}

.history-card-body {
  color: rgba(255, 255, 255, 0.85);
}

.history-card-stage-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: rgba(16, 181, 186, 0.1);
  color: var(--color-turquoise);
}

/* Form de Feedback da Entrevista */
.interview-result-card {
  padding: 25px;
  background: rgba(16, 181, 186, 0.04);
  border: 1px dashed rgba(16, 181, 186, 0.25);
  border-radius: var(--border-radius-md);
  margin-top: 25px;
  text-align: center;
}

.interview-result-card h4 {
  color: var(--color-turquoise);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.interview-result-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}

@media (min-width: 576px) {
  .interview-result-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Admin Updates */
.admin-process-log-container {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 5px;
}

.admin-history-item {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-history-item:last-child {
  border-bottom: none;
}

.admin-history-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 5px;
}

.admin-history-message {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.admin-history-note {
  font-size: 0.8rem;
  background-color: rgba(220, 180, 44, 0.05);
  border-left: 2px solid #dcb42c;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.notif-wrapper {
  background-color: rgba(16, 181, 186, 0.05);
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-turquoise);
}
.admin-body .container-dash {
  max-width: 1400px;
  width: 95%;
}
