/* ============================================
   MAINFRAME IMOBILIÁRIA - STYLES (FIXED)
   ============================================ */

/* CSS Variables */
:root {
  --primary: #FF6B00;
  --primary-light: #FF8C33;
  --primary-dark: #CC5500;
  --accent: #FF9500;
  
  --bg-white: #FFFFFF;
  --bg-light: #FAFAFA;
  --bg-medium: #F4F4F4;
  
  --text-dark: #1A1A1A;
  --text-body: #444444;
  --text-muted: #777777;
  
  --white: #FFFFFF;
  --black: #000000;
  
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 5px;
}

/* Selection */
::selection {
  background: var(--primary);
  color: var(--white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-muted);
  max-width: 65ch;
}

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

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

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
  position: relative;
  z-index: 1;
}

.section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

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

.text-center { text-align: center; }

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition-medium);
  background: rgba(255, 255, 255, 0.95);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  color: white;
}

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

.nav-link {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-medium);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 30px;
}

.nav-cta {
  background: var(--gradient-primary) !important;
  color: var(--white) !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: var(--radius-md) !important;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
/* Navbar Dropdown Styles */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  list-style: none;
  z-index: 1001;
  border: 1px solid rgba(0,0,0,0.05);
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.dropdown-menu li a:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 2rem;
}

/* Mobile Dropdown Fix */
@media (max-width: 1024px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.4s ease;
  }
  
  .nav-dropdown.active .dropdown-menu {
    max-height: 500px;
    padding: 0.5rem 0;
    background: var(--bg-light);
    margin-top: 0.5rem;
    border-radius: var(--radius-sm);
  }
}


/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition-medium);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    transition: var(--transition-medium);
    box-shadow: -5px 0 30px rgba(0,0,0,0.1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.25rem;
    color: var(--text-dark);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-medium);
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active,
.btn-primary:focus {
  background: var(--gradient-primary) !important;
  color: var(--white) !important;
  outline: none !important;
  box-shadow: var(--shadow-sm) !important;
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}

.btn-secondary:hover {
  background: var(--text-dark);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  border: 1px solid rgba(255, 107, 0, 0.3);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  background: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 100%);
}

.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.1;
  filter: blur(60px);
}

.hero-shape-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -100px;
}

.hero-shape-2 {
  width: 300px;
  height: 300px;
  bottom: 0;
  left: -50px;
}

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

/* FIX: Removido opacity:0 inicial para garantir visibilidade */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
}

/* ============================================
   HERO ANIMATION UPGRADE
   ============================================ */

/* Animated Gradient Text */
.animate-gradient-text {
    background: linear-gradient(90deg, var(--text-dark) 0%, var(--primary) 50%, var(--text-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShine 3s linear infinite;
}

@keyframes gradientShine {
    to {
        background-position: 200% center;
    }
}

/* Floating Glass Shapes */
.glass-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    animation: floatShape 8s ease-in-out infinite;
}

.glass-shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.glass-shape-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 5%;
    animation-delay: -2s;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.glass-shape-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 5%;
    animation-delay: -4s;
    transform: rotate(45deg);
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(20deg);
        opacity: 0;
    }
}
/* Animação de Entrada do Conteúdo */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delays para o efeito cascata */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }


/* Hero Parallax Container */
.hero-parallax-wrapper {
    perspective: 1000px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Floating Icon Animation */
.float-icon {
    animation: floatIcon 4s ease-in-out infinite;
}

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

/* ============================================
   HERO ANIMATION UPGRADE
   ============================================ */

/* Animated Gradient Text */
.animate-gradient-text {
    background: linear-gradient(90deg, var(--text-dark) 0%, var(--primary) 50%, var(--text-dark) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShine 3s linear infinite;
}

@keyframes gradientShine {
    to {
        background-position: 200% center;
    }
}

/* Floating Glass Shapes */
.glass-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    animation: floatShape 8s ease-in-out infinite;
}

.glass-shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.glass-shape-2 {
    width: 150px;
    height: 150px;
    bottom: 15%;
    right: 5%;
    animation-delay: -2s;
    border-radius: 50%;
    transform: rotate(-15deg);
}

.glass-shape-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 5%;
    animation-delay: -4s;
    transform: rotate(45deg);
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(20deg);
        opacity: 0;
    }
}

/* Hero Parallax Container */
.hero-parallax-wrapper {
    perspective: 1000px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Floating Icon Animation */
.float-icon {
    animation: floatIcon 4s ease-in-out infinite;
}

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

/* Cards */
.card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-medium);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 107, 0, 0.2);
}

.card h3, .card h4 {
  color: var(--text-dark);
}

.card p {
  color: var(--text-muted);
}

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

.feature-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-medium);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
  transition: var(--transition-medium);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  color: var(--white);
  transform: scale(1.1);
}

.feature-card h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.section-desc {
  margin: 0 auto;
}

/* Highlights */
.highlights {
  background: var(--bg-light);
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.highlight-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition-medium);
}

.highlight-item:last-child {
  border-right: none;
}

.highlight-item:hover {
  background: rgba(255, 107, 0, 0.03);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.highlight-item:hover .highlight-icon {
  background: var(--gradient-primary);
  color: var(--white);
}

.highlight-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.highlight-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

@media (max-width: 1024px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .highlight-item:nth-child(2) {
    border-right: none;
  }
  
  .highlight-item:nth-child(3),
  .highlight-item:nth-child(4) {
    border-top: 1px solid rgba(0,0,0,0.05);
  }
}

@media (max-width: 640px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .highlight-item {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
}

/* Commission Section */
.commission-highlight {
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  padding: 7rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.commission-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.commission-label {
  font-size: 1.5rem;
  color: rgba(255,255,255,0.9);
  margin-top: 1rem;
  text-align: center;
}

/* Property Cards */
.property-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-medium);
}

.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.property-image {
  position: relative;
  height: 240px;
  background: var(--bg-medium);
  overflow: hidden;
}

.property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.property-content {
  padding: 1.5rem;
}

.property-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.property-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.property-details {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.property-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.property-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 1rem;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
}

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

.method-step {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition-medium);
}

.method-step:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.method-number {
  position: absolute;
  top: -1rem;
  left: 2rem;
  background: var(--gradient-primary);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
}

.method-step h4 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.method-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
}

/* Tools */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.tool-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-medium);
  cursor: pointer;
}

.tool-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.tool-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.tool-card h4 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.tool-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.tool-arrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-light);
  border: 2px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23777777' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 20px;
}

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

/* Estilos de erro */
.form-input.form-error,
.form-select.form-error,
.form-textarea.form-error {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.form-input.form-error:focus,
.form-select.form-error:focus,
.form-textarea.form-error:focus {
  border-color: #ef4444;
  outline: none;
}

/* Animações removidas - botão sem mudanças visuais */

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

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

.cta-section .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

.cta-section .btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}

/* Footer */
.footer {
  background: var(--text-dark);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.7);
}

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

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-col h5 {
  font-size: 1rem;
  color: white;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

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

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}

/* Page Header */
.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF9F5 0%, #FFFFFF 100%);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition-medium);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

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

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.service-card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.service-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
  padding: 1rem;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-medium);
}

.modal.active .modal-content {
  transform: scale(1);
}

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

.modal-close {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.modal-close:hover {
  background: var(--primary);
  color: white;
}

.modal-body {
  padding: 2rem;
}

/* Loader - FIXED */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  /* Esconde o loader após 3 segundos automaticamente como fallback */
  animation: hideLoader 0s ease-in 3s forwards;
  animation-delay: 3s;
}

/* Classe adicionada pelo JS para esconder */
.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Fallback CSS puro: esconde o loader após animação */
@keyframes hideLoader {
  to {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(255, 107, 0, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-medium);
  z-index: 100;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
}

/* Animations - VISIBILITY FIX */
/* Removido opacity: 0 para garantir que o conteúdo é sempre visível */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.stagger-item {
  opacity: 1;
  transform: translateY(0);
}

/* Tooltips */
.tooltip {
  position: relative;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
  bottom: calc(100% + 10px);
}

/* ============================================
   CHATBOT WIDGET STYLES
   ============================================ */

/* Botão Flutuante Principal */
.chatbot-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    border: none;
}

.chatbot-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.5);
}

.chatbot-trigger svg {
    width: 28px;
    height: 28px;
    fill: white;
    transition: transform 0.3s ease;
}

.chatbot-trigger.active svg {
    transform: rotate(45deg);
}

