/*
Theme Name: PretUX
Description: Modern WordPress theme for PretUX community platform
Version: 1.1
Author: PretUX Team
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

:root {
  /* Figma Colors Collection - Design System */
  --color-bege: #E8DAB2;
  --color-preto: #2B2B2B;
  --color-branco: #FFFFFF;
  --color-black-hover: #000000;
  --color-mago-black: #000000;
  --color-mago-brown: #BF7853;
  --color-half-brown: #E8DAB2;
  --color-blue-800: #263c8f;
  
  /* Primary Color Palette */
  --primary-color: var(--color-bege);
  /* Secundária alinhada ao Figma: usar preto do sistema */
  --secondary-color: var(--color-preto);
  --accent-color: var(--color-mago-brown);
  --text-light: #f9f9f9;
  --text-dark: var(--color-preto);
  /* Cinza neutro para textos secundários */
  --text-muted: #A3A3A3;
  --background-dark: #1A1A1A;
  --background-light: #F8F9FA;
  --background-darker: #0D1117;
  --success-color: #27AE60;
  --warning-color: #F39C12;
  --error-color: #E74C3C;
  /* Aliases para tokens legados (compatibilidade) */
  --color-primary: var(--primary-color);
  --color-text-dark: var(--text-dark);
  --color-text-light: var(--text-light);
  --color-text-muted: var(--text-muted);
  --color-bg-dark: var(--background-dark);
  --color-bg-light: var(--background-light);
  --color-white: var(--color-branco);
  
  /* Figma Button Colors */
  --btn-bege: var(--color-bege);
  --btn-white: var(--color-branco);
  --btn-black: var(--color-preto);
  --btn-text-black: var(--color-black-hover);
  --btn-text-white: var(--color-branco);
  --btn-text-bege: var(--color-bege);
  --btn-hover-bege: rgba(0, 0, 0, 0.1);
  --btn-hover-white: #E4E4E4;
  --btn-hover-black: var(--color-black-hover);
  --btn-border-bege: var(--color-bege);
  --btn-border-black: var(--color-preto);
  
  /* Figma Sizes Collection - Design System */
  --size-xs: 0.25rem;    /* 4px */
  --size-sm: 0.5rem;     /* 8px */
  --size-md: 0.75rem;    /* 12px */
  --size-lg: 1rem;       /* 16px */
  --size-xl: 1.25rem;    /* 20px */
  --size-2xl: 1.5rem;    /* 24px */
  --size-3xl: 2rem;      /* 32px */
  --size-4xl: 2.5rem;    /* 40px */
  --size-5xl: 3rem;      /* 48px */
  --size-6xl: 4rem;      /* 64px */
  
  /* Spacing system - Updated with Figma sizes */
  --spacing-xs: var(--size-sm);
  --spacing-sm: var(--size-lg);
  --spacing-md: var(--size-2xl);
  --spacing-lg: var(--size-3xl);
  --spacing-xl: var(--size-5xl);
  --spacing-xxl: var(--size-6xl);
  --spacing-section: 6rem;
  
  /* Border and shadow system */
  --border-radius: 8px;
  --border-radius-lg: 20px;
  --border-radius-xl: 32px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 15px rgba(232, 218, 171, 0.5);
  
  /* Form specific colors - Updated with Figma colors */
  --form-background: var(--secondary-color);
  --form-border: var(--color-bege);
  --form-text: var(--text-muted);
  --form-label: var(--color-branco);
  
  /* Text styles */
  --font-heading: 'Montserrat', Arial, sans-serif;
  --font-body: 'Montserrat', Arial, sans-serif;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --line-height-tight: 1.2;
  --line-height-normal: 1.6;
  --line-height-relaxed: 1.8;
  /* Typography scale from Figma (Montserrat) */
  --font-size-h1: 2.5rem;   /* 40px */
  --font-size-h2: 2rem;     /* 32px */
  --font-size-h3: 1.5rem;   /* 24px */
  --font-size-h4: 1.125rem; /* 18px */
  --font-size-h5: 1rem;     /* 16px */
  --font-size-h6: 1rem;     /* 16px */
  --font-size-paragraph: 1rem; /* 16px */
  --font-size-caption: 0.75rem; /* 12px */
  --font-size-micro: 0.625rem; /* 10px */
}

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

body {
  font-family: var(--font-body);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: var(--text-dark);
}

/* Background Gradient */
.bg-gradient {
  /* background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 25%, #0d0d0d 50%, #1a1a1a 75%, #2c2c2c 100%); */
  background-image: url(assets/img/bg_gradient-black.png);
  background-size: cover;
  background-position: center;
  color: var(--text-light);
}

.box-rounded{
  border-radius: var(--border-radius);
}

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

h1.underline, h2.underline, h3.underline, h4.underline, h5.underline, h6.underline {
  display: inline-block;
  position: relative;
  text-align: center;
}

h1.underline::after, h2.underline::after, h3.underline::after, h4.underline::after, h5.underline::after, h6.underline::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px; /* ajuste a espessura conforme seu design */
  background: var(--primary-color); /* ou use 'currentColor' para herdar a cor do texto */
  margin-top: var(--spacing-xs);
}

