/**
 * Modern Investment Website - Main Stylesheet
 * Premium design system with modern aesthetics
 */

/* ============================================
   CSS Custom Properties (Design Tokens)
   ============================================ */
:root {
  /* Colors - Professional Investment Theme */
  --color-primary: hsl(197, 63%, 29%);
  --color-primary-light: hsl(197, 63%, 40%);
  --color-primary-dark: hsl(197, 63%, 20%);

  --color-secondary: hsl(177, 60%, 42%);
  --color-secondary-light: hsl(177, 60%, 52%);
  --color-secondary-dark: hsl(177, 60%, 32%);

  --color-accent: hsl(164, 48%, 57%);
  --color-accent-light: hsl(164, 48%, 67%);

  /* Neutrals */
  --color-white: #ffffff;
  --color-gray-50: hsl(210, 20%, 98%);
  --color-gray-100: hsl(210, 20%, 95%);
  --color-gray-200: hsl(210, 20%, 90%);
  --color-gray-300: hsl(210, 20%, 80%);
  --color-gray-400: hsl(210, 20%, 60%);
  --color-gray-500: hsl(210, 20%, 45%);
  --color-gray-600: hsl(210, 20%, 35%);
  --color-gray-700: hsl(210, 20%, 25%);
  --color-gray-800: hsl(210, 20%, 15%);
  --color-gray-900: hsl(210, 20%, 10%);

  /* Semantic Colors */
  --color-success: hsl(142, 71%, 45%);
  --color-error: hsl(0, 72%, 51%);
  --color-warning: hsl(38, 92%, 50%);
  --color-info: hsl(199, 89%, 48%);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;

  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Brand Identity */
  --ente-orange: #ff6a00;
  --ente-orange-dark: #e65c00;
  --ente-orange-light: #fff0e6;
  --ente-navy: #001a4d;
  --ente-navy-light: #002b80;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;

  /* Ente Investimentos Brand Colors */
  --ente-navy: #001233;
  --ente-orange: #ff5c00;
  --ente-light-blue: #74cbed;

  --container-max-width: 1280px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html,
body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-gray-800);
  background-color: var(--color-white);
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  color: var(--color-gray-900);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: var(--font-size-5xl);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-gray-700);
}

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

a:hover {
  color: var(--color-primary-light);
}

/* ============================================
   Layout Components
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-4xl) 0;
}

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

/* ============================================
   Header & Navigation
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  transition: all var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

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

.logo {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--spacing-xl);
  align-items: center;
}

.nav-menu a {
  color: var(--color-gray-700);
  font-weight: var(--font-weight-medium);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-primary);
  background-color: var(--color-gray-50);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: var(--font-size-2xl);
  color: var(--color-gray-700);
  cursor: pointer;
}

/* ============================================
   Hero Section
   ============================================ */
/* ============================================
   Hero Section Redesign (Mockup)
   ============================================ */
.hero-redesign {
  background-color: var(--ente-navy);
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: var(--spacing-4xl) 0;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  margin-top: var(--header-height);
}

.hero-redesign .container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--spacing-4xl);
  align-items: center;
}

.hero-left {
  animation: fadeInUp 0.8s ease-out;
}

.hero-label {
  color: var(--ente-orange);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-md);
  display: block;
}

.hero-redesign h1 {
  color: #ffffff !important;
  /* Branco Forçado */
  font-size: var(--font-size-5xl);
  line-height: 1.1;
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  /* Leve sombra para destacar no fundo */
}

.hero-redesign p {
  color: rgba(255, 255, 255, 0.95) !important;
  /* Branco quase total */
  font-size: var(--font-size-lg);
  max-width: 500px;
  margin-bottom: var(--spacing-2xl);
  line-height: 1.6;
  font-weight: 400;
}

.btn-ente-orange {
  background-color: var(--ente-orange);
  color: var(--color-white);
  padding: 1.2rem 2.4rem;
  font-size: var(--font-size-lg);
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: var(--font-weight-bold);
}