/* Janela do Chat */
.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    max-width: calc(100% - 60px);
    height: 550px;
    max-height: calc(100% - 120px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.15);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.chatbot-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Cabeçalho do Chat */
.chatbot-header {
    background: var(--gradient-primary);
    padding: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    position: relative !important; /* Essencial para o botão absolute */
    overflow: visible !important;   /* Garante que nothing cuts it off */
}


/* Estilo explícito do botão Reiniciar */
.chatbot-reset {
    position: absolute;
    top: 50%;
    right: 15px; /* Distância da direita */
    transform: translateY(-50%);
    
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    border-radius: 50%;
    
    display: flex !important; /* Força a exibição */
    align-items: center;
    justify-content: center;
    
    cursor: pointer;
    transition: background 0.2s;
    color: white;
    padding: 0;
    z-index: 10; /* Fica por cima */
}

.chatbot-reset:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-reset svg {
    width: 16px;
    height: 16px;
    stroke: white;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
}

.chatbot-header-info {
    flex: 1; /* Ocupa o espaço restante */
    margin-right: 40px; /* Espaço para o botão não sobrepor texto */
}

.chatbot-header-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chatbot-header-info p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Área de Mensagens */
.chatbot-body {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Balões de Mensagem */
.chat-message {
    max-width: 85%;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.5;
    animation: fadeInPop 0.3s ease;
}

.message-bot {
    background: #f0f0f0;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 5px;
    align-self: flex-start;
}

.message-user {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 5px;
    align-self: flex-end;
    margin-left: auto;
}

/* Área de Opções Rápidas */
.chat-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.chat-option-btn {
    background: white;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.6rem;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    text-align: left;
    font-family: inherit;
}

.chat-option-btn:hover {
    background: var(--primary);
    color: white;
}

/* Animação */
@keyframes fadeInPop {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================
   CHECKLISTS TOOL STYLES
   ============================================ */

/* Navegação por Tabs */
.checklist-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.tab-btn:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    border-color: var(--primary);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

/* Container das Listas */
.checklist-container {
    max-width: 900px;
    margin: 0 auto;
}

.checklist-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.checklist-content.active {
    display: block;
}

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

/* Cabeçalho da Lista */
.checklist-header {
    text-align: center;
    margin-bottom: 2rem;
}

.checklist-header h3 {
    margin-bottom: 0.5rem;
}

.checklist-header p {
    font-size: 0.95rem;
}

/* Grupo de Itens (Checklist) */
.checklist-group {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.group-header {
    padding: 1rem 1.5rem;
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.group-header:hover {
    background: rgba(255, 107, 0, 0.05);
}

.group-header h4 {
    font-size: 1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.group-header h4 svg {
    color: var(--primary);
}

.group-toggle-icon {
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.group-header.active .group-toggle-icon {
    transform: rotate(180deg);
}

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

.group-items.active {
    padding: 1rem 1.5rem;
    max-height: 2000px; /* Suficiente para expandir */
}

/* Itens da Checklist */
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
    margin-bottom: 0.5rem;
}

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

.check-item:hover {
    background: var(--bg-light);
}

/* Checkbox Customizado */
.custom-checkbox {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.check-item:hover .checkmark {
    border-color: var(--primary);
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: var(--primary);
    border-color: var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.check-item.checked .item-text {
    text-decoration: line-through;
    color: var(--text-muted);
}

.item-text {
    flex-grow: 1;
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Barra de Progresso */
.progress-container {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.progress-bar-bg {
    width: 100%;
    height: 10px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s ease;
}

/* Botões de Ação da Ferramenta */
.tool-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

/* Responsivo */
@media (max-width: 768px) {
    .checklist-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-btn {
        text-align: center;
    }
    
    .group-header h4 {
        font-size: 0.9rem;
    }
}


/* ============================================
   CAMPAIGNS PAGE STYLES
   ============================================ */

/* Hero Especial para Campanhas - Laranja Escuro e Forte */
.campaign-hero {
    /* Fundo mantido branco para contraste máximo */
    background: #FFFFFF; 
    position: relative;
    overflow: hidden;
}

/* Animação de Gradiente Laranja Escuro */
.campaign-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    /* 
       Cores usadas:
       - rgba(204, 85, 0, 0.25) -> Laranja Escuro (Primary Dark) semi-transparente
       - rgba(255, 107, 0, 0.2)  -> Laranja Normal
       - transparent             -> Desvanecer para o fundo
    */
    background: radial-gradient(circle, rgba(204, 85, 0, 0.25) 0%, rgba(255, 107, 0, 0.2) 30%, transparent 60%);
    animation: rotate 20s linear infinite;
}

/* Segunda camada de brilho sutil (Opcional - adiciona profundidade) */
.campaign-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* Laranja escuro no canto superior direito */
    background: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.15) 0%, transparent 40%);
    pointer-events: none;
    animation: floatGlow 15s ease-in-out infinite alternate;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes floatGlow {
    from { transform: scale(1); opacity: 0.5; }
    to { transform: scale(1.1); opacity: 0.8; }
}

.campaign-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
}

/* Grid de Campanhas */
.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

/* Card de Campanha */
.campaign-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.campaign-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

/* Cabeçalho do Card */
.card-head {
    padding: 2rem 2rem 1.5rem;
    position: relative;
}

.card-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

/* Ícone Animado */
.campaign-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255,107,0,0.1) 0%, rgba(255,107,0,0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s;
}

.campaign-card:hover .campaign-icon-wrapper {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.campaign-icon-wrapper svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: all 0.3s;
}

.campaign-card:hover .campaign-icon-wrapper svg {
    color: white;
    transform: rotate(-5deg);
}

/* Tag de Destaque */
.campaign-tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

/* Corpo do Card */
.card-body {
    padding: 1.5rem 2rem;
    flex-grow: 1;
}

.benefits-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-body);
}

.benefits-list li svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Footer do Card */
.card-footer {
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-top: 1px solid rgba(0,0,0,0.03);
}

/* Responsive */
@media (max-width: 768px) {
    .campaigns-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SOCIAL SECTION (Estilo Light)
   ============================================ */

.social-section {
    background: var(--bg-light);
    padding: 4rem 0;
    text-align: center;
}

.social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

.social-icon-btn {
    width: 56px;
    height: 56px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.social-icon-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
    border-color: transparent;
}

.social-icon-btn svg {
    width: 22px;
    height: 22px;
}

/* Manter tooltips a funcionar */
.tooltip {
    position: relative;
}

.tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 120%; /* Aparece acima do ícone */
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    pointer-events: none;
}

.tooltip:hover::after {
    opacity: 1;
    visibility: visible;
    bottom: 130%;
}

/* ============================================
   CREDIT INTERMEDIATION PAGE STYLES
   ============================================ */

/* 1. ANIMAÇÃO GLOBAL FIXA (Background Único) */
/* Posicionamento fixo para cobrir todas as secções sem cortes */
.global-animation-bg {
    position: fixed; /* Fixo na janela de visualização */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; /* Altura total da janela */
    z-index: -1; /* Atrás de todo o conteúdo */
    pointer-events: none;
    overflow: hidden;
    background: #FFFFFF; /* Base branca */
}

/* Faixas Diagonais Suaves */
.stripe-bg {
    position: absolute;
    width: 200%;
    height: 200px; /* Altura ajustada para suavidade */
    /* Gradiente mais suave com transparência */
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 0, 0) 10%,          /* Início invisível */
        rgba(255, 107, 0, 0.06) 30%,        /* Início fade in */
        rgba(255, 107, 0, 0.12) 50%,        /* Pico de cor suave */
        rgba(255, 107, 0, 0.06) 70%,        /* Fade out */
        transparent 90%, 
        transparent 100%
    );
    transform: rotate(-25deg);
    animation: stripeSmoothMove 25s linear infinite; /* Duração maior = mais suave */
    will-change: transform; /* Otimização de performance */
}

/* Configuração de cada faixa para criar profundidade */
.stripe-bg:nth-child(1) {
    top: 0%;
    left: -50%;
    height: 100px;
    opacity: 0.8;
    animation-delay: 0s;
}

.stripe-bg:nth-child(2) {
    top: 15%;
    left: -80%;
    height: 150px;
    opacity: 0.6;
    animation-delay: -5s;
    animation-duration: 30s;
}

.stripe-bg:nth-child(3) {
    top: 40%;
    left: -60%;
    height: 80px;
    opacity: 0.5;
    animation-delay: -10s;
}

.stripe-bg:nth-child(4) {
    top: 60%;
    left: -40%;
    height: 250px;
    opacity: 0.7;
    animation-delay: -15s;
    animation-duration: 35s;
}