h1 { 
  font-size: var(--font-size-h1); 
  letter-spacing: -0.02em;
  line-height: 1.1;
}

h2 { 
  font-size: var(--font-size-h2); 
  letter-spacing: -0.01em;
  line-height: 1.2;
}

h3 { 
  font-size: var(--font-size-h3); 
  letter-spacing: -0.005em;
  line-height: 1.3;
}

h4 { 
  font-size: var(--font-size-h4); 
  line-height: 1.4;
}

h5 { 
  font-size: var(--font-size-h5); 
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
}

h6 { 
  font-size: var(--font-size-h6); 
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
}

p {
  margin-bottom: var(--spacing-sm);
  font-size: var(--font-size-paragraph);
  line-height: var(--line-height-relaxed);
  letter-spacing: 0.01em;
}

.text-gradient {
  background: linear-gradient(45deg, var(--text-light), var(--primary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-small { /* caption */
  font-size: var(--font-size-caption);
  line-height: 1.5;
}

.text-large {
  font-size: var(--font-size-paragraph);
  line-height: 1.6;
}

.text-medium {
  font-size: var(--font-size-paragraph);
  line-height: 1.5;
}
/* Micro text utility */
.text-micro {
  font-size: var(--font-size-micro);
  line-height: 1.4;
}

.text-bold {
  font-weight: var(--font-weight-bold);
}

.text-medium-weight {
  font-weight: var(--font-weight-medium);
}

.text-normal {
  font-weight: var(--font-weight-normal);
}

.letter-spacing-tight {
  letter-spacing: -0.01em;
}

.letter-spacing-normal {
  letter-spacing: 0;
}

.letter-spacing-wide {
  letter-spacing: 0.01em;
}

/* Container and Layout */
body > .container {
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
  padding: var(--size-6xl) var(--spacing-md) 0; /* 64px top, 24px sides, 0 bottom */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--size-3xl);
}
body > .container > .static-page-content{max-width: inherit;}

/* Mobile responsiveness for container */
@media (max-width: 720px) {
  body > .container {
    max-width: 24.6875rem; /* 395px */
    padding: var(--size-6xl) var(--size-2xl) 0; /* 64px top, 24px sides, 0 bottom */
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -var(--spacing-sm);
}

.col {
  flex: 1;
  padding: 0 var(--spacing-sm);
}

.col-2 { flex: 0 0 50%; }
.col-3 { flex: 0 0 33.333%; }
.col-4 { flex: 0 0 25%; }

/* Header */
.site-header {
  background: var(--color-mago-black);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--spacing-sm) var(--spacing-md);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
}

.navigation ul {
  display: flex;
  list-style: none;
  gap: var(--spacing-lg);
}

.navigation a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.navigation a:hover,
.navigation a.active {
  color: var(--primary-color);
}

.navigation a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.navigation a:hover::after,
.navigation a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Widget Area - WordPress Pages */
.hero-widget-area {
  position: relative;
  background: var(--color-mago-black);
  color: var(--text-light);
  padding: var(--size-6xl) 0;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero-widget-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background-image: url('assets/img/bg_effect-left.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top left;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  transform: translateY(var(--parallax-y-left, 0px));
}

.hero-widget-area::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-image: url('assets/img/bg_effect-right.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  opacity: 0.8;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  transform: translateY(var(--parallax-y-right, 0px));
}

.hero-widget-area .container {
  position: relative;
  z-index: 2;
  padding: var(--spacing-lg);
}

.hero-widget-area h1,
.hero-widget-area h2,
.hero-widget-area h3,
.hero-widget-area h4,
.hero-widget-area h5,
.hero-widget-area h6 {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.hero-widget-area p {
  color: var(--text-light);
  opacity: 0.9;
  font-size: 1.125rem;
  line-height: var(--line-height-relaxed);
}

.hero-widget-area .btn {
  margin-top: var(--spacing-lg);
}

/* Botões específicos para Hero Widget */
.hero-widget-area .btn-primary {
  background: var(--primary-color);
  color: var(--text-dark);
  border: 2px solid var(--primary-color);
}

.hero-widget-area .btn-secondary,
.hero-widget-area .btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.hero-widget-area .btn-outline a{
  color: var(--text-light);
}

.hero-widget-area .btn-secondary:hover,
.hero-widget-area .btn-outline:hover {
  background: var(--text-light);
  color: var(--text-dark);
}

.hero-widget-area .btn-outline:hover a{
  color: var(--text-dark);
}

.hero-widget-area .btn-tertiary {
  background: transparent;
  color: var(--text-light);
  border: none;
}
.hero-widget-area .btn-tertiary:hover {
  color: var(--primary-color);
}

/* Hero Content Styling */
.hero-content {
  text-align: left;
  max-width: 800px;
  margin: 0;
}

.hero-content h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-md);
  line-height: 1.1;
}

.hero-content p {
  font-size: var(--font-size-paragraph);
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
}

/* Hero Layouts */
.hero-layout-centered{flex-direction: column;}
.hero-layout-centered .hero-centered {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--size-3xl);
  align-items: center;
}

.hero-layout-centered > .container{
  text-align: center;
}

.hero-layout-centered .hero-centered .hero-content{
  max-width: inherit;
}

.hero-layout-centered .hero-media {
  display: flex;
  justify-content: center;
}
.hero-layout-centered .hero-media img {
  max-width: 100%;
  height: auto;
}

.hero-layout-split .hero-split {
  display: flex;
  align-items: center;
  gap: var(--size-5xl);
}
.hero-layout-split .hero-text,
.hero-layout-split .hero-media {
  flex: 1 1 0;
}
.hero-layout-split.reverse .hero-text { order: 2; }
.hero-layout-split.reverse .hero-media { order: 1; }

.hero-layout-split .hero-media img {
  width: 100%;
  height: auto;
}

/* Box inside hero */
.hero-centered .wp-block-group{
  padding: var(--size-4xl);
  border-radius: var(--border-radius);
  border: 2px solid var(--color-bege);
  background-color: var(--color-preto);
  background-image: linear-gradient(-45deg, var(--color-preto) 20%, rgba(232,218,178,0.3) 50%,var(--color-preto) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero-layout-centered .wp-block-group:before {
  position: absolute;
  content: "";
  background-image: url(assets/img/circle-pretux-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  pointer-events: none;
}

/* Responsive adjustments for split layout */
@media (max-width: 720px) {
  .hero-layout-split .hero-split {
    flex-direction: column;
    gap: var(--size-3xl);
  }
  .hero-layout-split.reverse .hero-text,
  .hero-layout-split.reverse .hero-media { order: initial; }
}

/* Responsive adjustments for Hero */
@media (max-width: 720px) {
  .hero-widget-area {
    padding: var(--size-4xl) 0;
    min-height: 50vh;
  }
  
  .hero-widget-area::before,
  .hero-widget-area::after {
    width: 200px;
    height: 200px;
    opacity: 0.6;
  }
  
  .hero-layout-centered .hero-centered .hero-content{
    max-width: none;
  }

  .hero-centered .wp-block-group{
    padding: var(--size-2xl);
  }

  .hero-centered .wp-block-group__inner-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .hero-centered .wp-block-group__inner-container .wp-block-buttons{
    flex-direction: column;
  }

  .hero-centered .wp-block-group__inner-container .wp-block-buttons .wp-block-button{
    width: 100%;
  }


}

/* Buttons (Design System) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 1rem;
  line-height: 1.219;
  text-decoration: none;
  cursor: pointer;
  border: none;
  min-width: 256px;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

@media (max-width: 720px) {
  .btn{width: 100% }	
}

/* Garantir que links .btn nunca tenham sublinhado */
a{
  color: var(--color-blue-800);
}

a.btn { 
  text-decoration: none !important; 
  display: inline-flex;
  padding: var(--size-lg) var(--size-4xl);
}

a.btn:hover, a.btn:focus, a.btn:visited { 
  text-decoration: none !important; 
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.btn:focus-visible {
  outline: 2px solid var(--primary-color);
  box-shadow: var(--shadow-glow);
}

/* Primary */
.btn-primary, .wpcf7 .wpcf7-submit {
  background: var(--primary-color);
  color: var(--text-dark);
}
.btn-primary:hover , .wpcf7 .wpcf7-submit:hover{
  background: var(--primary-color);
}

/* Secondary (Outline style) */
.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-dark);
}

.btn-secondary{
  background: var(--btn-white);
  color: var(--btn-text-black);
  border: 2px solid var(--btn-border-bege);
}
.btn-secondary:hover{
}

.btn-secondary:active,
.btn-outline:active {
  transform: translateY(0);
  box-shadow: var(--shadow);
}

/* Tertiary (Text button) */
.btn-tertiary {
  background: transparent;
  color: var(--primary-color);
  padding: var(--size-sm) var(--size-md);
}
.btn-tertiary:hover {
  color: var(--accent-color);
  text-decoration: none;
}
.btn-tertiary:active {
  color: var(--primary-color);
  text-decoration: none;
}
.banner-hero .hero-banner-widget-container 
.hero-banner-widget .qcld_hero_content_area{
  width: 60% !important;
}

.banner-hero .hero-banner-widget-container 
.hero-banner-widget .qcld_hero_content_area .slider-x-item-title{
  width: 100% !important;
  max-width: inherit;
}

/* Services Section */
.services {
  padding: 4rem 0;
  background-color: var(--color-bg-light);
}

.services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text-dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.service-item {
  background-color: var(--color-white);
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
}

.service-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-text-dark);
}

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

/* Results Section */
.results {
  padding: 4rem 0;
  background-color: var(--color-bg-light);
  text-align: center;
}

.results h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--color-text-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
}

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

