/* ==========================================================================
   STYLE GUIDE & DESIGN SYSTEM
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,700&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-color: #0F1720;
  --surface-color: #16202B;
  --card-color: #1D2935;
  --text-color: #F5F7FA;
  --text-secondary: #B6C2CF;
  --accent-primary: #0F8B6D;
  --accent-secondary: #18B58A;
  --accent-light: #D9E3E8;
  --border-color: #2E3A47;
  --gradient: linear-gradient(135deg, #0F1720 0%, #124734 50%, #18B58A 100%);
  
  /* Typography */
  --font-title: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --container-width: 1200px;
  --header-height: 80px;
  
  /* Animation */
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.4);
}

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

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

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--accent-primary);
}

h2.center::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin-bottom: 1rem;
}

p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-weight: 300;
  font-size: 1.05rem;
}

strong {
  font-weight: 600;
  color: var(--text-color);
}

/* ==========================================================================
   LAYOUT CONTAINERS & UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.section-bg {
  background-color: var(--surface-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.grid {
  display: grid;
  gap: 2rem;
}

.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(220px, 1fr)); }

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

.accent-text {
  color: var(--accent-secondary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: var(--text-color);
}

.btn-primary:hover {
  background-color: var(--accent-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(24, 181, 138, 0.2);
}

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

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--text-color);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--gradient);
  color: var(--text-color);
  border: none;
  box-shadow: 0 4px 15px rgba(18, 71, 52, 0.3);
}

.btn-accent:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 181, 138, 0.4);
}

/* ==========================================================================
   GLOBAL COMPONENT: HEADER / NAVBAR
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(15, 23, 32, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  height: 70px;
  background-color: rgba(15, 23, 32, 0.95);
  box-shadow: var(--shadow-sm);
}

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

.logo-link {
  display: flex;
  align-items: center;
  height: 50px;
}

.logo-img {
  height: 100%;
  width: auto;
}

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

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1010;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-color);
  margin: 5px 0;
  transition: var(--transition);
}

/* ==========================================================================
   GLOBAL COMPONENT: FOOTER
   ========================================================================== */
.footer {
  background-color: #090E14;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem 0;
  font-size: 0.9rem;
}

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

.footer-col-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 50px;
  align-self: flex-start;
}

.footer-col-title {
  font-size: 1.1rem;
  color: var(--text-color);
  font-family: var(--font-title);
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}

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

.footer-links a {
  color: var(--text-secondary);
}

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

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-secondary);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-list svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  fill: var(--accent-secondary);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: rgba(182, 194, 207, 0.6);
  font-size: 0.8rem;
}

.footer-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-legal-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal-bar a {
  color: rgba(182, 194, 207, 0.6);
}

.footer-legal-bar a:hover {
  color: var(--accent-secondary);
}

.footer-disclaimer {
  line-height: 1.5;
  border-top: 1px solid rgba(46, 58, 71, 0.5);
  padding-top: 1.5rem;
}

/* ==========================================================================
   GLOBAL COMPONENT: FLOATING WHATSAPP & BACK TO TOP
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.6);
}

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

.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.5;
  z-index: -1;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { opacity: 0.3; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ==========================================================================
   GLOBAL COMPONENT: LGPD COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 10000;
  display: none;
  flex-direction: column;
  gap: 1rem;
  animation: slide-up 0.4s ease-out;
}

@keyframes slide-up {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
}

.cookie-text {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.cookie-text a {
  color: var(--accent-secondary);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-accept {
  background-color: var(--accent-primary);
  color: var(--text-color);
  border: none;
}

.cookie-accept:hover {
  background-color: var(--accent-secondary);
}

.cookie-decline {
  background-color: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.cookie-decline:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-color);
}

/* ==========================================================================
   HOMEPAGE / GENERAL UI SECTIONS
   ========================================================================== */

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: radial-gradient(circle at 80% 20%, rgba(18, 71, 52, 0.15) 0%, rgba(15, 23, 32, 0) 60%), var(--bg-color);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 80%, rgba(24, 181, 138, 0.08) 0%, rgba(15, 23, 32, 0) 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
}

.hero-content {
  z-index: 10;
  animation: fade-in-left 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  margin-bottom: 2rem;
}

.hero-title span {
  display: block;
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-img-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  animation: fade-in-right 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.hero-img-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 32, 0.2), rgba(15, 23, 32, 0.8));
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero-img-container:hover .hero-image {
  transform: scale(1.05);
}