.stripe-bg:nth-child(5) {
    top: 85%;
    left: -70%;
    height: 120px;
    opacity: 0.6;
    animation-delay: -20s;
}

/* Animação chave: Movimento Linear */
@keyframes stripeSmoothMove {
    0% {
        transform: translateX(-25%) rotate(-25deg);
    }
    100% {
        transform: translateX(25%) rotate(-25deg);
    }
}

/* 2. HERO SECTION - Configuração */
.credit-hero {
    background: transparent; /* Transparente para ver o fundo global */
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
    padding-top: 12rem;
    padding-bottom: 6rem;
}

/* Conteúdo do Hero */
.credit-hero .container {
    position: relative;
    z-index: 1;
}

.credit-hero h1 {
    color: var(--text-dark);
}

.credit-hero h1 .text-gradient {
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
}

.credit-hero p {
    color: var(--text-muted);
}

.credit-hero .section-badge {
    background: rgba(255, 107, 0, 0.12);
    border-color: rgba(255, 107, 0, 0.25);
    color: var(--primary);
    font-weight: 700;
}

/* Grid de Vantagens */
.credit-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.credit-feature {
    background: rgba(255, 255, 255, 0.92); /* Leve transparência */
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 107, 0, 0.08);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.credit-feature:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 0, 0.12);
    background: rgba(255, 255, 255, 1);
}

.credit-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.credit-feature h4 { color: var(--text-dark); margin-bottom: 0.5rem; }
.credit-feature p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* Timeline */
.process-timeline { position: relative; padding: 2rem 0; }
.process-timeline::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 2px; height: 100%; background: rgba(0,0,0,0.05); }
.timeline-item { display: flex; justify-content: flex-end; padding-right: 50%; position: relative; margin-bottom: 3rem; opacity: 0; transform: translateX(-30px); transition: all 0.6s ease; }
.timeline-item.visible { opacity: 1; transform: translateX(0); }
.timeline-item:nth-child(even) { justify-content: flex-start; padding-right: 0; padding-left: 50%; transform: translateX(30px); }
.timeline-item:nth-child(even).visible { transform: translateX(0); }

.timeline-content { background: rgba(255, 255, 255, 0.95); padding: 2rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 90%; max-width: 500px; position: relative; border: 1px solid rgba(0,0,0,0.05); backdrop-filter: blur(5px); }
.timeline-content::after { content: ''; position: absolute; top: 20px; right: -8px; width: 16px; height: 16px; background: var(--white); border-right: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); transform: rotate(-45deg); }
.timeline-item:nth-child(even) .timeline-content::after { right: auto; left: -8px; border: none; border-left: 1px solid rgba(0,0,0,0.05); border-top: 1px solid rgba(0,0,0,0.05); }

.timeline-number { position: absolute; left: 50%; transform: translateX(-50%); top: 20px; width: 40px; height: 40px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; z-index: 1; box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3); }
.timeline-content h4 { margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.9rem; margin: 0; }

/* Mobile Timeline */
@media (max-width: 768px) {
    .process-timeline::before { left: 20px; }
    .timeline-item, .timeline-item:nth-child(even) { padding-left: 60px; padding-right: 0; justify-content: flex-start; }
    .timeline-number { left: 20px; }
    .timeline-content::after, .timeline-item:nth-child(even) .timeline-content::after { display: none; }
}

/* Info Cards */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.info-card { background: rgba(255, 255, 255, 0.95); border-radius: var(--radius-lg); padding: 2rem; border-top: 4px solid var(--primary); backdrop-filter: blur(5px); }
.info-card h3 { margin-bottom: 1.5rem; }
.info-card ul { list-style: none; padding: 0; margin: 0; }
.info-card ul li { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.95rem; color: var(--text-body); }
.info-card ul li svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }

/* Stats Bar */
.stats-bar { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; background: var(--gradient-primary); border-radius: var(--radius-lg); padding: 3rem; margin: 4rem 0; color: white; text-align: center; }
.stat-item h3 { font-size: 3rem; margin-bottom: 0.5rem; color: white; }
.stat-item p { font-size: 0.9rem; color: rgba(255,255,255,0.8); margin: 0; }

/* Garantir que secções sem background fiquem transparentes para ver a animação */
.credit-page .section {
    background: transparent;
}

/* ============================================
   CREDIT PAGE - ESPAÇAMENTO REDUZIDO
   ============================================ */

/* Reduzir padding vertical das secções */
.credit-page .section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Ajustar margens dos títulos para紧凑ar mais */
.credit-page .section-header {
    margin-bottom: 2rem;
}

/* Reduzir margem da Stats Bar */
.credit-page .stats-bar {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
}

/* Ajustar Info Section para nao ficar tão alta */
.credit-page .info-cards {
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Ajustar Timeline */
.credit-page .process-timeline {
    padding-top: 0;
    padding-bottom: 0;
}

.credit-page .timeline-item {
    margin-bottom: 2rem;
}

/* Reduzir espaçamento no Hero */
.credit-hero {
    padding-top: 10rem; /* Menos espaço em cima */
    padding-bottom: 3rem; /* Menos espaço em baixo */
}

.credit-page .credit-features {
    margin-top: 2rem;
}


/* ============================================
   EMPRESA & EQUIPA - REDESIGN (CSS FINAL)
   ============================================ */

/* 1. Parallax Background */
.cmp-parallax-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    background: #FFFFFF;
}

.cmp-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    transition: transform 0.2s linear;
}

.cmp-orb-1 { width: 40vw; height: 40vw; top: -10%; left: -10%; background: rgba(255, 107, 0, 0.12); }
.cmp-orb-2 { width: 60vw; height: 60vw; bottom: -20%; right: -20%; background: rgba(255, 149, 0, 0.08); }
.cmp-orb-3 { width: 30vw; height: 30vw; top: 30%; left: 40%; background: rgba(255, 200, 0, 0.06); }

/* 2. Content Wrapper */
.cmp-content-wrap { position: relative; z-index: 1; }

/* 3. Animations */
.cmp-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.cmp-animate.is-visible { opacity: 1; transform: translateY(0); }

/* Delay classes */
.cmp-delay-1 { transition-delay: 0.1s; }
.cmp-delay-2 { transition-delay: 0.2s; }
.cmp-delay-3 { transition-delay: 0.3s; }
.cmp-delay-4 { transition-delay: 0.4s; }
.cmp-delay-5 { transition-delay: 0.5s; }

/* Header Parallax Effect */
.cmp-header-title {
    transition: transform 0.15s linear;
    will-change: transform;
}

/* ============================================
   EMPRESA - LAYOUT NOVO
   ============================================ */

/* Hero Fullscreen */
.cmp-hero-full {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

/* Imagem Assimétrica */
.cmp-hero-img-container {
    position: absolute;
    top: 0; right: 0;
    width: 55%; height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    background: linear-gradient(135deg, #FF6B00 0%, #FF9500 100%);
    z-index: 0;
}

.cmp-hero-img-pattern {
    width: 100%; height: 100%;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2.5px);
    background-size: 30px 30px;
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { background-position: 0 0; }
    100% { background-position: 1000px 500px; }
}

/* Conteúdo do Hero */
.cmp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* Seção de Valores com Cards 3D */
.cmp-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    perspective: 1000px;
}

.cmp-value-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transform-style: preserve-3d;
}

.cmp-value-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.15);
    border-color: var(--primary);
}

.cmp-value-icon {
    width: 80px; height: 80px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.4s ease;
}

.cmp-value-card:hover .cmp-value-icon {
    transform: scale(1.2) rotateY(180deg);
    background: var(--gradient-primary);
    color: white;
}

.cmp-value-card h3 { margin-bottom: 1rem; color: var(--text-dark); }
.cmp-value-card p { font-size: 0.95rem; color: var(--text-muted); }

/* Story Section (Alternado) */
.cmp-story-section {
    position: relative;
}
.cmp-story-block {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-left: 8px solid var(--primary);
}

/* ============================================
   EQUIPA - LAYOUT NOVO
   ============================================ */

/* Header com grid de fundo */
.cmp-team-header {
    position: relative;
    overflow: hidden;
}
.cmp-grid-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 107, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 0;
}

/* Cards da Equipa */
.cmp-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.cmp-team-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Borda animada */
.cmp-team-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 0%;
    background: var(--gradient-primary);
    transition: height 0.4s ease;
    z-index: 0;
    opacity: 0.1;
}
.cmp-team-card:hover::after { height: 100%; }

