/* ==========================================================================
   SR SOLDAS E SERRALHERIA - Highly Premium Clean Light Palette Stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  
  /* Modern Premium Clean Light Palette */
  --background: #F8FAFC; /* Crisp Slate-50 */
  --foreground: #0F172A; /* Slate-900 */
  --card: #FFFFFF;
  --card-foreground: #334155; /* Slate-700 */
  --primary: #DE9403; /* Golden Amber Orange (#DE9403) */
  --primary-hover: #B57902;
  --primary-foreground: #FFFFFF;
  --secondary: #F1F5F9; /* Slate-100 */
  --secondary-foreground: #1E293B; /* Slate-800 */
  --muted: #F8FAFC;
  --muted-foreground: #64748B; /* Slate-500 */
  --border: #E2E8F0; /* Slate-200 */
  --input: #FFFFFF;
  --ring: rgba(222, 148, 3, 0.2);
  
  --ember: #DE9403;
  --ember-glow: #F9B115;
  --gradient-ember: linear-gradient(135deg, #DE9403, #F9B115);
  --gradient-bg: radial-gradient(circle at top right, rgba(222, 148, 3, 0.05), transparent 45%),
                 radial-gradient(circle at bottom left, rgba(222, 148, 3, 0.03), transparent 45%);
  --gradient-light-overlay: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.78) 100%);
  
  /* Elegant Soft Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.04), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.06);
  --shadow-ember: 0 10px 20px -5px rgba(222, 148, 3, 0.35);
  --shadow-header: 0 1px 2px 0 rgba(0, 0, 0, 0.03), 0 12px 24px -10px rgba(0, 0, 0, 0.05);
  
  /* Fonts */
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  background-color: var(--background);
  background-image: var(--gradient-bg);
  background-attachment: fixed;
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0F172A;
}

h1 {
  font-size: 2.75rem;
  line-height: 1.15;
}

h2 {
  font-size: 2rem;
  line-height: 1.25;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
}

p {
  color: var(--muted-foreground);
}

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

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

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.grid {
  display: grid;
  gap: 24px;
}

/* Gradients and Utilities */
.text-ember-gradient {
  background: var(--gradient-ember);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-ember-gradient {
  background: var(--gradient-ember);
}

.shadow-ember {
  box-shadow: var(--shadow-ember);
}

.shadow-panel {
  box-shadow: var(--shadow-xl);
}

/* Premium Divider Line replacing the old hatch pattern */
.premium-divider {
  height: 4px;
  width: 60px;
  background: var(--gradient-ember);
  border-radius: 2px;
  margin-bottom: 24px;
}

.premium-divider-center {
  margin: 0 auto 24px auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 14px 30px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(234, 88, 12, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: var(--card);
  color: var(--foreground);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: #FFF7ED; /* Warm orange tint */
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-header);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo img {
  height: 42px;
  width: auto;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-ember);
  transition: width 0.25s ease;
}

.nav-link:hover {
  color: var(--foreground);
}

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

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 60;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--foreground);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

.mobile-nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 55;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav .nav-link {
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 700;
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  background-color: #EEF2F6;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-light-overlay);
}

.hero-content {
  position: relative;
  padding-top: 96px;
  padding-bottom: 96px;
  z-index: 10;
}

.hero-hatch {
  height: 6px;
  width: 80px;
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
  margin-bottom: 16px;
}

.hero-title {
  max-width: 800px;
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-description {
  max-width: 600px;
  font-size: 1.05rem;
  margin-bottom: 40px;
  color: var(--muted-foreground);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Premium Row Stats instead of stack */
.hero-stats {
  margin-top: 80px;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  background-color: var(--card);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(234, 88, 12, 0.3);
}

.stat-card dt {
  font-size: 1.85rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
}

.stat-card dd {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-top: 6px;
  font-weight: 600;
}

/* Section Common Styles */
.section {
  padding-top: 96px;
  padding-bottom: 96px;
  border-bottom: 1px solid var(--border);
}

.section-muted {
  background-color: #F1F5F9; /* Slate-100, cleaner look */
}

.section-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 20px;
}

.section-description {
  max-width: 600px;
  margin-bottom: 56px;
  font-size: 1.05rem;
}

/* Processos Grid (Clean modern layout) */
.processos-grid {
  grid-template-columns: 1fr;
  gap: 24px;
  background-color: transparent;
  border: none;
}

.processos-card {
  background-color: var(--card);
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.processos-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-ember);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.processos-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(234, 88, 12, 0.2);
}

.processos-card:hover::before {
  opacity: 1;
}

.processos-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--foreground);
}

.processos-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Sobre Section */
.sobre-container {
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

.sobre-pilares {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pilar-item {
  display: flex;
  gap: 16px;
}

.pilar-bullet {
  height: 10px;
  width: 10px;
  flex-shrink: 0;
  margin-top: 7px;
  background: var(--gradient-ember);
  border-radius: 50%;
}

.pilar-text {
  font-size: 0.95rem;
  color: var(--card-foreground);
}

.sobre-fotos {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.sobre-foto-1 {
  height: 340px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.3s ease;
}

.sobre-foto-2 {
  height: 340px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-top: 40px;
  transition: transform 0.3s ease;
}

.sobre-foto-1:hover, .sobre-foto-2:hover {
  transform: scale(1.02);
}

/* Servicos Section */
.servicos-grid {
  grid-template-columns: 1fr;
  gap: 24px;
}

.servicos-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.servicos-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background-color: #FFFFFF;
}

.servicos-card svg {
  color: var(--primary);
  width: 36px;
  height: 36px;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.servicos-card:hover svg {
  transform: scale(1.1) rotate(5deg);
}

.servicos-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: var(--foreground);
}

.servicos-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Galeria Section */
.galeria-columns {
  columns: 1;
  column-gap: 20px;
}

.galeria-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.galeria-item img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galeria-item:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(234, 88, 12, 0.2);
}

.galeria-item:hover img {
  transform: scale(1.04);
}

/* Avaliacoes Section */
.avaliacoes-grid {
  grid-template-columns: 1fr;
  gap: 32px;
}

.google-score-card {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.score-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.score-num {
  font-size: 3.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--foreground);
  line-height: 1;
}

.stars-container {
  display: flex;
  gap: 6px;
  color: #FBBF24; /* Warm Gold */
}

.stars-container svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.score-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-foreground);
  margin-top: 6px;
  font-weight: 700;
}