@keyframes fade-in-left {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fade-in-right {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* Values Grid */
.val-card {
  background-color: var(--card-color);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

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

.val-icon {
  width: 48px;
  height: 48px;
  fill: var(--accent-secondary);
}

.val-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
}

/* Practice Areas Grid */
.practice-card {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.practice-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.practice-img-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, transparent 60%, rgba(22, 32, 43, 0.9));
}

.practice-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 3s ease;
}

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

.practice-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.practice-card-title {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.practice-card-text {
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.practice-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-top: auto;
}

.practice-link:hover {
  color: var(--text-color);
}

.practice-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: var(--transition);
}

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

/* Profiles Section */
.profile-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.profile-avatar-wrap {
  width: 100%;
  height: 350px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.profile-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.profile-role {
  color: var(--accent-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.profile-name {
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.profile-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.profile-details span {
  color: var(--text-color);
  font-weight: 600;
}

/* Map & Contact Block on Home */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
}

.map-container {
  border: 1px solid var(--border-color);
  border-radius: 4px;
  overflow: hidden;
  height: 450px;
  box-shadow: var(--shadow-sm);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */
.contact-form {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-color);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-input, .form-textarea {
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  color: var(--text-color);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 4px;
  transition: var(--transition);
  width: 100%;
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 8px rgba(15, 139, 109, 0.25);
}

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

.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  margin-top: 0.5rem;
}

.form-checkbox-group input {
  margin-top: 4px;
  accent-color: var(--accent-primary);
}

.form-checkbox-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.form-checkbox-label a {
  color: var(--accent-secondary);
  text-decoration: underline;
}

/* Form Validation Styling */
.form-input.invalid, .form-textarea.invalid {
  border-color: #E05638;
}

.error-message {
  color: #E05638;
  font-size: 0.8rem;
  margin-top: -0.25rem;
  display: none;
}

.success-overlay {
  display: none;
  text-align: center;
  padding: 2rem 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  animation: fade-in 0.3s ease-out;
}

.success-icon {
  width: 64px;
  height: 64px;
  fill: var(--accent-secondary);
}

/* ==========================================================================
   LANDING PAGE (lp/agendar-consulta.html) SPECIAL STYLING
   ========================================================================== */
.lp-body {
  padding-top: var(--header-height);
}

.lp-header {
  background-color: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.lp-logo-center {
  display: flex;
  justify-content: center;
  height: 60px;
}

.lp-hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}

.lp-badge {
  display: inline-block;
  background-color: rgba(24, 181, 138, 0.1);
  color: var(--accent-secondary);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(24, 181, 138, 0.2);
}

.lp-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.lp-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--text-secondary);
}

.lp-benefits-list svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  fill: var(--accent-secondary);
  margin-top: 2px;
}

/* ==========================================================================
   LEGAL PAGES STYLING (Terms, Privacy, etc.)
   ========================================================================== */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-title {
  margin-bottom: 3rem;
  text-align: center;
}

.legal-meta {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.legal-content h3 {
  margin-top: 2.5rem;
  color: var(--text-color);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(46, 58, 71, 0.4);
  padding-bottom: 0.5rem;
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.legal-content ul, .legal-content ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-content li strong {
  color: var(--text-color);
}

/* ==========================================================================
   404 ERROR PAGE
   ========================================================================== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.error-code {
  font-size: clamp(6rem, 15vw, 10rem);
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.error-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.error-text {
  max-width: 500px;
  margin: 0 auto 2.5rem auto;
}

.error-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumbs-nav {
  padding-top: calc(var(--header-height) + 1.5rem);
  background-color: var(--bg-color);
}

.breadcrumbs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs a {
  color: var(--text-secondary);
}

.breadcrumbs a:hover {
  color: var(--accent-secondary);
}

.breadcrumbs li:not(:last-child)::after {
  content: '/';
  font-size: 0.75rem;
  color: var(--border-color);
}

.breadcrumbs li:last-child {
  color: var(--text-color);
  font-weight: 500;
  pointer-events: none;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (MOBILE FIRST COMPLIANT)
   ========================================================================== */

/* Tablet & Mobile Layouts */
@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }
  
  .header {
    height: var(--header-height);
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(15, 23, 32, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-top: 1px solid var(--border-color);
  }
  
  .nav-menu.open {
    transform: translateX(0);
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-img-container {
    height: 350px;
    order: -1;
  }
  
  /* Profiles */
  .profile-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .profile-avatar-wrap {
    height: 400px;
  }
  
  /* Contact section */
  .contact-section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .map-container {
    height: 350px;
  }
  
  /* LP */
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .lp-hero {
    padding: 2rem 0;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
  
  .profile-avatar-wrap {
    height: 300px;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
  
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 1rem;
  }
  
  .cookie-buttons {
    flex-direction: column-reverse;
    width: 100%;
  }
  
  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}