/* Avatar Flutuante */
.cmp-team-avatar {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--bg-medium);
    margin: 0 auto 1.5rem;
    display: flex; align-items: center; justify-content: center;
    border: 4px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}
.cmp-team-card:hover .cmp-team-avatar {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.2);
    border-color: var(--primary);
}

.cmp-team-role { 
    color: var(--primary); 
    font-weight: 700; 
    font-size: 0.85rem; 
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    display: block;
    position: relative; z-index: 1;
}
.cmp-team-card h4 { margin-bottom: 0.5rem; position: relative; z-index: 1; }
.cmp-team-desc { font-size: 0.9rem; color: var(--text-muted); position: relative; z-index: 1; transition: color 0.3s; }
.cmp-team-card:hover .cmp-team-desc { color: var(--text-body); }

/* Barra de Valores Animada */
.cmp-values-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 3rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin-top: 4rem;
}

.cmp-value-item {
    text-align: center;
    flex: 1;
    min-width: 150px;
}
.cmp-value-item h2 {
    font-size: 2.5rem;
    background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}


/* ============================================
   PORTFOLIO & FAQ - ESTILOS ÚNICOS (PREFIXO)
   ============================================ */

/* 1. Parallax Background (Comum) */
.prt-parallax-bg, .faq-parallax-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    background: #FFFFFF;
    overflow: hidden;
}

.prt-orb, .faq-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    transition: transform 0.15s linear;
}

.prt-orb-1 { width: 40vw; height: 40vw; top: -10%; left: -10%; background: rgba(255, 107, 0, 0.15); }
.prt-orb-2 { width: 50vw; height: 50vw; bottom: -20%; right: -10%; background: rgba(255, 149, 0, 0.1); }

.faq-orb-1 { width: 35vw; height: 35vw; top: 20%; right: -10%; background: rgba(255, 107, 0, 0.12); }
.faq-orb-2 { width: 45vw; height: 45vw; bottom: 10%; left: -20%; background: rgba(255, 200, 0, 0.08); }

/* Content Wrapper */
.prt-content, .faq-content { position: relative; z-index: 1; }

/* Animações de Entrada */
.prt-animate, .faq-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.prt-animate.is-visible, .faq-animate.is-visible { opacity: 1; transform: translateY(0); }
.prt-delay-1, .faq-delay-1 { transition-delay: 0.1s; }
.prt-delay-2, .faq-delay-2 { transition-delay: 0.2s; }
.prt-delay-3, .faq-delay-3 { transition-delay: 0.3s; }

/* ============================================
   PORTFOLIO - REDESIGN COMPLETO (CSS)
   ============================================ */

/* 1. Parallax Background */
.prt-parallax-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    background: #FFFFFF;
    overflow: hidden;
}

.prt-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    transition: transform 0.15s linear;
}

.prt-orb-1 { width: 40vw; height: 40vw; top: -10%; left: -10%; background: rgba(255, 107, 0, 0.15); }
.prt-orb-2 { width: 50vw; height: 50vw; bottom: -20%; right: -10%; background: rgba(255, 149, 0, 0.1); }

/* Content Wrapper */
.prt-content { position: relative; z-index: 1; }

/* Animações de Entrada */
.prt-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.prt-animate.is-visible { opacity: 1; transform: translateY(0); }
.prt-delay-1 { transition-delay: 0.1s; }
.prt-delay-2 { transition-delay: 0.2s; }
.prt-delay-3 { transition-delay: 0.3s; }

/* 2. Filtros Refinados */
.prt-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.prt-filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
    font-family: inherit;
    backdrop-filter: blur(5px);
}

.prt-filter-btn:hover, .prt-filter-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
    transform: translateY(-2px);
}

/* 3. Grid de Imóveis */
.prt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 2rem;
}

/* 4. Card de Imóvel (Mais Detalhes) */
.prt-card {
    background: rgba(255,255,255,0.95);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    /* Efeito 3D */
    transform-style: preserve-3d;
    perspective: 1000px;
}