.btn-ente-orange i {
  font-size: 0.8em;
}

/* Form Container (Right Side) */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-orange-disk {
  background-color: var(--ente-orange);
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeIn 1s ease-out;
}

.hero-orange-disk h3 {
  color: var(--color-white);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-2xl);
}

.hero-form {
  width: 100%;
  max-width: 400px;
}

.hero-form-group {
  margin-bottom: var(--spacing-lg);
  text-align: left;
}

.hero-form-label {
  display: block;
  color: var(--color-white);
  font-size: var(--font-size-sm);
  margin-bottom: var(--spacing-xs);
  font-weight: var(--font-weight-semibold);
}

.hero-input,
.hero-select {
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  border: none;
  font-size: var(--font-size-base);
  color: var(--color-gray-800);
}

.btn-ente-blue {
  background-color: var(--ente-light-blue);
  color: var(--color-white);
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  float: right;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: var(--font-weight-bold);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.btn-ente-blue:hover {
  transform: scale(1.05);
}

/* Responsive Redesign */
@media (max-width: 992px) {
  .hero-redesign .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-redesign p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-orange-disk {
    margin-top: var(--spacing-3xl);
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  max-width: 900px;
  padding: var(--spacing-2xl);
}

.hero-title {
  font-size: var(--font-size-5xl);
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-2xl);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
  color: var(--color-primary-dark);
}

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

.btn-secondary:hover {
  background: var(--color-secondary-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

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

/* ============================================
   Cards
   ============================================ */
.card {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-2xl);
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
}

.card-title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--spacing-md);
}

.card-description {
  color: var(--color-gray-600);
  line-height: var(--line-height-relaxed);
}

/* ============================================
   Grid Layouts
   ============================================ */
.grid {
  display: grid;
  gap: var(--spacing-xl);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--spacing-3xl);
}

.section-label {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.section-title {
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-md);
}

.section-description {
  font-size: var(--font-size-lg);
  color: var(--color-gray-600);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-300);
  padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.footer-section h4 {
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-section a {
  color: var(--color-gray-400);
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid var(--color-gray-800);
  padding-top: var(--spacing-lg);
  text-align: center;
  color: var(--color-gray-500);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--color-gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-400);
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   Utility Classes
   ============================================ */
.text-center {
  text-align: center;
}

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

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

.mt-sm {
  margin-top: var(--spacing-sm);
}

.mt-md {
  margin-top: var(--spacing-md);
}

.mt-lg {
  margin-top: var(--spacing-lg);
}

.mt-xl {
  margin-top: var(--spacing-xl);
}

.mb-sm {
  margin-bottom: var(--spacing-sm);
}

.mb-md {
  margin-bottom: var(--spacing-md);
}

.mb-lg {
  margin-bottom: var(--spacing-lg);
}

.mb-xl {
  margin-bottom: var(--spacing-xl);
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/* Flash Messages */
.flash-message {
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-lg);
  animation: fadeInUp 0.3s ease-out;
}

.flash-success {
  background: hsl(142, 71%, 95%);
  color: var(--color-success);
  border-left: 4px solid var(--color-success);
}

.flash-error {
  background: hsl(0, 72%, 95%);
  color: var(--color-error);
  border-left: 4px solid var(--color-error);
}

/* ============================================
   About Page - Modern Redesign
   ============================================ */
.about-purpose {
  background-color: var(--ente-navy);
  color: var(--color-white);
  padding: var(--spacing-4xl) 0;
  text-align: center;
  margin-top: var(--header-height);
}

.about-purpose h2 {
  color: var(--color-white);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-xl);
}

.about-purpose p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1rem;
  white-space: pre-line;
}

.about-section {
  padding: var(--spacing-4xl) 0;
  overflow: hidden;
}

.about-flex {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  margin-bottom: var(--spacing-4xl);
  position: relative;
  gap: 0;
}