.result-photo {
  width: 100%;
  height: 12rem;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

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

/* Mission Section */
.mission {
  padding: 4rem 0;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
}

.mission-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mission-image {
  flex: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mission-image img {
  width: 100%;
  height: auto;
  display: block;
}

.mission-text {
  flex: 1;
}

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

.mission p {
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
}

/* Companies Section */
.companies {
  padding: var(--spacing-xl) 0;
  background: var(--background-dark);
  text-align: center;
}

.companies h3 {
  margin-bottom: var(--spacing-lg);
  color: var(--text-muted);
}

.companies-slider {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  overflow: hidden;
}

.company-logo {
  flex: 0 0 150px;
  height: 60px;
  background: white;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.company-logo:hover {
  opacity: 1;
}

/* Contact Form */
.contact-form {
  padding: var(--spacing-xxl) 0;
  background: var(--background-dark);
}

.contact-content {
  display: flex;
  gap: var(--spacing-xxl);
}

.contact-info {
  flex: 1;
}

.contact-form-container {
  flex: 2;
}

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

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  color: var(--form-label);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--spacing-sm);
  border: 2px solid var(--form-border);
  border-radius: var(--border-radius-lg);
  background: var(--form-background);
  color: var(--form-text);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

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

/* Footer */
.site-footer {
  background: var(--color-preto);
  color: var(--text-light);
  padding: var(--spacing-xl);
  border-top: 1px solid var(--color-mago-brown);
}

.footer-content {
  display: flex;
  flex-direction: row;
  gap: var(--spacing-xxl);
  align-items: start;
  justify-content: space-between;
}

@media (max-width: 720px) {
  .footer-content { flex-direction: column; }
}

.footer-left, .footer-right {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

/* Contact Form 7 — PretUX Design System */
.wpcf7 {
  --cf7-label: var(--text-light, #fff);
  --cf7-bg: rgba(255,255,255,0.06);
  --cf7-border: rgba(255,255,255,0.18);
  --cf7-text: var(--text-light, #fff);
  --cf7-placeholder: rgba(255,255,255,0.55);
  --cf7-focus: var(--color-mango-brown, #E38B29);
  --cf7-accent: var(--color-bege, #E8DAB2);
  --cf7-error: #ff6b6b;
}

/* Layout base */
.wpcf7 form.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.wpcf7 form.wpcf7-form p {
  margin: 0;
}

/* Rótulos */
.wpcf7 form.wpcf7-form label {
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
  width: 100%;
}

.wpcf7 form.wpcf7-form label input,.wpcf7 form.wpcf7-form label textarea{
  width: 100%;
}

/* Campos */
.wpcf7 .wpcf7-form-control,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid var(--cf7-border);
  border-radius: var(--border-radius);
  background: var(--cf7-bg);
  color: var(--cf7-text);
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, transform .2s ease;
  box-shadow: none;
  max-height: 128px;
}
.wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
}
.wpcf7 ::placeholder {
  color: var(--cf7-placeholder);
}
.wpcf7 .wpcf7-form-control:focus,
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--cf7-focus);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--cf7-focus) 25%, transparent);
  transform: translateY(-1px);
}
.wpcf7 .wpcf7-form-control:focus-visible {
  outline: none;
}

/* Checkboxes e radios (mínimo) */
.wpcf7 input[type="checkbox"],
.wpcf7 input[type="radio"] {
  accent-color: var(--cf7-focus);
}

.wpcf7 .wpcf7-submit:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}
.wpcf7 .wpcf7-submit:active {
  transform: translateY(0);
}

