:root {
  --color-coral: #FF6B6B;
  --color-teal: #06B6D4;
  --color-purple: #A855F7;
  --color-amber: #F59E0B;
  --color-emerald: #10B981;
  --color-dark: #1a1a2e;
  --color-darker: #0f0f1a;
  --color-light: #f8f9fa;
  --color-text: #2d3748;
  --color-text-light: #718096;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 48px rgba(0,0,0,0.16), 0 8px 20px rgba(0,0,0,0.1);
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 8rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Gabarito', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-light);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Header & Navigation */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) 0;
  position: relative;
}

.logo {
  font-family: 'Gabarito', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: -0.01em;
  z-index: 1001;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  position: relative;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--color-text);
  padding: var(--space-xs) 0;
  letter-spacing: 0.01em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-coral);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-links a:hover {
  color: var(--color-dark);
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-left: var(--space-md);
  padding-left: var(--space-md);
  border-left: 2px solid rgba(0, 0, 0, 0.08);
}

.lang-btn {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-text-light);
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--color-dark);
  background: rgba(0, 0, 0, 0.03);
}

.lang-btn.active {
  color: var(--color-coral);
  background: rgba(255, 107, 107, 0.1);
}

.lang-divider {
  color: rgba(0, 0, 0, 0.2);
  font-weight: 300;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  z-index: 1001;
}

.mobile-menu-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-coral) 0%, #ff8787 100%);
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
  color: white;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-text h1 {
  color: white;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.hero-text .char {
  display: inline-block;
  animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

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

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: white;
  color: var(--color-coral);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15), 0 2px 8px rgba(0,0,0,0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2), 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

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

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 8px 24px rgba(0,0,0,0.2);
}

/* Section Styles */
section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  font-size: 1.125rem;
}