.prt-card:hover {
    transform: translateY(-15px) rotateX(2deg);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.prt-card-img {
    height: 260px;
    background: var(--bg-medium);
    position: relative;
    overflow: hidden;
}

.prt-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.prt-card:hover .prt-card-img img {
    transform: scale(1.1);
}

.prt-card-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

/* Info Rápida sobre a imagem */
.prt-card-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.prt-card:hover .prt-card-overlay { opacity: 1; transform: translateY(0); }

.prt-overlay-info {
    display: flex; gap: 1rem;
}
.prt-overlay-info span {
    color: white;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.prt-card-content {
    padding: 1.5rem;
}

.prt-card-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.prt-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.prt-card-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Info detalhada no rodapé do card */
.prt-card-features {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.prt-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
    flex: 1;
}
.prt-feature-item span:first-child {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}
.prt-feature-item span:last-child {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 5. Modal (Popup) Detalhado */
.prt-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    overflow-y: auto;
}

.prt-modal.active { opacity: 1; visibility: visible; }

.prt-modal-box {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 1100px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(50px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    margin: auto;
}

.prt-modal.active .prt-modal-box {
    transform: scale(1) translateY(0);
}

.prt-modal-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 40px; height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.prt-modal-close:hover { background: var(--primary); color: white; transform: rotate(90deg); }

.prt-modal-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    min-height: 600px;
}

/* Coluna da Esquerda: Galeria */
.prt-modal-gallery {
    background: #f5f5f5;
    position: relative;
    display: flex;
    flex-direction: column;
}

.prt-main-image {
    height: 400px;
    width: 100%;
    overflow: hidden;
}
.prt-main-image img { width: 100%; height: 100%; object-fit: cover; }

.prt-thumb-images {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem;
    background: white;
}
.prt-thumb {
    width: 80px; height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s;
    border: 2px solid transparent;
}
.prt-thumb:hover, .prt-thumb.active { opacity: 1; border-color: var(--primary); }
.prt-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Coluna da Direita: Detalhes */
.prt-modal-details {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    max-height: 90vh;
}

.prt-modal-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.prt-modal-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.prt-modal-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.prt-modal-price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.prt-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.prt-spec-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.prt-spec-item svg { color: var(--primary); width: 20px; height: 20px; flex-shrink: 0; }
.prt-spec-item div { display: flex; flex-direction: column; }
.prt-spec-item span:first-child { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.prt-spec-item span:last-child { font-weight: 600; color: var(--text-dark); }

.prt-description {
    margin-bottom: 2rem;
    color: var(--text-body);
    line-height: 1.7;
}

.prt-modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.prt-btn-action {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.prt-btn-primary {
    background: var(--gradient-primary);
    color: white;
}
.prt-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2); }
.prt-btn-secondary {
    background: transparent;
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
}
.prt-btn-secondary:hover { background: var(--text-dark); color: white; }

/* Responsive */
@media (max-width: 768px) {
    .prt-modal-grid { grid-template-columns: 1fr; }
    .prt-modal-gallery { order: 1; }
    .prt-modal-details { order: 2; padding: 2rem; max-height: none; }
    .prt-grid { grid-template-columns: 1fr; }
}
/* ============================================
   PORTFOLIO - ATUALIZAÇÃO FILTROS & GRID 4 COLUNAS
   ============================================ */

/* 1. Area de Filtros Reforçada */
.prt-filters-container {
    background: rgba(255,255,255,0.95);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.prt-filters-top {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.prt-filters-bottom {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Estilo Dropdown (Select) Customizado */
.prt-filter-select {
    position: relative;
    min-width: 200px;
}

.prt-filter-select select {
    width: 100%;
    padding: 0.9rem 2.5rem 0.9rem 1.25rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: white;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 50px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

.prt-filter-select select:hover {
    border-color: var(--primary);
}

.prt-filter-select select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* Seta customizada */
.prt-filter-select::after {
    content: '';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--text-muted);
    pointer-events: none;
    transition: transform 0.3s;
}

/* 2. Grid 4 Colunas */
@media (min-width: 1200px) {
    .prt-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .prt-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .prt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .prt-grid {
        grid-template-columns: 1fr;
    }
    
    .prt-filter-select {
        width: 100%;
    }
}
/* ============================================
   PORTFOLIO - BACKGROUND ANIMADO & LAYOUT
   ============================================ */

/* 1. Background Animado (Stripes) */
.prt-animated-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: #FFFFFF;
}

.prt-stripe {
    position: absolute;
    width: 200%;
    height: 200px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 0, 0) 10%,
        rgba(255, 107, 0, 0.05) 30%,
        rgba(236, 112, 25, 0.869) 50%,
        rgba(255, 107, 0, 0.05) 70%,
        transparent 90%, 
        transparent 100%
    );
    transform: rotate(-25deg);
    animation: prtStripeMove 30s linear infinite;
    will-change: transform;
}

.prt-stripe:nth-child(1) { top: 0%; left: -50%; height: 150px; opacity: 0.7; animation-delay: 0s; }
.prt-stripe:nth-child(2) { top: 20%; left: -80%; height: 250px; opacity: 0.5; animation-delay: -7s; animation-duration: 35s; }
.prt-stripe:nth-child(3) { top: 50%; left: -60%; height: 180px; opacity: 0.6; animation-delay: -15s; }
.prt-stripe:nth-child(4) { top: 70%; left: -30%; height: 300px; opacity: 0.4; animation-delay: -20s; animation-duration: 40s; }

@keyframes prtStripeMove {
    0% { transform: translateX(-25%) rotate(-25deg); }
    100% { transform: translateX(25%) rotate(-25deg); }
}

/* 2. Header Transparente Específico */
.prt-page-header {
    background: transparent !important;
}

/* 3. Area de Filtros Reforçada */
.prt-filters-container {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.prt-filters-top {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.prt-filters-bottom {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Estilo Dropdown (Select) Customizado */
.prt-filter-select {
    position: relative;
    min-width: 200px;
}

.prt-filter-select select {
    width: 100%;
    padding: 0.9rem 2.5rem 0.9rem 1.25rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    background-color: white;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: 50px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: all 0.3s ease;
}

.prt-filter-select select:hover {
    border-color: var(--primary);
}

.prt-filter-select select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* Seta customizada */
.prt-filter-select::after {
    content: '';
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--text-muted);
    pointer-events: none;
    transition: transform 0.3s;
}

/* 4. Grid 4 Colunas */
@media (min-width: 1200px) {
    .prt-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .prt-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) and (max-width: 991px) {
    .prt-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .prt-grid { grid-template-columns: 1fr; }
    .prt-filter-select { width: 100%; }
}

/* 5. Card Styles */
.prt-card {
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
}
.prt-card:hover {
    transform: translateY(-10px) rotateX(2deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

/* 6. Modal Styles */
.prt-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    overflow-y: auto;
}

.prt-modal.active { opacity: 1; visibility: visible; }

.prt-modal-box {
    background: white;
    border-radius: var(--radius-lg);
    max-width: 1100px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(50px);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    margin: auto;
}

.prt-modal.active .prt-modal-box { transform: scale(1) translateY(0); }

.prt-modal-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    width: 40px; height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.prt-modal-close:hover { background: var(--primary); color: white; transform: rotate(90deg); }

.prt-modal-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    min-height: 600px;
}

.prt-modal-gallery { background: #f5f5f5; position: relative; display: flex; flex-direction: column; }
.prt-main-image { height: 400px; width: 100%; overflow: hidden; }
.prt-main-image img { width: 100%; height: 100%; object-fit: cover; }
.prt-thumb-images { display: flex; gap: 0.5rem; padding: 0.5rem; background: white; }
.prt-thumb { width: 80px; height: 60px; border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; opacity: 0.6; transition: all 0.3s; border: 2px solid transparent; }
.prt-thumb:hover, .prt-thumb.active { opacity: 1; border-color: var(--primary); }
.prt-thumb img { width: 100%; height: 100%; object-fit: cover; }

.prt-modal-details { padding: 2.5rem; display: flex; flex-direction: column; overflow-y: auto; max-height: 90vh; }
.prt-modal-badge { display: inline-block; background: rgba(255, 107, 0, 0.1); color: var(--primary); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 700; margin-bottom: 1rem; }
.prt-modal-title { font-size: 1.8rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.prt-modal-location { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1rem; }
.prt-modal-price { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--primary); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.prt-specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2rem; }
.prt-spec-item { display: flex; align-items: center; gap: 0.75rem; }
.prt-spec-item svg { color: var(--primary); width: 20px; height: 20px; flex-shrink: 0; }
.prt-spec-item div { display: flex; flex-direction: column; }
.prt-spec-item span:first-child { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.prt-spec-item span:last-child { font-weight: 600; color: var(--text-dark); }
.prt-description { margin-bottom: 2rem; color: var(--text-body); line-height: 1.7; }
.prt-modal-actions { display: flex; gap: 1rem; margin-top: auto; padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.05); }
.prt-btn-action { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 1rem; border-radius: var(--radius-md); font-weight: 600; text-decoration: none; transition: all 0.3s; }
.prt-btn-primary { background: var(--gradient-primary); color: white; }
.prt-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2); }
.prt-btn-secondary { background: transparent; border: 2px solid var(--text-dark); color: var(--text-dark); }
.prt-btn-secondary:hover { background: var(--text-dark); color: white; }

@media (max-width: 768px) {
    .prt-modal-grid { grid-template-columns: 1fr; }
    .prt-modal-gallery { order: 1; }
    .prt-modal-details { order: 2; padding: 2rem; max-height: none; }
}


/* ============================================
   FAQ - ESTILOS FINAIS (COM HEADER FIX)
   ============================================ */

/* 1. Background Animado */
.faq-animated-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: #FFFFFF;
}

.faq-stripe {
    position: absolute;
    width: 200%;
    height: 200px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 0, 0) 10%,
        rgba(255, 107, 0, 0.05) 30%,
        rgba(255, 106, 0, 0.828) 50%,
        rgba(255, 107, 0, 0.05) 70%,
        transparent 90%, 
        transparent 100%
    );
    transform: rotate(-25deg);
    animation: faqStripeMove 30s linear infinite;
    will-change: transform;
}

.faq-stripe:nth-child(1) { top: 0%; left: -50%; height: 150px; opacity: 0.7; animation-delay: 0s; }
.faq-stripe:nth-child(2) { top: 20%; left: -80%; height: 250px; opacity: 0.5; animation-delay: -7s; animation-duration: 35s; }
.faq-stripe:nth-child(3) { top: 50%; left: -60%; height: 180px; opacity: 0.6; animation-delay: -15s; }
.faq-stripe:nth-child(4) { top: 70%; left: -30%; height: 300px; opacity: 0.4; animation-delay: -20s; animation-duration: 40s; }

@keyframes faqStripeMove {
    0% { transform: translateX(-25%) rotate(-25deg); }
    100% { transform: translateX(25%) rotate(-25deg); }
}

/* 2. Header Específico da Página FAQ (Fundo Transparente) */
.faq-page-header {
    background: transparent !important;
}

/* 3. Wrapper dos Tópicos (Garante Centragem) */
.faq-tabs-wrapper {
    text-align: center;
    margin-bottom: 3rem;
}

/* 4. Container dos Tópicos (Tabs) */
.faq-tabs {
    display: inline-flex; /* Permite que o wrapper o centre */
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.95);
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-tab-btn:hover, .faq-tab-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(255, 107, 0, 0.05);
}

/* 5. Acordeão (Perguntas) */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question { color: var(--primary); }

.faq-icon {
    width: 24px; height: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item.active .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 2rem 2rem;
    color: var(--text-body);
    line-height: 1.8;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 1.5rem;
}

.faq-item.active .faq-answer { max-height: 500px; }

/* 6. Animações de Entrada */
.faq-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.faq-animate.is-visible { opacity: 1; transform: translateY(0); }
.faq-delay-1 { transition-delay: 0.1s; }
.faq-delay-2 { transition-delay: 0.2s; }



/* ============================================
   CALCULATOR - FIX & FLIP PRO STYLES (FINAL)
   ============================================ */

/* 1. Reset & Base Variables */
:root {
  --primary: #FF6B00;
  --primary-light: #FF8C33;
  --primary-dark: #CC5500;
  --accent: #FF9500;
  --bg-white: #FFFFFF;
  --bg-light: #FAFAFA;
  --bg-medium: #F4F4F4;
  --text-dark: #1A1A1A;
  --text-body: #444444;
  --text-muted: #777777;
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 2. Background Animado (Stripes) */
.calc-parallax-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    background: #FFFFFF;
}

.calc-stripe {
    position: absolute;
    width: 200%;
    height: 200px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(40, 167, 69, 0) 10%,
        rgba(40, 167, 69, 0.04) 30%,
        rgba(230, 138, 18, 0.932) 50%,
        rgba(40, 167, 69, 0.04) 70%,
        transparent 90%, 
        transparent 100%
    );
    transform: rotate(-25deg);
    animation: calcStripeMove 40s linear infinite;
    will-change: transform;
}