/* Mensagens e estados */
.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  color: var(--cf7-error);
  font-size: 0.875rem;
}
.wpcf7 .wpcf7-response-output {
  margin: var(--spacing-sm) 0 0;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-lg, 12px);
  border: 1px solid var(--cf7-border);
  background: rgba(255,255,255,0.06);
  color: var(--cf7-text);
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: color-mix(in oklab, var(--cf7-focus) 65%, white 35%);
}
.wpcf7 form.invalid .wpcf7-response-output {
  border-color: var(--cf7-error);
}

/* Loader */
.wpcf7 .ajax-loader {
  display: inline-block;
  margin-left: var(--spacing-xs, 8px);
}

/* Grid utilitário opcional — use no CF7: wrap em <div class="pretux-grid pretux-cols-2"> */
.wpcf7 .pretux-grid {
  display: grid;
  gap: var(--spacing-sm);
}
.wpcf7 .pretux-cols-2 { grid-template-columns: repeat(2, 1fr); }
.wpcf7 .pretux-cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) {
  .wpcf7 .pretux-cols-2,
  .wpcf7 .pretux-cols-3 { grid-template-columns: 1fr; }
}

/* Ajustes específicos para rodapé escuro */
.site-footer .wpcf7 {
  --cf7-bg: rgba(255,255,255,0.06);
  --cf7-border: rgba(255,255,255,0.18);
  --cf7-text: var(--text-light, #fff);
  --cf7-label: var(--text-light, #fff);
}

.footer-brand h4 {
  color: var(--text-light);
  margin-bottom: var(--spacing-xs);
}
.footer-brand p {
  color: var(--text-light);
  opacity: 0.9;
}

.footer-menu .footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu .footer-nav a {
  color: var(--text-light);
  opacity: 0.9;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
.footer-menu .footer-nav a:hover {
  color: var(--text-light);
  opacity: 1;
}

.footer-social .social-links {
  display: flex;
  gap: var(--spacing-sm);
}

.footer-social .social-links a{
  color: var(--text-light);
  opacity: 0.9;
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
.footer-social .social-links a:hover {
  color: var(--text-light);
  opacity: 1;
}

.footer-widget-placeholder {
  color: var(--text-light);
  opacity: 0.8;
}
.footer-right .widget-title {
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}

.footer-bottom {
  margin-top: var(--spacing-lg);
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: var(--spacing-sm);
  text-align: center;
  color: var(--text-light);
  opacity: 0.9;
}

.check-mobile-menu-toggle {
  visibility: hidden;
  position: absolute;
}

@media (max-width: 720px) {
  .footer-content { grid-template-columns: 1fr; }
  .footer-right { order: 2; }
}

/* Responsive Design */
@media (max-width: 720px) {
  .photo-mosaic {
    grid-template-columns: repeat(4, 1fr);
    max-width: 400px;
    margin: 0 auto;
  }
  
  .mission-content {
    flex-direction: column;
  }
  
  .contact-content {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .mobile-menu-toggle {
    display: block;
  }


.check-mobile-menu-toggle:checked + .navigation {
    display: block;
  }
  
  .navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(43, 43, 43, 0.98);
    backdrop-filter: blur(10px);
  }
  
  .navigation.active {
    display: block;
  }
  
  .navigation ul {
    flex-direction: column;
    padding: var(--spacing-md);
    gap: var(--spacing-md);
  }
  
  .photo-mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 60px);
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .profiles-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

@keyframes glow {
  0% { box-shadow: 0 0 5px rgba(232, 218, 178, 0.3); }
  50% { box-shadow: 0 0 20px rgba(232, 218, 178, 0.6); }
  100% { box-shadow: 0 0 5px rgba(232, 218, 178, 0.3); }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease forwards;
}

.glow-effect {
  animation: glow 2s infinite;
}

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

/* Effect Classes */
.card-hover {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.border-glow {
  position: relative;
}

.border-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--primary-color);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.border-glow:hover::after {
  opacity: 1;
}

.backdrop-blur {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

/* Citations Section - versão banner escuro com gradiente e múltiplas colunas */
.box-citations{
  padding: var(--spacing-xl);
  background-image: url(assets/img/bg_gradient-black.png);
  background-size: cover;
  background-position: center;
  color: var(--color-branco);
  border-radius: var(--border-radius-lg);
}

.box-citations .container { gap: var(--size-3xl); }

.box-citations .citations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--size-3xl);
}
.box-citations .citations-grid .citation-item .citation-text .highlight, .citation-text .highlight{
  color: var(--accent-color);
  font-weight: var(--font-weight-bold);
}
.box-citations .citations-grid .citation-item .citation-source{
  color: var(--text-muted);
  font-size: 0.875rem;
}

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


/* Map box */
.map-box {
  gap: var(--spacing-xxl);
}

.map-box > figure, .map-box > p{
  flex: 1;
}

.map-box .highlight{
  color: var(--accent-color);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-h2);
}

.text-image-box{
  flex-direction: row;
  align-items: center;
  justify-content: end;
  font-size: var(--font-size-h3);
  gap: var(--spacing-lg);
}
.text-image-box strong{
  font-size: var(--font-size-h2);
  color: var(--accent-color);
  font-weight: var(--font-weight-bold);
}

@media (max-width: 720px) {
  .map-box,.text-image-box {flex-direction: column}
}
/* Founders Gallery */
.founders-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
  justify-content: center; /* centraliza os cards no desktop */
}

.founder-card {
  background: var(--color-preto);
  color: var(--text-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 1 1 280px; /* responsivo: cresce e quebra em colunas */
  max-width: 270px;
}

.founder-card .founder-media {
  aspect-ratio: 4 / 5; /* proporção semelhante ao design */
  width: 100%;
  overflow: hidden;
}

.founder-card .founder-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  display: block;
}

.founder-card .founder-info {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.founder-card .founder-name {
  font-size: var(--font-size-h5);
  color: var(--text-light);
  margin: 0;
}

.founder-card .founder-link {
  font-size: var(--font-size-caption);
  color: var(--primary-color);
  text-decoration: none;
}

.founder-card .founder-link:hover {
  color: var(--accent-color);
}

/* Badge com estilo de botão secundário (outline) */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--size-md) var(--size-3xl);
  border-radius: var(--border-radius);
  font-size: var(--font-size-paragraph);
  line-height: 1.2;
}

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