/* Values Section - Teal */
.values-section {
  background: linear-gradient(135deg, var(--color-teal) 0%, #22d3ee 100%);
  color: white;
}

.values-section h2,
.values-section h3 {
  color: white;
}

.values-section p {
  color: rgba(255, 255, 255, 0.9);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.value-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 48px rgba(0,0,0,0.2), 0 8px 20px rgba(0,0,0,0.15);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.value-card h3 {
  margin-bottom: var(--space-sm);
}

/* Services Section - Purple */
.services-section {
  background: linear-gradient(135deg, var(--color-purple) 0%, #c084fc 100%);
  color: white;
}

.services-section h2,
.services-section h3 {
  color: white;
}

.services-section p {
  color: rgba(255, 255, 255, 0.9);
}

.services-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.service-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.service-card:nth-child(1) {
  grid-column: span 5;
}

.service-card:nth-child(2) {
  grid-column: span 7;
}

.service-card:nth-child(3) {
  grid-column: span 7;
}

.service-card:nth-child(4) {
  grid-column: span 5;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 48px rgba(0,0,0,0.2), 0 8px 20px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
  display: block;
}

.service-card h3 {
  margin-bottom: var(--space-sm);
}

/* Checklist Section - Amber */
.checklist-section {
  background: linear-gradient(135deg, var(--color-amber) 0%, #fbbf24 100%);
  color: white;
}

.checklist-section h2 {
  color: white;
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.checklist-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateX(8px);
}

.checklist-icon {
  font-size: 1.5rem;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.checklist-item p {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  margin: 0;
}

/* Dual CTA Section - Emerald */
.dual-cta-section {
  background: linear-gradient(135deg, var(--color-emerald) 0%, #34d399 100%);
  color: white;
}

.dual-cta-section h2 {
  color: white;
}

.dual-cta-section p {
  color: rgba(255, 255, 255, 0.9);
}

.dual-cta-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
  align-items: center;
}

.cta-primary-box {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-primary-box h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.cta-primary-box p {
  font-size: 1.125rem;
  margin-bottom: var(--space-lg);
}

.cta-primary-box .btn {
  background: white;
  color: var(--color-emerald);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cta-primary-box .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.cta-secondary-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary-box h4 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.cta-secondary-box p {
  margin-bottom: var(--space-md);
}

.cta-secondary-box .btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  width: 100%;
  justify-content: center;
}

.cta-secondary-box .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
}

/* Process Section - Light Background */
.process-section {
  background: var(--color-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.process-step {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-purple));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-step:hover::before {
  opacity: 1;
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.step-number {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-coral), var(--color-purple));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: var(--space-md);
}

.process-step h3 {
  margin-bottom: var(--space-sm);
}

/* Specialties Page */
.specialty-hero {
  background: linear-gradient(135deg, var(--color-purple) 0%, #c084fc 100%);
  padding: var(--space-xl) 0;
  color: white;
  text-align: center;
}

.specialty-hero h1 {
  color: white;
  margin-bottom: var(--space-md);
}

.specialty-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.specialty-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.specialty-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.specialty-card:nth-child(1) {
  grid-column: span 8;
}

.specialty-card:nth-child(2) {
  grid-column: span 4;
}

.specialty-card:nth-child(3) {
  grid-column: span 4;
}

.specialty-card:nth-child(4) {
  grid-column: span 8;
}

.specialty-card:nth-child(5) {
  grid-column: span 6;
}

.specialty-card:nth-child(6) {
  grid-column: span 6;
}

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

.specialty-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.specialty-content {
  padding: var(--space-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.specialty-icon {
  font-size: 2rem;
  color: var(--color-purple);
  margin-bottom: var(--space-sm);
}

.specialty-content h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-dark);
}

.specialty-content p {
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.specialty-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.specialty-features li {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.specialty-features li i {
  color: var(--color-emerald);
  font-size: 0.875rem;
}

/* Contact Page */
.contact-hero {
  background: linear-gradient(135deg, var(--color-teal) 0%, #22d3ee 100%);
  padding: var(--space-xl) 0;
  color: white;
  text-align: center;
}

.contact-hero h1 {
  color: white;
  margin-bottom: var(--space-md);
}

.contact-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.contact-info {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info h2 {
  margin-bottom: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding: var(--space-md);
  background: var(--color-light);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(6, 182, 212, 0.08);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-teal), #22d3ee);
  color: white;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-details h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.contact-details p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
}

.contact-details a {
  color: var(--color-teal);
  font-weight: 500;
}

.contact-details a:hover {
  text-decoration: underline;
}

.contact-form-wrapper {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
  margin-bottom: var(--space-lg);
}

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

label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
  font-size: 0.9375rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.privacy-checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.privacy-checkbox label {
  margin: 0;
  font-weight: 400;
  font-size: 0.875rem;
  cursor: pointer;
}

.privacy-checkbox a {
  color: var(--color-teal);
  text-decoration: underline;
}

.btn-submit {
  background: linear-gradient(135deg, var(--color-teal), #22d3ee);
  color: white;
  width: 100%;
  justify-content: center;
  font-size: 1.0625rem;
  padding: 1.125rem 2rem;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.4);
}

.map-container {
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
}

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

/* Assembly Page */
.assembly-hero {
  background: linear-gradient(135deg, var(--color-amber) 0%, #fbbf24 100%);
  padding: var(--space-xl) 0;
  color: white;
  text-align: center;
}

.assembly-hero h1 {
  color: white;
  margin-bottom: var(--space-md);
}

.assembly-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.assembly-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.assembly-main {
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.assembly-main h2 {
  margin-bottom: var(--space-lg);
}

.assembly-main h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-amber);
}

.assembly-main ul {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.assembly-main li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  padding-left: var(--space-md);
  position: relative;
}

.assembly-main li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-amber);
  font-weight: 700;
}

.assembly-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.sidebar-card {
  background: white;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.sidebar-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.sidebar-card h3 {
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

.sidebar-card ul {
  list-style: none;
}

.sidebar-card li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.sidebar-card li i {
  color: var(--color-amber);
  font-size: 0.875rem;
}

.sidebar-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
}

/* Footer */
footer {
  background: var(--color-darker);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--space-2xl);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand {
  max-width: 350px;
}

.footer-logo {
  font-family: 'Gabarito', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: var(--space-md);
  display: block;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.footer-section h4 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-coral);
  transform: translateX(4px);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.footer-contact i {
  color: var(--color-coral);
  width: 20px;
}

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

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

.footer-legal {
  display: flex;
  gap: var(--space-md);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-darker);
  color: white;
  padding: var(--space-md);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.cookie-content p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  flex: 1;
  min-width: 280px;
}

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

.cookie-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--color-coral);
  color: white;
}

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

.cookie-btn-decline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cookie-btn-customize {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

/* Legal Pages */
.legal-hero {
  background: linear-gradient(135deg, var(--color-dark) 0%, #2d3748 100%);
  padding: var(--space-xl) 0;
  color: white;
  text-align: center;
}

.legal-hero h1 {
  color: white;
  margin-bottom: var(--space-sm);
}

.legal-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.legal-content {
  max-width: 900px;
  margin: var(--space-xl) auto;
  background: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.legal-content h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: var(--color-dark);
}

.legal-content h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.legal-content p {
  margin-bottom: var(--space-md);
}

.legal-content ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.legal-content li {
  margin-bottom: var(--space-xs);
  color: var(--color-text-light);
}

.legal-content a {
  color: var(--color-coral);
  text-decoration: underline;
}

/* Thanks Page */
.thanks-hero {
  background: linear-gradient(135deg, var(--color-emerald) 0%, #34d399 100%);
  padding: var(--space-2xl) 0;
  color: white;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-content {
  max-width: 700px;
  margin: 0 auto;
}

.thanks-icon {
  font-size: 5rem;
  margin-bottom: var(--space-lg);
  display: block;
  animation: scaleIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-content h1 {
  color: white;
  margin-bottom: var(--space-md);
}

.thanks-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.25rem;
  margin-bottom: var(--space-lg);
}

.thanks-content .btn {
  background: white;
  color: var(--color-emerald);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.thanks-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .hero-image {
    order: -1;
  }
  
  .services-bento .service-card {
    grid-column: span 6 !important;
  }
  
  .specialty-card {
    grid-column: span 6 !important;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .assembly-content {
    grid-template-columns: 1fr;
  }
  
  .dual-cta-container {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 4rem;
    --space-2xl: 5rem;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 5rem var(--space-lg) var(--space-lg);
    box-shadow: -4px 0 24px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: flex-start;
    gap: var(--space-md);
    z-index: 1000;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .lang-switcher {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    padding-top: var(--space-md);
    border-top: 2px solid rgba(0, 0, 0, 0.08);
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    padding: var(--space-xl) 0 var(--space-lg);
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .services-bento .service-card {
    grid-column: span 12 !important;
  }
  
  .specialty-card {
    grid-column: span 12 !important;
  }
  
  .checklist-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .hero-image img {
    height: 320px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .specialty-image {
    height: 200px;
  }
  
  .map-container {
    height: 320px;
  }
}

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

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

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

.hidden {
  display: none;
}