.calc-stripe:nth-child(1) { top: 0%; left: -50%; height: 150px; opacity: 0.6; animation-delay: 0s; }
.calc-stripe:nth-child(2) { top: 30%; left: -80%; height: 250px; opacity: 0.4; animation-delay: -10s; animation-duration: 50s; }
.calc-stripe:nth-child(3) { top: 60%; left: -40%; height: 300px; opacity: 0.3; animation-delay: -20s; }

@keyframes calcStripeMove {
    0% { transform: translateX(-25%) rotate(-25deg); }
    100% { transform: translateX(25%) rotate(-25deg); }
}

.calc-page-header { background: transparent !important; }

/* 3. Layout Principal (Sidebar + Main) */
.calc-wrapper {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 1200px) {
    .calc-wrapper { grid-template-columns: 1fr; }
}

/* 4. Sidebar (Inputs) */
.calc-sidebar {
    background: rgba(255,255,255,0.98);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0,0,0,0.05);
    max-height: 90vh;
    overflow-y: auto;
}

/* Scrollbar customizada para sidebar */
.calc-sidebar::-webkit-scrollbar { width: 6px; }
.calc-sidebar::-webkit-scrollbar-track { background: transparent; }
.calc-sidebar::-webkit-scrollbar-thumb { background: #eee; border-radius: 3px; }
.calc-sidebar::-webkit-scrollbar-thumb:hover { background: #ccc; }

.calc-section-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid rgba(0,0,0,0.05);
    padding-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.calc-section-title svg { color: var(--primary); flex-shrink: 0; }

.calc-input-group {
    margin-bottom: 0.75rem;
}

.calc-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem; /* Reduzido */
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.calc-input {
    width: 100%;
    padding: 0.55rem 0.85rem; /* Reduzido */
    font-size: 0.85rem; /* Reduzido */
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-sm);
    background: #FCFCFC;
    transition: all 0.2s;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
}

.calc-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.1);
}

.calc-input::placeholder { color: #ccc; font-weight: 400; }

.calc-divider {
    height: 1px;
    background: rgba(0,0,0,0.04);
    margin: 1.25rem 0;
}

/* 5. Área de Resultados (Main) */
.calc-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Cards de Resultado (Grid) */
.calc-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); /* Ajustado */
    gap: 1rem;
}

.calc-metric-card {
    background: rgba(255,255,255,0.98);
    border-radius: var(--radius-md);
    padding: 1.25rem; /* Reduzido */
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.calc-metric-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--bg-medium);
    transition: background 0.3s;
}

.calc-metric-card.profit::before { background: #28a745; }
.calc-metric-card.loss::before { background: #dc3545; }
.calc-metric-card.neutral::before { background: var(--primary); }

.calc-metric-label {
    font-size: 0.7rem; /* Reduzido */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
}

.calc-metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.45rem; /* Reduzido */
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.calc-metric-card.profit .calc-metric-value { color: #28a745; }
.calc-metric-card.loss .calc-metric-value { color: #dc3545; }

/* 6. Caixas de Análise */
.calc-analysis-box {
    background: rgba(255,255,255,0.98);
    border-radius: var(--radius-lg);
    padding: 1.75rem; /* Reduzido */
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.calc-analysis-box h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Tabela Detalhes */
.calc-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}

.calc-table th, .calc-table td {
    padding: 0.6rem 0; /* Reduzido */
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 0.8rem; /* Reduzido */
}

.calc-table th { color: var(--text-muted); font-weight: 500; width: 50%; }
.calc-table td { font-weight: 600; color: var(--text-dark); text-align: right; }
.calc-table tr:last-child td, .calc-table tr:last-child th { border-bottom: none; }

/* 7. Botões de Ação (Movidos para dentro da box) */
.calc-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    justify-content: flex-end; /* Alinhado à direita */
    flex-wrap: wrap;
}

.calc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem; /* Reduzido */
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-family: inherit;
    font-size: 0.85rem; /* Reduzido */
    text-decoration: none;
}

.calc-btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}
.calc-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3); }

.calc-btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 1px solid rgba(0,0,0,0.1);
}
.calc-btn-secondary:hover { border-color: var(--primary); color: var(--primary); }

/* 8. Risk Analysis Tags */
#riskAnalysis p {
    margin-bottom: 0.75rem;
    font-size: 0.85rem; /* Reduzido */
    color: var(--text-body);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.risk-tag {
    display: inline-block;
    padding: 0.25rem 0.6rem; /* Reduzido */
    border-radius: 50px;
    font-size: 0.65rem; /* Reduzido */
    font-weight: 700;
    margin-right: 0.5rem;
    text-transform: uppercase;
}
.risk-low { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.risk-medium { background: rgba(255, 193, 7, 0.1); color: #d39e00; }
.risk-high { background: rgba(220, 53, 69, 0.1); color: #dc3545; }

/* 9. Animação de Entrada */
.calc-animate {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.calc-animate.visible { opacity: 1; transform: translateY(0); }

/* 10. Responsividade */
@media (max-width: 1200px) {
    .calc-wrapper { grid-template-columns: 1fr; }
    .calc-sidebar { position: static; max-height: none; margin-bottom: 2rem; }
}

@media (max-width: 600px) {
    .calc-results-grid { grid-template-columns: 1fr 1fr; }
    .calc-actions { flex-direction: column; }
    .calc-btn { width: 100%; }
}

/* ============================================
   MEETING SCHEDULER WIDGET (ALINHADO AO CHATBOT)
   ============================================ */

/* Botão Flutuante (Right Side - Ao lado do Chatbot) */
.meeting-trigger {
    position: fixed;
    bottom: 30px;
    right: 100px; /* Distância da esquerda do chatbot */
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 9998; /* Logo abaixo do chatbot */
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Responsivo: Em ecrãs pequenos, ajusta para não sobrepor */
@media (max-width: 480px) {
    .meeting-trigger {
        bottom: 90px; /* Sobrepõe-se verticalmente se faltar espaço horizontal */
        right: 30px; /* Volta à posição original em mobile */
    }
}

.meeting-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.meeting-trigger svg {
    width: 24px;
    height: 24px;
    stroke: var(--text-dark);
    transition: transform 0.3s ease;
}

.meeting-trigger.active svg {
    transform: rotate(45deg);
    stroke: #dc3545; /* Indica fechamento */
}

/* Notification Dot */
.meeting-trigger::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid white;
    animation: pulse 2s infinite;
}

/* Janela Principal (Posicionada acima do botão) */
.meeting-window {
    position: fixed;
    bottom: 90px; /* Acima do botão */
    right: 100px; /* Alinhado com o botão */
    width: 380px;
    max-width: calc(100% - 40px);
    max-height: calc(100% - 120px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.15);
    z-index: 9997;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(0,0,0,0.05);
}

.meeting-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Responsivo da Janela */
@media (max-width: 480px) {
    .meeting-window {
        right: 10px;
        left: 10px;
        width: auto;
        bottom: 80px;
    }
}

/* Cabeçalho */
.meeting-header {
    background: var(--gradient-primary);
    padding: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.meeting-icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meeting-header-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.meeting-header-info p {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.9;
}

/* Corpo */
.meeting-body {
    padding: 1.5rem;
    overflow-y: auto;
    background: #fdfdfd;
    flex: 1;
}

/* Steps Indicator */
.meeting-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
}

.meeting-steps::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    height: 2px;
    background: #eee;
    z-index: 0;
}

.step-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: white;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #aaa;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.step-dot.active {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.step-dot.completed {
    border-color: var(--primary);
    background: white;
    color: var(--primary);
}

/* Form Sections */
.meeting-step-content {
    display: none;
    animation: fadeIn 0.4s ease;
}
.meeting-step-content.active { display: block; }

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

/* Service Selection Cards */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.service-card-mini {
    padding: 1rem;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.service-card-mini:hover {
    border-color: rgba(255, 107, 0, 0.3);
    background: rgba(255, 107, 0, 0.03);
}

.service-card-mini.selected {
    border-color: var(--primary);
    background: rgba(255, 107, 0, 0.05);
}

.service-card-mini h5 {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.service-card-mini p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Calendar Styles */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.calendar-nav {
    background: none;
    border: 1px solid #eee;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.calendar-nav:hover { border-color: var(--primary); color: var(--primary); }

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    text-align: center;
}

.calendar-day-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.5rem 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    background: transparent;
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: rgba(255, 107, 0, 0.1);
    font-weight: 600;
}

.calendar-day.selected {
    background: var(--gradient-primary) !important;
    color: white;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 107, 0, 0.3);
}

.calendar-day.disabled { color: #ddd; cursor: not-allowed; }
.calendar-day.empty { cursor: default; }

/* Time Slots */
.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.time-slot {
    padding: 0.6rem;
    border: 1px solid #eee;
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.time-slot:hover { border-color: var(--primary); }
.time-slot.selected { background: var(--primary); color: white; border-color: var(--primary); }

/* Input Styles */
.m-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-family: inherit;
    transition: all 0.2s;
}

.m-input:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer Buttons */
.meeting-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 0.75rem;
    background: white;
}

.m-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.9rem;
    border: 2px solid transparent;
}

.m-btn-back {
    background: transparent;
    color: var(--text-muted);
    border-color: #eee;
}
.m-btn-back:hover { border-color: var(--text-muted); color: var(--text-dark); }

.m-btn-next {
    background: var(--gradient-primary);
    color: white;
    border: none;
}
.m-btn-next:hover { box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3); transform: translateY(-1px); }