/* Variante opcional preenchida, se preferir igual ao exemplo visual */
.badge-secondary.is-fill {
  background: var(--primary-color);
  color: var(--text-dark);
}

@media (max-width: 720px) {
  .founders-grid { gap: var(--spacing-md); }
  .founder-card { flex: 1 1 100%; max-width: none; }
}

/* Gutenberg Buttons Override - ensure theme button styles prevail */
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  align-items: center;
}
.wp-block-buttons.is-content-justification-center { justify-content: center; }
.wp-block-buttons.is-content-justification-right { justify-content: flex-end; }
.wp-block-buttons.is-content-justification-left { justify-content: flex-start; }

.wp-block-button { margin: 0; }

/* Base button reset + theme mapping */
.wp-block-button__link,
.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: var(--size-lg) var(--size-4xl);
  border-radius: var(--border-radius);
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: 1rem;
  line-height: 1.219;
  text-decoration: none !important;
  cursor: pointer;
  border: none !important;
  background: transparent !important;
  color: inherit;
  box-shadow: none;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

.btn-outline .wp-block-button__link,
.btn-outline .wp-element-button {
  color: var(--text-light);
}

.wp-block-button__link:hover,
.wp-element-button:hover {
  box-shadow: none;
}
.wp-block-button__link:active,
.wp-element-button:active {
  box-shadow: none;
}
.wp-block-button__link:focus-visible,
.wp-element-button:focus-visible {
  outline: 2px solid var(--primary-color);
  box-shadow: none;
}
.wp-block-button__link:disabled,
.wp-element-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Outline style -> btn-secondary */
.wp-block-button.is-style-outline .wp-block-button__link,
.wp-block-button__link.is-style-outline,
.wp-element-button.is-style-outline {
  background: transparent !important;
  color: var(--primary-color) !important;
  border: 2px solid var(--primary-color) !important;
  box-shadow: none;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover,
.wp-block-button__link.is-style-outline:hover,
.wp-element-button.is-style-outline:hover {
  background: var(--primary-color) !important;
  color: var(--text-dark) !important;
  box-shadow: none;
  transform: translateY(-1px);
}

/* Plain style -> text button */
.wp-block-button.is-style-plain .wp-block-button__link,
.wp-block-button__link.is-style-plain,
.wp-element-button.is-style-plain {
  background: transparent !important;
  color: var(--primary-color) !important;
  padding: var(--size-sm) var(--size-md);
}
.wp-block-button.is-style-plain .wp-block-button__link:hover,
.wp-block-button__link.is-style-plain:hover,
.wp-element-button.is-style-plain:hover {
  color: var(--accent-color) !important;
}

/* Remove underlines and visited color overrides */
a.wp-block-button__link,
a.wp-block-button__link:hover,
a.wp-block-button__link:visited {
  text-decoration: none !important;
}

/* Professionals Mosaic */
.professionals-mosaic {
  padding: var(--spacing-lg) 0;
}

.mosaic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.mosaic-item {
  position: relative;
  flex: 0 0 calc(100% / 8);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.mosaic-img, .mosaic-item img {
  display: block;
  width: 100%;
  height: 100%;
}
.mosaic-item img {
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.2s ease;
}
.mosaic-item:hover img,
.mosaic-item:focus-visible img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

/* Responsividade: reduz colunas em telas menores */
@media (max-width: 720px) {
  .mosaic-item { flex: 0 0 calc(100% / 6); }
}
@media (max-width: 720px) {
  .mosaic-item { flex: 0 0 calc(100% / 5); }
}
@media (max-width: 720px) {
  .mosaic-item { flex: 0 0 calc(100% / 4); }
}
@media (max-width: 720px) {
  .mosaic-item { flex: 0 0 calc(100% / 3); }
}

/* Professional Profile Styles - Design System Classes */
.hero-professional {
  height: 70vh;
  background: linear-gradient(135deg, var(--color-preto) 0%, var(--background-darker) 100%);
}

.hero-professional-archive {
  height: 60vh;
  background: linear-gradient(135deg, var(--color-preto) 0%, var(--background-darker) 100%);
}

.hero-content-professional {
  flex-direction: column;
  text-align: center;
  gap: var(--spacing-lg);
}

.profile-avatar-large {
  width: 200px;
  height: 200px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

.profile-avatar-small {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.profile-title {
  margin-bottom: var(--spacing-xs);
}

.profile-role-highlight {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: var(--spacing-xs);
  font-weight: var(--font-weight-medium);
}

.profile-meta-row {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.profile-location {
  color: var(--text-muted);
}

.profile-seniority {
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
}

.profile-social {
  margin-top: var(--spacing-lg);
  justify-content: center;
}

.profile-expertise-section {
  padding: var(--spacing-lg) 0;
  background: var(--primary-color);
  text-align: center;
}

.profile-expertise {
  justify-content: center;
}

.expertise-tag {
  background: rgba(0,0,0,0.2);
  color: var(--text-dark);
}

.profile-content-section {
  padding: var(--size-6xl) 0;
  background: var(--background-light);
  color: var(--text-dark);
}

.profile-content-main {
  max-width: 800px;
}

.profile-content-card {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
  padding: var(--spacing-lg);
  background: var(--color-branco);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.profile-about-card {
  background: var(--color-branco);
  padding: var(--size-5xl);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.profile-sidebar {
  max-width: 350px;
}

.profile-info-card {
  background: var(--color-branco);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.profile-info-item {
  margin-bottom: var(--spacing-sm);
}

.profile-info-label {
  color: var(--text-dark);
  font-weight: var(--font-weight-medium);
}

.profile-info-value {
  color: var(--text-muted);
}

.profile-info-value-highlight {
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
}

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

.profile-specialties-list {
  margin-top: var(--spacing-xs);
}

.specialty-tag {
  display: inline-block;
  background: var(--primary-color);
  color: var(--color-branco);
  padding: var(--size-xs) var(--size-md);
  border-radius: 12px;
  font-size: var(--font-size-caption);
  margin: var(--size-xs) var(--size-xs) var(--size-xs) 0;
}

.btn-full-width {
  width: 100%;
  justify-content: center;
  text-decoration: none;
}

.related-professionals-section {
  padding: var(--size-6xl) 0;
  background: var(--background-dark);
}

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

.profile-card-small {
  text-align: center;
}

.profile-card-small h4 a {
  color: inherit;
  text-decoration: none;
}

.profile-role-small {
  font-size: 0.9rem;
}

.btn-small {
  margin-top: var(--spacing-sm);
  font-size: 0.9rem;
  padding: var(--spacing-xs) var(--spacing-sm);
}

.section-cta-center {
  margin-top: var(--size-5xl);
  text-align: center;
}

/* Blog Styles */
.blog-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-category-tag {
  display: inline-block;
  margin-bottom: var(--spacing-sm);
}

.blog-title-large {
  max-width: 800px;
  margin: 0 auto;
}

.blog-meta-row {
  margin-top: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  color: var(--text-muted);
}

.blog-content-section {
  padding: var(--size-6xl) 0;
  background: var(--background-light);
  color: var(--text-dark);
}

.blog-content-main {
  max-width: 800px;
}

.blog-article-card {
  background: var(--color-branco);
  padding: var(--size-5xl);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.blog-tags-section {
  margin-top: var(--size-5xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid #E9ECEF;
}

.blog-tags-list {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

.blog-tag {
  background: var(--primary-color);
  color: var(--color-branco);
  padding: var(--size-xs) var(--size-md);
  border-radius: 12px;
  font-size: var(--font-size-caption);
  text-decoration: none;
}

.blog-sidebar {
  max-width: 350px;
}

.blog-sidebar-sticky {
  position: sticky;
  top: 100px;
}

.blog-sidebar-card {
  background: var(--color-branco);
  padding: var(--spacing-xl);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: var(--spacing-lg);
}

.blog-share-buttons {
  display: flex;
  gap: var(--spacing-xs);
}

.blog-related-post {
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid #E9ECEF;
}

.blog-related-title a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.4;
}

.blog-related-meta {
  color: var(--text-muted);
  font-size: var(--font-size-caption);
  margin: 0;
}

.blog-navigation-section {
  padding: var(--spacing-lg) 0;
  background: var(--background-dark);
  border-top: 1px solid #21262D;
}

.blog-navigation-row {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-lg);
}

.blog-nav-item {
  flex: 1;
}

.blog-nav-item-right {
  flex: 1;
  text-align: right;
}

.blog-nav-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--text-light);
  text-decoration: none;
  padding: var(--spacing-sm);
  background: var(--secondary-color);
  border-radius: var(--border-radius);
  transition: background 0.3s;
}

.blog-nav-link-right {
  justify-content: flex-end;
}

.blog-nav-arrow {
  font-size: 1.5rem;
}

.blog-nav-content {
  text-align: right;
}

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

.blog-nav-title {
  font-weight: var(--font-weight-medium);
}

/* About Page Styles */
.about-content-section {
  padding: var(--size-6xl) 0;
  background: var(--background-light);
  color: var(--secondary-color);
}

.about-image {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

.values-section {
  padding: var(--size-6xl) 0;
  background: var(--background-dark);
}

.service-item-dark {
  background: var(--secondary-color);
  color: var(--text-light);
}

.staff-section {
  padding: var(--size-6xl) 0;
  background: var(--background-light);
  color: var(--secondary-color);
}

.profile-card-white {
  background: var(--color-branco);
  box-shadow: var(--shadow);
}

.profile-name {
  color: var(--secondary-color);
}

.profile-description {
  color: #7F8C8D;
  margin-bottom: var(--spacing-sm);
}

.volunteers-section {
  padding: var(--size-6xl) 0;
  background: var(--background-dark);
}

.volunteers-description {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.cta-section {
  padding: var(--size-6xl) 0;
  background: var(--primary-color);
  color: var(--text-dark);
  text-align: center;
}

.cta-title {
  color: var(--text-dark);
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.btn-dark {
  background: var(--text-dark);
  color: var(--color-branco);
}

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

/* Landing Page Styles */
.hero-widget-min-height {
  min-height: 80vh;
}

.landing-content-section {
  padding: var(--size-6xl) 0;
  background: var(--background-light);
  color: var(--text-dark);
}

.landing-content-main {
  max-width: 800px;
  margin: 0 auto;
}

.landing-content-card {
  background: var(--color-branco);
  padding: var(--size-5xl);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.landing-services-section {
  padding: var(--size-6xl) 0;
  background: var(--background-dark);
}

.container .bg-black {
  padding: var(--spacing-xl) 0;
}

.testimonials-section {
  padding: var(--size-6xl) 0;
  color: var(--text-dark);
}

@media (max-width: 720px) {
  .testimonials-section{ padding: var(--spacing-sm); }
}

.testimonial-card {
  background: var(--color-branco);
  padding: var(--spacing-lg);
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto var(--spacing-sm);
  border: 3px solid var(--primary-color);
}

.testimonial-quote {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--spacing-sm);
}

.testimonial-author {
  color: var(--text-dark);
}

/* Testimonials Showcase (dark aesthetic) */
.testimonials-showcase-section {
  position: relative;
  padding: var(--size-6xl);
  color: var(--text-light);
}
.testimonials-showcase-section::before,
.testimonials-showcase-section::after {
  content: '“';
  position: absolute;
  font-family: var(--font-body);
  font-weight: var(--font-weight-bold);
  color: var(--text-muted);
  font-size: clamp(4rem, 12vw, 12rem);
  line-height: 1;
}
.testimonials-showcase-section::before { left: 1rem; top: 0.5rem; }
.testimonials-showcase-section::after { right: 1rem; bottom: 0.5rem; transform: scaleX(-1); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--spacing-lg);
}
@media (max-width: 720px) {
  .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .testimonials-showcase-section { padding: var(--spacing-sm); }
}

.testimonial-card-dark {
  background: var(--secondary-color);
  color: var(--text-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: var(--spacing-lg);
}
.testimonial-quote-text {
  color: var(--color-branco);
  opacity: 0.9;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-sm);
}
.testimonial-card-dark .testimonial-author {
  color: var(--text-light);
  opacity: 0.9;
}

.newsletter-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form-dark {
  background: var(--secondary-color);
  padding: var(--size-5xl);
  border-radius: 12px;
}

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

.form-textarea-dark {
  width: 100%;
  padding: var(--spacing-sm);
  border: 2px solid #34495E;
  border-radius: var(--border-radius);
  background: var(--secondary-color);
  color: var(--text-light);
  font-size: 1rem;
}

.form-checkbox-group {
  margin-bottom: var(--spacing-lg);
}

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

.btn-min-width {
  min-width: 200px;
}

/* Archive Professional Styles */
.category-filter {
  margin-top: var(--spacing-lg);
}

.filter-buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.professionals-archive-section {
  padding: var(--size-6xl) 0;
  background: var(--background-dark);
}

.profile-link {
  color: inherit;
  text-decoration: none;
}

.profile-seniority-highlight {
  color: var(--primary-color);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
}

.profile-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: var(--spacing-sm) 0;
}

.empty-state {
  text-align: center;
  padding: var(--size-6xl) 0;
}

.empty-state-text {
  color: var(--text-muted);
}

.gallery-cta-section {
  padding: var(--size-6xl) 0;
  background: var(--primary-color);
  color: var(--text-dark);
  text-align: center;
}

.gallery-cta-title {
  color: var(--text-dark);
}

.gallery-cta-description {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
}

/* Blog Page Styles */
.blog-newsletter-section {
  padding: var(--size-6xl) 0;
  background: var(--primary-color);
  color: var(--text-dark);
  text-align: center;
}

.blog-newsletter-title {
  color: var(--text-dark);
}

.blog-newsletter-description {
  font-size: 1.1rem;
  margin-bottom: var(--spacing-lg);
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form-flex {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: var(--spacing-sm);
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  background: var(--color-branco);
  color: var(--text-dark);
}

.btn-newsletter {
  background: var(--text-dark);
  color: var(--color-branco);
  white-space: nowrap;
}

/* Help Cards Section (Como Ajudar) */
.help-cards-section {
  padding: var(--spacing-section) 0;
}

.help-cards-section .container {
  gap: var(--size-3xl);
}

.help-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--size-3xl);
}

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

.help-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: var(--size-2xl);
  overflow: hidden;
}

.help-card-header,.help-card-body, .help-card-footer { padding: var(--size-3xl); }

.help-card-header { 
  display: flex; flex-direction: column; gap: var(--size-lg); 
  border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}
.help-card:hover .help-card-header { background-image: linear-gradient(0deg, #827a64 0%, #E8dab2 100%) }

.help-card-title { 
  font-size: var(--font-size-h3); font-weight: var(--font-weight-bold); color: var(--color-text-dark); 
}
.help-card-subtitle { color: var(--color-text-dark); opacity: 0.85; }
.help-card-divider { display: block; height: 2px; background: var(--color-bege); border-radius: 2px; }

.help-card-body { display: flex; flex-direction: column; gap: var(--size-lg); }
.help-card-body p { margin: 0; }
.help-card-body p strong { display: block; font-weight: var(--font-weight-bold); color: var(--color-text-dark); }
.help-card-body p em, .help-card-body p small { display: block; color: var(--color-text-muted); font-size: 0.95rem; font-style: normal; }

.help-card-footer { margin-top: auto; }
.help-card-footer .btn { width: 100%; padding: var(--size-lg) var(--size-3xl); border-radius: var(--border-radius); }
.help-card-footer .btn-primary { background: var(--color-bege); color: var(--color-preto); }
.help-card-footer .btn-primary:hover { box-shadow: var(--shadow); transform: translateY(-1px); }