.about-card-modern {
  grid-column: 1 / 9;
  grid-row: 1;
  background-color: var(--ente-navy);
  color: var(--color-white);
  padding: var(--spacing-3xl) 40% var(--spacing-3xl) var(--spacing-3xl);
  /* Increased padding to 40% for full overlap clearance */
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-2xl);
  z-index: 1;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.about-image-container {
  grid-column: 6 / 13;
  grid-row: 1;
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: center;
}

.about-flex.reverse .about-card-modern {
  grid-column: 5 / 13;
  padding: var(--spacing-3xl) var(--spacing-3xl) var(--spacing-3xl) 40%;
  /* Increased padding to 40% for full overlap clearance */
}

.about-flex.reverse .about-image-container {
  grid-column: 1 / 8;
}

.hexagon-border {
  padding: 12px;
  background-color: var(--color-white);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  box-shadow: var(--shadow-xl);
  width: 100%;
  aspect-ratio: 1 / 1.1;
  display: flex;
}

.hexagon-mask {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.about-card-modern::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 30px;
  width: 60px;
  height: 4px;
  background-color: var(--ente-orange);
}

.about-flex.reverse .about-card-modern::before {
  left: auto;
  right: 30px;
}

.about-card-modern h3 {
  color: var(--color-white);
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-xl);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-top: 20px;
}

.about-card-modern p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* Values Section */
.values-section {
  background-color: var(--ente-orange);
  padding: var(--spacing-4xl) 0;
}

.values-title {
  text-align: center;
  color: var(--color-white);
  font-size: var(--font-size-4xl);
  margin-bottom: var(--spacing-3xl);
  text-transform: uppercase;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-xl);
}

.value-card-navy {
  background-color: var(--ente-navy);
  color: var(--color-white);
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: transform 0.3s;
  height: 100%;
}

.value-card-navy:hover {
  transform: translateY(-10px);
}

.value-card-navy i {
  font-size: 2rem;
  color: var(--ente-orange);
  margin-bottom: var(--spacing-md);
  display: block;
}

.value-card-navy h4 {
  color: var(--color-white);
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-sm);
}

.value-card-navy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-sm);
  line-height: 1.5;
  margin-bottom: 0;
}

/* About Footer CTA */
.about-footer {
  padding: var(--spacing-4xl) 0;
  text-align: center;
  background-color: var(--color-gray-50);
}

.about-footer h2 {
  font-size: var(--font-size-4xl);
  color: var(--ente-navy);
  margin-bottom: var(--spacing-xs);
}

.about-footer .subtitle {
  color: var(--ente-orange);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-2xl);
  margin-bottom: var(--spacing-xl);
}

.about-footer p {
  max-width: 600px;
  margin: 0 auto var(--spacing-2xl);
  font-size: 1.1rem;
}

@media (max-width: 992px) {

  .about-flex,
  .about-flex.reverse {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-xl);
  }

  .about-card-modern {
    padding: var(--spacing-2xl) !important;
    /* Reset padding for mobile stacking */
  }

  .about-card-modern,
  .about-image-container {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    margin: 0;
  }

  .about-image-container {
    order: -1;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-card-modern::before {
    display: none;
  }
}

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

/* --- Brand Themes & Blog Redesign --- */
.theme-orange-landing {
  background-color: var(--ente-orange);
  min-height: 100vh;
  padding-bottom: 80px;
}

.theme-orange-header {
  padding: calc(var(--header-height) + 40px) 0 40px;
  text-align: center;
  color: var(--color-white);
}

.theme-orange-header h1 {
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700;
  font-size: 3.5rem;
  text-transform: lowercase;
}

.blog-post-card {
  background-color: var(--ente-navy);
  color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}

.blog-post-card:hover {
  transform: translateY(-10px);
}

.blog-post-img-container {
  height: 200px;
  width: 100%;
}

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

.blog-post-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-category {
  background-color: var(--ente-orange);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
  margin-bottom: 15px;
}

.blog-post-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1.25rem;
  margin-bottom: 15px;
  line-height: 1.3;
  color: var(--color-white) !important;
}