/* Success State */
.meeting-success {
    text-align: center;
    padding: 2rem 1rem;
}
.meeting-success svg { margin-bottom: 1rem; color: #28a745; width: 60px; height: 60px; }


/* LOGO */
.logo-poster-container {
            width: 720px;
            min-height: 960px;
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.12);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .logo-header {
            text-align: center;
            padding: 35px 40px 25px;
            background: linear-gradient(135deg, #FF6B00 0%, #FF8C42 100%);
            position: relative;
            overflow: hidden;
        }

        .logo-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .logo-company-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 40px;
            font-weight: 800;
            color: white;
            letter-spacing: 5px;
            margin-bottom: 6px;
            position: relative;
            z-index: 1;
        }

        .logo-company-tagline {
            font-size: 12px;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.95);
            letter-spacing: 2px;
            text-transform: uppercase;
            position: relative;
            z-index: 1;
        }

        .logo-options {
            padding: 25px 25px;
            flex: 1;
        }

        .logo-section-title {
            font-size: 10px;
            font-weight: 600;
            color: #999;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 20px;
            text-align: center;
        }

        /* Featured Logo - Large Display */
        .logo-featured-large {
            margin-bottom: 30px;
            text-align: center;
        }

        .logo-featured-large-card {
            background: linear-gradient(135deg, #FF6B00 0%, #FF8C42 100%);
            border-radius: 20px;
            padding: 50px 40px;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .logo-featured-large-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .logo-featured-large-logo {
            width: 200px;
            height: 200px;
            position: relative;
            z-index: 1;
        }

        .logo-featured-large-logo svg {
            width: 100%;
            height: 100%;
        }

        .logo-featured-info {
            margin-top: 15px;
            text-align: center;
        }

        .logo-featured-info-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: #333;
            margin-bottom: 5px;
        }

        .logo-featured-info-desc {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
        }

        /* Size Variations */
        .logo-variations-section {
            margin-bottom: 30px;
        }

        .logo-variations-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 25px;
        }

        .logo-variation-item {
            background: #fafafa;
            border-radius: 12px;
            padding: 20px 15px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .logo-variation-item:hover {
            border-color: #FF6B00;
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(255, 107, 53, 0.15);
        }

        .logo-variation-logo {
            margin: 0 auto 12px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo-variation-logo svg {
            width: 100%;
            height: 100%;
        }

        .logo-variation-title {
            font-size: 10px;
            font-weight: 600;
            color: #333;
            margin-bottom: 3px;
        }

        .logo-variation-desc {
            font-size: 8px;
            color: #999;
        }

        /* Background Variations */
        .logo-bg-variations {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .logo-bg-variation-card {
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .logo-bg-orange {
            background: linear-gradient(135deg, #FF6B00 0%, #FF8C42 100%);
        }

        .logo-bg-white {
            background: #ffffff;
            border: 2px solid #f0f0f0;
        }

        .logo-bg-logo {
            width: 120px;
            height: 120px;
            margin: 0 auto 12px;
        }

        .logo-bg-logo svg {
            width: 100%;
            height: 100%;
        }

        .logo-bg-title {
            font-size: 12px;
            font-weight: 600;
            color: white;
            margin-bottom: 3px;
        }

        .logo-bg-white .logo-bg-title {
            color: #333;
        }

        .logo-bg-desc {
            font-size: 9px;
            color: rgba(255, 255, 255, 0.85);
        }

        .logo-bg-white .logo-bg-desc {
            color: #999;
        }

        /* Analysis Section */
        .logo-analysis-section {
            background: #fafafa;
            border-radius: 12px;
            padding: 25px;
            margin-bottom: 20px;
        }

        .logo-analysis-title {
            font-size: 12px;
            font-weight: 700;
            color: #FF6B00;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .logo-analysis-list {
            list-style: none;
        }

        .logo-analysis-list li {
            font-size: 11px;
            color: #555;
            line-height: 1.8;
            padding-left: 20px;
            position: relative;
        }

        .logo-analysis-list li::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: #FF6B00;
            font-weight: bold;
        }

        .logo-footer {
            text-align: center;
            padding: 15px 25px;
            background: #fafafa;
            border-top: 1px solid #f0f0f0;
        }

        .logo-footer-text {
            font-size: 9px;
            color: #999;
            letter-spacing: 0.5px;
        }
/* ============================================
   INVESTMENTS PAGE STYLES (PREFIX: inv-)
   ============================================ */

/* 1. Parallax Global Background (Tons Laranja) */
.inv-parallax-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    background: #FFFFFF;
    overflow: hidden;
}

.inv-stripe {
    position: absolute;
    width: 200%;
    height: 300px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 0, 0) 10%,
        rgba(255, 107, 0, 0.06) 30%,       /* Laranja Principal */
        rgba(255, 149, 0, 0.12) 50%,      /* Laranja Claro */
        rgba(255, 107, 0, 0.06) 70%,
        transparent 90%, 
        transparent 100%
    );
    transform: rotate(-25deg);
    animation: invStripeMove 35s linear infinite;
    will-change: transform;
}

.inv-stripe:nth-child(1) { top: 0%; left: -50%; height: 200px; opacity: 0.6; animation-delay: 0s; }
.inv-stripe:nth-child(2) { top: 30%; left: -80%; height: 300px; opacity: 0.4; animation-delay: -10s; animation-duration: 45s; }
.inv-stripe:nth-child(3) { top: 60%; left: -40%; height: 150px; opacity: 0.5; animation-delay: -20s; }
.inv-stripe:nth-child(4) { top: 80%; left: -70%; height: 400px; opacity: 0.3; animation-delay: -5s; }

@keyframes invStripeMove {
    0% { transform: translateX(-25%) rotate(-25deg); }
    100% { transform: translateX(25%) rotate(-25deg); }
}

/* Floating Orbs (Tons Laranja) */
.inv-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    background: rgba(255, 107, 0, 0.08);
    transition: transform 0.2s linear;
}
.inv-orb-1 { width: 40vw; height: 40vw; top: -10%; right: -10%; }
.inv-orb-2 { width: 50vw; height: 50vw; bottom: 0%; left: -20%; background: rgba(255, 149, 0, 0.05); }

/* Content Wrapper */
.inv-content { position: relative; z-index: 1; }

/* ============================================
   HERO SECTION - CLEAN & OBJECTIVE LAYOUT
   ============================================ */

.inv-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.inv-hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* --- Topo: Badge e Título (Largura Total) --- */
.inv-hero-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 107, 0, 0.1); /* Laranja suave */
    color: #CC5500; /* Laranja escuro para texto */
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.inv-hero-content h1 { 
    font-size: clamp(3rem, 6vw, 4.5rem); 
    line-height: 1.05;
    margin: 0 0 1rem 0;
    max-width: 900px; 
}
.inv-hero-content h1 span { color: var(--primary); }

/* --- Base: Flex Row (Texto + Stats) --- */
.inv-hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 3rem;
}

/* Coluna Esquerda: Texto e Botão */
.inv-hero-text-col {
    flex: 1;
    max-width: 550px;
}
.inv-hero-text-col p { 
    font-size: 1.1rem; 
    color: var(--text-body); 
    margin-bottom: 2rem; 
    line-height: 1.6;
    margin-top: 0;
}

/* Coluna Direita: Estatísticas */
.inv-hero-stats {
    display: flex;
    gap: 4rem;
    align-items: flex-end;
}