.score-desc {
  font-size: 0.95rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.score-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.map-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background-color: var(--card);
  height: 440px;
  box-shadow: var(--shadow-lg);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contato Section */
.contato-grid {
  grid-template-columns: 1fr;
  gap: 56px;
}

.contato-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}

.info-item {
  display: flex;
  gap: 20px;
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.info-item:hover {
  border-color: rgba(234, 88, 12, 0.2);
  box-shadow: var(--shadow-md);
}

.info-item svg {
  color: var(--primary);
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.info-item h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--foreground);
}

.info-item p, .info-item a {
  font-size: 0.95rem;
  color: var(--muted-foreground);
}

.info-item a:hover {
  color: var(--primary);
}

/* Budget Form */
.orcamento-container {
  max-width: 768px;
  margin: 0 auto;
}

.orcamento-form {
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.form-header h3 {
  font-size: 1.65rem;
  margin-bottom: 8px;
}

.form-header p {
  font-size: 0.95rem;
  margin-bottom: 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--foreground);
  margin-bottom: 10px;
}

.form-control {
  width: 100%;
  border: 1px solid var(--border);
  background-color: #F8FAFC; /* Light gray input background */
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--foreground);
  border-radius: var(--radius-md);
  outline: none;
  transition: all 0.25s ease;
}

.form-control:focus {
  border-color: var(--primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px var(--ring);
}

textarea.form-control {
  resize: vertical;
}

.form-checkbox-label {
  display: flex;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--muted-foreground);
  margin-top: 24px;
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox-label input {
  margin-top: 4px;
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

.form-checkbox-label a {
  font-weight: 600;
  color: var(--primary);
}

.form-checkbox-label a:hover {
  text-decoration: underline;
}

.form-error {
  color: var(--destructive, #EF4444);
  font-size: 0.8rem;
  margin-top: 8px;
  display: none;
  font-weight: 500;
}

.form-error.show {
  display: block;
}

.form-submit-btn {
  margin-top: 32px;
  width: 100%;
  gap: 12px;
  padding: 16px;
}

.form-submit-btn svg {
  width: 22px;
  height: 22px;
}

/* LGPD Consent Banner */
.lgpd-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--border);
  z-index: 60;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.08);
  display: none;
}

.lgpd-banner.show {
  display: block;
}

.lgpd-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}

.lgpd-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.lgpd-text a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
}

.lgpd-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.lgpd-btn-essencial {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: 12px 24px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.lgpd-btn-essencial:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: #FFF7ED;
}

.lgpd-btn-aceitar {
  background: var(--gradient-ember);
  color: var(--primary-foreground);
  padding: 12px 28px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: none;
  box-shadow: var(--shadow-ember);
  transition: all 0.2s ease;
}

.lgpd-btn-aceitar:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(234, 88, 12, 0.4);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25D366;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 10px 30px -10px rgba(37, 211, 102, 0.75);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px -10px rgba(37, 211, 102, 0.9);
}

.whatsapp-float-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: #25D366;
  animation: ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.25;
  z-index: -1;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

/* Footer */
.site-footer {
  background-color: #FFFFFF;
  padding-top: 64px;
  padding-bottom: 64px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-logo img {
  height: 50px;
  width: auto;
}

.footer-desc {
  font-size: 0.95rem;
  margin-top: 20px;
  max-width: 400px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted-foreground);
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  font-size: 0.85rem;
  color: var(--muted-foreground);
}

.footer-bottom a {
  font-weight: 700;
  color: var(--primary);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Toast Messages */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 70;
  background-color: #0F172A;
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.1);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-error {
  border-left: 4px solid #EF4444;
}

.toast-success {
  border-left: 4px solid #10B981;
}

/* Animations */
@keyframes ping {
  75%, 100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Media Queries */
@media (min-width: 640px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  .grid { gap: 32px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .processos-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .sobre-fotos img { height: 400px; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .galeria-columns { columns: 2; column-gap: 20px; }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .form-span-2 { grid-column: span 2; }
  .lgpd-container { flex-direction: row; align-items: center; justify-content: space-between; }
  .lgpd-actions { flex-wrap: nowrap; }
}

@media (min-width: 768px) {
  .nav-menu { display: flex; }
  .menu-toggle { display: none; }
}

@media (min-width: 1024px) {
  h1 { font-size: 4rem; }
  h2 { font-size: 2.75rem; }
  .sobre-container { grid-template-columns: repeat(2, 1fr); gap: 64px; }
  .servicos-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .galeria-columns { columns: 3; }
  .avaliacoes-grid { grid-template-columns: 1fr 1.15fr; gap: 40px; }
  .contato-grid { grid-template-columns: repeat(2, 1fr); gap: 64px; }
  .footer-top { flex-direction: row; justify-content: space-between; }
  .footer-links { flex-direction: row; gap: 40px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