.blog-post-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.blog-post-meta {
  margin-top: auto;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.btn-blog-read {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--ente-orange);
  color: var(--color-white);
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  transition: background-color 0.3s;
}

.btn-blog-read:hover {
  background-color: var(--ente-orange-dark);
}

/* Pagination Theme */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 50px;
}

.pagination-link {
  background-color: var(--ente-navy);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.pagination-link:hover {
  opacity: 0.8;
}

.pagination-info {
  color: var(--color-white);
  font-weight: 500;
}

.category-filter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.btn-cat-filter {
  padding: 10px 20px;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.btn-cat-filter:hover,
.btn-cat-filter.active {
  background-color: var(--ente-navy);
  border-color: var(--ente-navy);
}

/* --- Visibility Fixes for Brand Themes --- */
.post-header-themed h1 {
  color: var(--color-white) !important;
}

.post-meta-fancy span {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* --- Homepage Premium Brand Redesign --- */
.hero-brand-new {
  background-color: var(--ente-orange);
  padding: calc(var(--header-height) + 80px) 0 100px;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.hero-brand-new h1 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: lowercase;
}

.hero-brand-new .hero-label {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: block;
  color: var(--ente-navy);
}

.hero-brand-new p {
  font-size: 1.25rem;
  max-width: 550px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.hero-form-card {
  background-color: var(--ente-navy);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-form-card h3 {
  color: var(--ente-orange);
  font-family: 'Outfit', sans-serif;
  margin-bottom: 25px;
  font-size: 1.5rem;
}

.brand-section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.brand-section-heading h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 3rem;
  font-weight: 700;
  color: var(--ente-navy);
}

.brand-section-heading.light h2 {
  color: var(--color-white);
}

.brand-section-heading .section-label {
  color: var(--ente-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
}

.brand-navy-card {
  background-color: var(--ente-navy);
  color: var(--color-white);
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  transition: transform 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.brand-navy-card:hover {
  transform: translateY(-10px);
}

.brand-navy-card .card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: var(--ente-orange);
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
}

.brand-navy-card .card-icon i {
  color: white;
  font-size: 2rem;
}


.brand-navy-card .card-title {
  font-family: 'Outfit', sans-serif !important;
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.brand-cta-final {
  background-color: var(--ente-navy);
  color: var(--color-white);
  padding: 100px 0;
  text-align: center;
}

.brand-cta-final h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 3.5rem;
  color: var(--color-white);
  margin-bottom: 20px;
}

/* --- Hero v2 Upgrade (Mockup Fidelity) --- */
.hero-v2 {
  background-color: var(--ente-navy);
  position: relative;
  padding: calc(var(--header-height) + 100px) 0 140px;
  color: var(--color-white);
  overflow: hidden;
}

/* Organic Circle Strokes */
.hero-v2::before,
.hero-v2::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(255, 106, 0, 0.4);
  border-radius: 50%;
  z-index: 1;
}

.hero-v2::before {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -150px;
}

.hero-v2::after {
  width: 800px;
  height: 800px;
  bottom: -300px;
  right: -100px;
  border-color: rgba(255, 106, 0, 0.2);
}

.hero-v2 .container {
  position: relative;
  z-index: 10;
}

.hero-label-v2 {
  color: var(--ente-orange);
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  font-size: 1.1rem;
}

.hero-title-v2 {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  max-width: 600px;
}

.hero-desc-v2 {
  font-size: 1.1rem;
  max-width: 500px;
  opacity: 0.85;
  margin-bottom: 45px;
  font-weight: 300;
  line-height: 1.6;
}

.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--ente-orange);
  color: var(--color-white);
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s;
}

.btn-hero-cta:hover {
  transform: scale(1.05);
}

/* Orange Form Container (Massive Circle) */
.hero-form-circle {
  background-color: var(--ente-orange);
  width: 620px;
  height: 620px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  margin-left: auto;
}

.hero-form-v2 {
  width: 100%;
  max-width: 380px;
}

.hero-form-v2 h3 {
  text-align: center;
  font-family: 'Outfit', sans-serif;
  color: var(--color-white);
  font-size: 1.3rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.input-v2 {
  width: 100%;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  margin-bottom: 12px;
  font-size: 0.9rem;
  background: #ffffff;
  color: var(--ente-navy);
}

.select-v2 {
  width: 100%;
  padding: 12px 20px;
  border-radius: 12px;
  border: none;
  margin-bottom: 12px;
  font-size: 0.9rem;
  background-color: white;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23001a4d'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 15px;
  color: var(--ente-navy);
}

/* Range Slider */
.range-container {
  margin-bottom: 25px;
}

.range-label-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 0.85rem;
}

.hero-range {
  width: 100%;
  height: 6px;
  background: #fff;
  border-radius: 5px;
  outline: none;
  appearance: none;
}

.hero-range::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.btn-simular {
  width: 100%;
  background-color: var(--ente-navy);
  color: var(--color-white);
  padding: 16px 20px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.2;
}

.btn-simular:hover {
  background-color: #00266e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Header Active Link Underline */
.nav-menu li a.active-link {
  border-bottom: 3px solid var(--ente-orange);
  padding-bottom: 10px;
}

@media (max-width: 992px) {
  .hero-form-circle {
    width: 100%;
    height: auto;
    border-radius: 30px;
    margin-top: 50px;
    padding: 40px;
  }

  .hero-title-v2 {
    font-size: 2.5rem;
  }
}

/* --- Header Fidelity Refinement --- */
.header {
  background-color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  height: 90px;
  display: flex;
  align-items: center;
}

.logo-v2-box {
  background-color: var(--ente-navy);
  padding: 15px 30px;
  margin-left: -50px;
  /* Overlap effect if container has padding */
  display: inline-block;
}

.nav-menu li a {
  color: var(--ente-navy) !important;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px 15px;
  transition: all 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active-link {
  color: var(--ente-navy) !important;
  border-bottom: 2px solid var(--ente-orange);
}

.header .btn-primary {
  background: transparent !important;
  border: none !important;
  color: var(--ente-navy) !important;
  font-weight: 600;
  padding: 0 !important;
}

/* Adjusting the logo box within the container */
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
}

/* --- Benefits Section (Mockup Fidelity) --- */
.benefits-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.benefits-header {
  margin-bottom: 50px;
}

.benefits-accent-line {
  width: 60px;
  height: 4px;
  background-color: var(--ente-orange);
  margin-bottom: 15px;
}

.benefits-header h2 {
  font-family: 'Outfit', sans-serif !important;
  font-size: 2.5rem;
  color: var(--ente-navy);
  line-height: 1.2;
  max-width: 500px;
}

.benefits-main-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  align-items: start;
}

.benefits-left-stack {
  grid-column: 1 / 8;
}

.benefits-image-stack {
  grid-column: 8 / 13;
  position: relative;
}

.benefits-image-stack img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  /* Removed box-shadow to match mockup's clean look if needed, but adding subtle depth */
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.benefits-top-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.benefits-bottom-row {
  grid-column: 1 / 13;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.benefit-card-v2 {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.3s;
}

.benefit-card-v2:hover {
  border-color: var(--ente-orange);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transform: translateY(-5px);
}

.benefit-card-v2 .icon {
  font-size: 1.8rem;
  color: var(--ente-orange);
  margin-bottom: 20px;
}

.benefit-card-v2 h4 {
  font-family: 'Outfit', sans-serif;
  color: var(--ente-navy);
  font-size: 1.25rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.benefit-card-v2 p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
}

@media (max-width: 1200px) {
  .benefits-main-grid {
    display: block;
  }

  .benefits-image-stack {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .benefits-bottom-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .benefits-top-row,
  .benefits-bottom-row {
    grid-template-columns: 1fr;
  }

  .benefits-header h2 {
    font-size: 2rem;
  }
}

/* --- Premium Frontend UI Components (skill: frontend-design) --- */

/* Glassmorphism & Depth */
.premium-form-card {
  background: rgba(0, 18, 51, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 60px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.premium-form-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 106, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* Floating Labels System */
.floating-label-group {
  position: relative;
  margin-bottom: 30px;
}

.floating-label-input {
  width: 100%;
  padding: 20px 0 10px;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-label-input:focus {
  outline: none;
  border-bottom-color: var(--ente-orange);
}

.floating-label-group label {
  position: absolute;
  top: 20px;
  left: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-label-input:focus~label,
.floating-label-input:not(:placeholder-shown)~label {
  top: -10px;
  font-size: 0.85rem;
  color: var(--ente-orange);
  font-weight: 600;
}

/* Premium CTA Button */
.btn-premium-cta {
  position: relative;
  width: 100%;
  background: var(--ente-orange);
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  box-shadow: 0 15px 30px rgba(255, 106, 0, 0.3);
}

.btn-premium-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 106, 0, 0.4);
  background: #ff7d26;
}

.btn-premium-cta i {
  transition: transform 0.4s;
}

.btn-premium-cta:hover i {
  transform: translate(5px, -5px);
}

/* Entrance Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.reveal-stagger>* {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.reveal-stagger>*:nth-child(1) {
  animation-delay: 0.1s;
}

.reveal-stagger>*:nth-child(2) {
  animation-delay: 0.2s;
}

.reveal-stagger>*:nth-child(3) {
  animation-delay: 0.3s;
}

.reveal-stagger>*:nth-child(4) {
  animation-delay: 0.4s;
}

.reveal-stagger>*:nth-child(5) {
  animation-delay: 0.5s;
}

/* Textarea Specifics */
.floating-label-input.textarea {
  min-height: 120px;
  resize: none;
}

/* --- Infinite Logo Slider (skill: frontend-design) --- */
.logo-slider {
  overflow: hidden;
  padding: 60px 0;
  background: #ffffff;
  white-space: nowrap;
  position: relative;
  margin-top: 30px;
}

.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}

.logo-track {
  display: inline-block;
  animation: logo-scroll 35s linear infinite;
}

.logo-track img {
  height: 60px;
  width: auto;
  margin: 0 50px;
  opacity: 0.4;
  transition: all 0.4s ease;
  filter: grayscale(1);
  vertical-align: middle;
}

.logo-track img:hover {
  opacity: 1;
  filter: grayscale(0);
  transform: scale(1.1);
}

@keyframes logo-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {

  .logo-slider::before,
  .logo-slider::after {
    width: 100px;
  }

  .logo-track img {
    height: 40px;
    margin: 0 30px;
  }
}

/* --- New Sections Overhaul --- */

.partner-slider-orange {
  background-color: var(--ente-orange);
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.slider-title-white {
  color: white !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  letter-spacing: -1px;
}

.logo-slider-v2 {
  width: 100%;
  margin: 0 auto;
  position: relative;
  /* ibelick-style edge mask */
  mask-image: linear-gradient(to right,
      transparent,
      black 15%,
      black 85%,
      transparent);
  -webkit-mask-image: linear-gradient(to right,
      transparent,
      black 15%,
      black 85%,
      transparent);
}

.logo-track-v2 {
  display: flex;
  gap: 40px;
  animation: scroll-v2 40s linear infinite;
  width: max-content;
  padding: 20px 0;
}

.logo-track-v2:hover {
  animation-play-state: paused;
}

@keyframes scroll-v2 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-v2 {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partner-box {
  background: white;
  width: 200px;
  height: 100px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.partner-box:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.partner-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.three-steps-section {
  padding: 120px 0;
  background-color: #fcfcfc;
}

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

.step-card {
  background: white;
  padding: 50px 35px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid #f0f0f0;
  transition: all 0.4s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.step-number {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  color: var(--ente-orange);
  font-weight: 800;
  opacity: 0.1;
  position: absolute;
  top: 15px;
  right: 30px;
  line-height: 1;
}

.step-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  color: var(--ente-navy);
  margin-bottom: 15px;
  font-weight: 700;
}

.step-card p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.6;
}

/* Footer V2 Styles */
.footer-v2 {
  background-color: var(--ente-navy);
  color: white;
  padding: 80px 0 40px;
}

.footer-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 60px;
}

.footer-v2 h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: var(--ente-orange);
  font-weight: 700;
}

.footer-products-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
}

.footer-products-list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-products-list li a:hover {
  color: var(--ente-orange);
  transform: translateX(5px);
}

.footer-contact-info p {
  margin-bottom: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.4;
}

.footer-contact-info i {
  color: var(--ente-orange);
  margin-top: 4px;
  font-size: 1.1rem;
}

/* --- Section 7: Split CTA Design --- */
.contact-split-v2 {
  background: var(--ente-orange);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.contact-split-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(0, 0, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.contact-split-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-split-content {
  color: white;
  position: relative;
  z-index: 10;
}

.contact-split-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 25px;
  letter-spacing: -2px;
}

.contact-split-content p {
  font-size: 1.35rem;
  opacity: 0.95;
  margin-bottom: 50px;
  line-height: 1.6;
  max-width: 600px;
}

.split-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-glass {
  padding: 22px 45px;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.btn-glass-navy {
  background: var(--ente-navy);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-glass-navy:hover {
  background: #00266e;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.btn-glass-white {
  background: rgba(255, 255, 255, 0.95);
  color: var(--ente-navy);
  border: 1px solid white;
}

.btn-glass-white:hover {
  background: white;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.contact-split-image {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
}

.contact-split-image img {
  width: 100%;
  max-width: 580px;
  height: auto;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.25));
  animation: float-3d 8s ease-in-out infinite;
}

@keyframes float-3d {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-30px) rotate(1deg);
  }

  66% {
    transform: translateY(-15px) rotate(-1deg);
  }
}

@media (max-width: 1200px) {
  .contact-split-content h2 {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .contact-split-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .contact-split-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .split-actions {
    justify-content: center;
  }

  .contact-split-image {
    order: -1;
  }

  .contact-split-image img {
    max-width: 450px;
  }
}

/* --- Hotfix: Hero Text Colors (Global Override) --- */
.hero-title-v2 {
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-desc-v2 {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 600px;
  font-weight: 400;
  margin-bottom: 30px;
}

.hero-label-v2 {
  color: var(--ente-orange) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: block;
  font-size: 1rem;
}

@media (min-width: 992px) {
  .hero-title-v2 {
    font-size: 4.5rem;
  }
}

/* --- Blog Page Fixes (White Text Force) --- */
.theme-orange-landing {
  background-color: var(--ente-orange) !important;
  min-height: 100vh;
  padding-bottom: 80px;
}

.theme-orange-header {
  padding-top: 140px;
  /* Espaço para header fixo */
  padding-bottom: 60px;
  text-align: center;
}

.theme-orange-header h1 {
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.theme-orange-header p {
  color: rgba(255, 255, 255, 0.95) !important;
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Filtros de Categoria */
.category-filter-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.btn-cat-filter {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s;
}

.btn-cat-filter:hover,
.btn-cat-filter.active {
  background: #ffffff;
  color: var(--ente-orange) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Paginação */
.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

.pagination-link {
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.pagination-link:hover {
  opacity: 0.8;
}

.pagination-info {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.9rem;
}

/* Cards do Blog Ajuste */
.blog-post-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s;
  height: 100%;
  border: none;
}

.blog-post-card:hover {
  transform: translateY(-10px);
}

/* Fix: Conteúdo Interno do Card deve ser ESCURO (Fundo é branco) */
.blog-post-title {
  color: var(--ente-navy) !important;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blog-post-description {
  color: #444444 !important;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
}

.blog-post-meta {
  color: #888888 !important;
  font-size: 0.9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-post-meta i {
  color: var(--ente-orange);
}

/* Filtros mais visíveis */
.btn-cat-filter {
  font-weight: 700 !important;
  letter-spacing: 0.5px;
}