.inv-stat-item {
    text-align: right;
}

.inv-stat-item h3 { 
    font-size: 3rem; 
    color: var(--text-dark); 
    margin: 0; 
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}
.inv-stat-item p { 
    font-size: 0.85rem; 
    color: var(--text-muted); 
    margin: 0.5rem 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsividade Hero */
@media (max-width: 968px) {
    .inv-hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        border-top: none;
        padding-top: 0;
        gap: 2rem;
    }
    .inv-hero-text-col { max-width: 100%; }
    .inv-hero-stats {
        width: 100%;
        justify-content: flex-start;
        gap: 3rem;
    }
    .inv-stat-item { text-align: left; }
}

/* ============================================
   OPPORTUNITIES SECTION
   ============================================ */

.inv-opportunities {
    padding: 6rem 0;
    background: rgba(0,0,0,0.02);
}

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

.inv-op-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s;
}
.inv-op-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.inv-op-icon {
    width: 50px; height: 50px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.inv-op-card h4 { margin-bottom: 0.5rem; font-size: 1.2rem; }
.inv-op-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================
   FORM SECTION
   ============================================ */

.inv-form-section {
    padding: 6rem 0;
    position: relative;
}

.inv-form-container {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Linha decorativa laranja no topo do formulário */
.inv-form-container::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.inv-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.inv-form-header h2 { margin-bottom: 0.5rem; }
.inv-form-header p { color: var(--text-muted); }

.inv-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.inv-form-grid .full-width { grid-column: span 2; }

.inv-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.inv-field input, 
.inv-field select, 
.inv-field textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
    background: #fafafa;
}

.inv-field input:focus, 
.inv-field select:focus, 
.inv-field textarea:focus {
    border-color: var(--primary);
    background: white;
    outline: none;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.05);
}

.inv-submit-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 1rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.inv-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.inv-animate.visible { opacity: 1; transform: translateY(0); }

/* Responsividade Formulário */
@media (max-width: 768px) {
    .inv-form-grid { grid-template-columns: 1fr; }
    .inv-form-grid .full-width { grid-column: span 1; }
    .inv-form-container { padding: 2rem 1.5rem; }
}


/* ============================================
   SIMULADOR MODERN UI - COMPLETE STYLES
   ============================================ */

/* --- 1. BASE & LAYOUT --- */
.sim-body-modern {
    background-color: #f8fafb;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    line-height: 1.5;
    overflow-x: hidden;
}

.sim-bg-pattern {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(0,0,0,0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

.sim-main-modern {
    position: relative;
    z-index: 1;
}

/* Main Grid: Form (Left) | Results (Right) */
.sim-layout-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr; /* Give more space to form */
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
    align-items: flex-start; /* Sticky alignment */
}

@media (max-width: 1024px) {
    .sim-layout-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .sim-result-sticky { position: relative; top: 0; }
}

/* --- 2. HEADER --- */
.sim-header-modern {
    padding: 6rem 1rem 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sim-header-modern h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #111;
    margin: 0.5rem 0;
    letter-spacing: -1px;
}

.sim-badge-modern {
    display: inline-block;
    background: #111;
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.text-gradient {
    background: linear-gradient(45deg, #ff6b00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- 3. ACCORDION CARDS (SECTIONS) --- */
.sim-accordion-card {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.04);
}

.sim-accordion-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

/* Header of the Card */
.sim-accordion-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}
.sim-accordion-header:hover { background: rgba(0,0,0,0.01); }

.header-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 0, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b00;
    margin-right: 1.25rem;
    flex-shrink: 0;
}

.header-info h3 { 
    margin: 0; 
    font-size: 1.05rem; 
    color: #111; 
    font-weight: 600;
}
.header-info p { 
    margin: 0; 
    font-size: 0.85rem; 
    color: #888; 
    margin-top: 0.2rem; 
    font-weight: 400;
}

.header-toggle { margin-left: auto; padding-left: 1rem; }
.header-toggle .chevron { 
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    color: #aaa; 
}
.sim-accordion-card.open .header-toggle .chevron { 
    transform: rotate(180deg); 
    color: #ff6b00;
}

/* Body of the Card (Hidden by default) */
.sim-accordion-body {
    display: none;
    padding: 0 2rem 2rem 2rem;
    border-top: 1px solid #f0f0f0;
    animation: slideDown 0.3s ease-out;
}
.sim-accordion-card.open .sim-accordion-body { display: block; }

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

/* Subtitles inside cards */
.sim-section-subtitle {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}
.sim-section-subtitle::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
    margin-left: 1rem;
    opacity: 0.6;
}

/* --- 4. FORM FIELDS & GRIDS --- */
.sim-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.sim-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.sim-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; }

@media (max-width: 768px) {
    .sim-grid-2, .sim-grid-3, .sim-grid-4 { grid-template-columns: 1fr; }
    .sim-accordion-body { padding: 0 1.25rem 1.5rem; }
    .sim-accordion-header { padding: 1.25rem; }
}

/* Field Styling */
.sim-field {
    position: relative;
    margin-bottom: 0.5rem;
}

.sim-field label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.4rem;
    font-weight: 500;
    transition: color 0.2s;
}

.sim-field input, 
.sim-field select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    color: #333;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

/* Focus State */
.sim-field input:focus, 
.sim-field select:focus {
    border-color: #ff6b00;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.08);
}

.sim-field input::placeholder { color: #bbb; }

/* Custom Select Arrow */
.sim-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

/* --- 5. EXTRAS (CHECKBOXES) --- */
.sim-extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.sim-check-modern {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 2.75rem; /* Space for custom check */
    min-height: 50px;
}

.sim-check-modern:hover {
    border-color: #ddd;
    background: #fcfcfc;
}

/* Custom Checkbox */
.sim-check-modern input { position: absolute; opacity: 0; width: 0; height: 0; }

.checkmark {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Checked State */
.sim-check-modern input:checked + .checkmark {
    background: #ff6b00;
    border-color: #ff6b00;
}
.sim-check-modern input:checked + .checkmark::after {
    content: '✓';
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.sim-check-modern input:checked ~ strong {
    color: #ff6b00;
}

.sim-check-modern strong { 
    font-size: 0.9rem; 
    color: #333; 
    font-weight: 600;
    display: block;
    line-height: 1.2;
}

/* --- 6. BUTTONS --- */
.sim-btn-calculate-modern {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: linear-gradient(135deg, #111, #2a2a2a);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.sim-btn-calculate-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #000, #222);
}

/* --- 7. RESULT COLUMN (STICKY) --- */
.sim-result-sticky {
    position: sticky;
    top: 100px; /* Sticky offset */
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid rgba(0,0,0,0.04);
}

.result-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    color: #111;
    margin: 0.25rem 0 0;
    letter-spacing: -1px;
}
.result-header small {
    display: block;
    color: #aaa;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

/* Range Bar */
.result-range {
    margin: 2rem 0;
    position: relative;
}
.range-line {
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    position: relative;
    margin: 0 auto;
    width: 80%;
}
/* Gradient in the middle */
.range-line::after {
    content: '';
    position: absolute;
    left: 25%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #ddd, #ff6b00, #ddd);
    border-radius: 2px;
    opacity: 0.6;
}
.range-values {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

/* Details List */
.result-details {
    text-align: left;
    background: #fafafa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}
.result-details h4 { 
    margin: 0 0 1rem; 
    font-size: 0.75rem; 
    color: #aaa; 
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.result-details ul { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}
.result-details li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: #555;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.4rem;
}
.result-details li:last-child { border-bottom: none; margin-bottom: 0; }
.result-details strong { color: #111; font-weight: 600; }

/* Price per m2 */
.result-psm2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #444;
    font-size: 0.95rem;
}

/* PDF Button */
.sim-btn-pdf-modern {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px solid #eee;
    border-radius: 10px;
    color: #666;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}
.sim-btn-pdf-modern:hover { 
    border-color: #ff6b00; 
    color: #ff6b00; 
    background: rgba(255, 107, 0, 0.03);
}

/* --- 8. RESPONSIVE TWEAKS --- */
@media (max-width: 1024px) {
    .result-header h2 { font-size: 2.5rem; }
    .sim-result-sticky { padding: 2rem 1.5rem; }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .sim-header-modern { padding: 4rem 1rem 2rem; }
    .result-header h2 { font-size: 2rem; }
    .header-icon { width: 40px; height: 40px; margin-right: 1rem; }
    .header-info h3 { font-size: 1rem; }
    .sim-extras-grid { grid-template-columns: 1fr 1fr; }
}