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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background-color: #F5F2EF;
  color: #1a1a1a;
  overflow-x: hidden;
}

:root {
  --primary: #AD3D3F;
  --primary-dark: #8a2f31;
  --primary-light: #c45a5c;
  --secondary: #000000;
  --secondary-light: #1a1a1a;
  --offwhite: #F5F2EF;
  --offwhite-dark: #E8E4DF;
  --gray: #6c6c6c;
  --dark: #1a1a1a;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px -8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.8rem;
}

/* Header Moderno */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(245, 242, 239, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(173, 61, 63, 0.15);
  padding: 0.8rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  padding: 0.5rem 0;
  background: rgba(245, 242, 239, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Logo Area */
.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo-area:hover {
  transform: translateX(2px);
}

/* Logo Icon com efeito de brilho */
.logo-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(15, 14, 14, 0.3), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.logo-icon:hover .logo-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.3);
}

/* Logo imagem */
.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.logo-img:hover {
  transform: scale(1.02) rotate(2deg);
  filter: drop-shadow(0 4px 12px rgba(244, 229, 229, 0.2));
}

/* Logo Texto */
.logo-text {
  position: relative;
}

.logo-text h1 {
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--secondary);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.logo-text h1 span {
  font-size: 1.3rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.logo-text h1 span::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.logo-area:hover .logo-text h1 span::after {
  width: 100%;
}

.logo-text small {
  font-size: 0.6rem;
  color: var(--gray);
  display: block;
  margin-top: 2px;
  letter-spacing: 0.3px;
}

/* Navegação Desktop */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--secondary);
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

/* Efeito de linha animada */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

/* Efeito de brilho no hover */
.nav-links a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(14, 13, 13, 0.1), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}

.nav-links a:hover::before {
  width: 100px;
  height: 100px;
}

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

.nav-links a:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

/* Botão Mobile */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--secondary);
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.mobile-menu-btn:hover {
  color: var(--primary);
  background: rgba(173, 61, 63, 0.1);
  transform: scale(1.05);
}

.mobile-menu-btn:active {
  transform: scale(0.95);
}

/* Menu Mobile */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%);
  z-index: 1001;
  padding: 2rem 1.5rem;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
  right: 0;
}

.close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  font-size: 1.8rem;
  color: white;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-menu:hover {
  background: rgba(236, 222, 222, 0.8);
  transform: rotate(90deg);
}

.mobile-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  transform: translateX(0);
}

.mobile-menu a:hover {
  color: var(--primary);
  transform: translateX(10px);
  border-bottom-color: rgba(173, 61, 63, 0.5);
}

/* Animação de entrada do mobile menu */
.mobile-menu.open a {
  animation: slideIn 0.3s ease forwards;
  opacity: 0;
}

.mobile-menu.open a:nth-child(2) { animation-delay: 0.05s; }
.mobile-menu.open a:nth-child(3) { animation-delay: 0.1s; }
.mobile-menu.open a:nth-child(4) { animation-delay: 0.15s; }
.mobile-menu.open a:nth-child(5) { animation-delay: 0.2s; }
.mobile-menu.open a:nth-child(6) { animation-delay: 0.25s; }

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  z-index: 100;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
  transform: scale(1.12) rotate(5deg);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-float i {
  font-size: 2rem;
  color: white;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover i {
  transform: scale(1.1);
}

/* Pulse effect no WhatsApp */
.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: #25D366;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: pulse-whatsapp 2s infinite;
  z-index: -1;
}

@keyframes pulse-whatsapp {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* Responsivo */
@media (max-width: 968px) {
  .nav-links {
    gap: 1.5rem;
  }
  
  .nav-links a {
    font-size: 0.85rem;
  }
  
  .logo-img {
    width: 55px;
    height: 55px;
  }
  
  .logo-text h1 {
    font-size: 0.95rem;
  }
  
  .logo-text h1 span {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .logo-img {
    width: 55px;
    height: 55px;
  }
  
  .logo-text h1 {
    font-size: 0.9rem;
  }
  
  .logo-text h1 span {
    font-size: 1.1rem;
  }
  
  .logo-text small {
    font-size: 0.55rem;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 48px;
    height: 48px;
  }
  
  .logo-text h1 {
    font-size: 0.8rem;
  }
  
  .logo-text h1 span {
    font-size: 1rem;
  }
  
  .logo-text small {
    font-size: 0.5rem;
  }
  
  .header-content {
    padding: 0 0.5rem;
  }
}


/* Hero Section com Efeito Rolling Shutter (Porta de Aço) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(107deg, rgba(0, 0, 0, 0.85) 0%, rgba(173, 61, 63, 0.75) 100%), url('https://images.pexels.com/photos/12551443/pexels-photo-12551443.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(0,0,0,0.2), rgba(0,0,0,0.4));
  z-index: 1;
}

/* ========== EFEITO PORTA DE AÇO (ROLLING SHUTTER) ========== */
.rolling-door {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  overflow: hidden;
}

.door-panel {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 11;
  overflow: hidden;
}

.door-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  pointer-events: none;
}

.door-panel::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(255,255,255,0.1) 0%, 
    transparent 20%,
    transparent 80%,
    rgba(0,0,0,0.3) 100%);
  pointer-events: none;
}

/* Listras horizontais da porta de aço */
.door-panel .door-stripes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    180deg,
    transparent,
    transparent 15px,
    rgba(255, 255, 255, 0.08) 15px,
    rgba(255, 255, 255, 0.08) 30px
  );
  pointer-events: none;
}

.door-left {
  left: 0;
  transform: translateX(0);
  border-right: 2px solid rgba(173, 61, 63, 0.3);
}

.door-right {
  right: 0;
  transform: translateX(0);
  border-left: 2px solid rgba(173, 61, 63, 0.3);
}

/* Estado aberto - portas se afastam */
.rolling-door.open .door-left {
  transform: translateX(-100%);
}

.rolling-door.open .door-right {
  transform: translateX(100%);
}

/* Barra de luz no centro da porta */
.door-light-bar {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(173, 61, 63, 0) 0%,
    rgba(173, 61, 63, 0.8) 20%,
    rgba(173, 61, 63, 1) 50%,
    rgba(173, 61, 63, 0.8) 80%,
    rgba(173, 61, 63, 0) 100%
  );
  z-index: 12;
  box-shadow: 0 0 10px rgba(173, 61, 63, 0.5);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.rolling-door.open .door-light-bar {
  opacity: 0;
}

/* Efeito de brilho na porta */
.door-panel {
  animation: doorGlow 3s ease-in-out infinite;
}

@keyframes doorGlow {
  0%, 100% {
    box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
  }
  50% {
    box-shadow: inset 0 0 40px rgba(173, 61, 63, 0.2);
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: white;
  animation: fadeInUp 0.4s ease forwards;
  opacity: 1 !important; /* Força visibilidade */
}

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

.hero-badge {
  display: inline-block;
  background: rgba(173, 61, 63, 0.2);
  backdrop-filter: blur(4px);
  padding: 0.5rem 1.2rem;
  border-radius: 40px;
  font-size: 0.8rem;
  margin-bottom: 1.5rem;
  border-left: 3px solid var(--primary);
  animation: fadeInLeft 0.6s ease 0.2s forwards;
  opacity: 0;
  transform: translateX(-20px);
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-content h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  animation: fadeInUp 0.6s ease 0.4s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.title-highlight {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.title-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  animation: expandLine 0.8s ease 0.8s forwards;
}

@keyframes expandLine {
  to {
    width: 100%;
  }
}

.hero-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  animation: fadeInUp 0.6s ease 0.6s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.8s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.btn-primary {
  background: var(--primary);
  color: var(--offwhite);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(173, 61, 63, 0.4);
  background: var(--primary-dark);
}

.btn-outline {
  border: 2px solid var(--offwhite);
  color: var(--offwhite);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}

.btn-outline:hover::before {
  left: 100%;
}

.btn-outline:hover {
  background: var(--offwhite);
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: white;
  font-size: 0.8rem;
  opacity: 0.7;
  animation: bounce 2s infinite;
  z-index: 15;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.hero-scroll-indicator:hover {
  opacity: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* Responsivo */
@media (max-width: 768px) {
  .hero-content h2 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 0.95rem;
  }
  
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 1.8rem;
  }
}

/* Serviços */
.services-section {
  padding: 6rem 0;
  background: var(--offwhite);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--offwhite);
  font-weight: 600;
  background: var(--primary);
  display: inline-block;
  padding: 0.3rem 1rem;
  border-radius: 30px;
}

.section-title {
  font-size: 2.5rem;
  margin-top: 0.5rem;
  color: var(--secondary);
}

.section-description {
  color: var(--gray);
  margin-top: 0.5rem;
}

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

.service-card {
  background: white;
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-icon i {
  font-size: 2rem;
  color: var(--offwhite);
}

.service-card h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--secondary);
  color: white;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.service-btn:hover {
  background: var(--primary);
  transform: scale(1.05);
}

/* Animações e efeitos para seção de laudos */
.laudos-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--offwhite) 100%);
  position: relative;
  overflow: hidden;
}

.laudos-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.laudos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.laudo-card {
  background: white;
  border-radius: 32px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.laudo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.laudo-card:hover::before {
  transform: scaleX(1);
}

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

.laudo-highlight {
  border: 1px solid rgba(173, 61, 63, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #fff8f7 100%);
}

.laudo-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--offwhite);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(173, 61, 63, 0.3);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(173, 61, 63, 0.3);
  }
  50% {
    box-shadow: 0 4px 15px rgba(173, 61, 63, 0.5);
  }
}

.laudo-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(173, 61, 63, 0.1) 0%, rgba(173, 61, 63, 0.05) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.laudo-card:hover .laudo-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  transform: scale(1.05) rotate(-5deg);
}

.laudo-card:hover .laudo-icon i {
  color: white;
}

.laudo-icon i {
  font-size: 2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.laudo-card h3 {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.laudo-card:hover h3 {
  color: var(--primary);
}

.laudo-desc {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.laudo-features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
}

.laudo-features span {
  font-size: 0.85rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: transform 0.2s ease;
}

.laudo-features span:hover {
  transform: translateX(5px);
}

.laudo-features span i {
  color: var(--primary);
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.laudo-features span:hover i {
  transform: scale(1.2);
}

.laudo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--secondary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.laudo-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.laudo-btn:hover::before {
  left: 100%;
}

.laudo-btn:hover {
  background: var(--primary);
  transform: scale(1.02);
}

/* CTA */
.laudo-cta {
  background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%);
  border-radius: 40px;
  padding: 3rem;
  text-align: center;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.laudo-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(173, 61, 63, 0.1), transparent);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.laudo-cta-content {
  position: relative;
  z-index: 2;
}

.laudo-cta-content i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.laudo-cta-content h4 {
  color: var(--offwhite);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.laudo-cta-content p {
  color: rgba(245, 242, 239, 0.7);
  max-width: 600px;
  margin: 0 auto 1.5rem auto;
}

.laudo-cta-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.laudo-cta-badges span {
  color: var(--offwhite);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
}

.laudo-cta-badges span i {
  font-size: 0.8rem;
  margin-bottom: 0;
  animation: none;
  color: var(--primary);
}

/* Responsivo */
@media (max-width: 768px) {
  .laudos-grid {
    grid-template-columns: 1fr;
  }
  
  .laudo-cta {
    padding: 2rem;
  }
  
  .laudo-cta-content h4 {
    font-size: 1.2rem;
  }
  
  .laudo-cta-badges {
    gap: 1rem;
  }
  
  .laudo-cta-badges span {
    font-size: 0.75rem;
  }
}

/* Sobre */
.about-section {
  position: relative;
  padding: 5rem 0;
  background-image: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  background-attachment: fixed;
}

.about-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(173, 61, 63, 0.15), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.feature i {
  color: var(--primary);
}

.feature span {
  color: white;
  font-size: 0.85rem;
}

.about-stats .stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 32px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  margin: 0.5rem 0;
}

.stat-stars {
  color: #FFD700;
}

/* Contato */
.contact-section {
  padding: 6rem 0;
  background: var(--offwhite);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-card {
  background: white;
  border-radius: 40px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37, 211, 102, 0.15);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.status-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: #25D366;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-header-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-header-icon i {
  font-size: 1.8rem;
  color: var(--offwhite);
}

.info-header h3 {
  font-size: 1.3rem;
  color: var(--secondary);
}

.hours-list {
  margin-bottom: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
}

.hours-row .day {
  font-weight: 600;
  color: var(--secondary);
}

.closed {
  color: #dc3545;
  font-weight: 600;
}

.peak-hours {
  background: rgba(173, 61, 63, 0.1);
  padding: 0.8rem;
  border-radius: 16px;
  margin: 1rem 0;
  font-size: 0.8rem;
  color: var(--primary);
}

.contact-details-modern {
  margin: 1.5rem 0;
}

.contact-item-modern {
  display: flex;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
}

.contact-icon-circle {
  width: 45px;
  height: 45px;
  background: var(--primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon-circle i {
  font-size: 1.2rem;
  color: var(--offwhite);
}

.contact-info strong {
  display: block;
  font-size: 0.75rem;
  color: var(--gray);
}

.contact-info a {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  text-decoration: none;
}

.quality-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: rgba(173, 61, 63, 0.1);
  border-radius: 50px;
  margin-top: 1rem;
}

.map-card {
  background: white;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

#map {
  height: 450px;
  width: 100%;
}

.map-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.map-footer {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
}

.map-actions {
  display: flex;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

.map-actions button {
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.map-actions button:hover {
  background: var(--primary);
  color: white;
}

/* Testimonials */
.testimonials-section {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
  background-attachment: fixed;
}

.testimonials-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(173, 61, 63, 0.2), transparent);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 1.8rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.1);
}

.testimonial-quote-icon {
  position: absolute;
  top: 1rem;
  right: 1rem;
  opacity: 0.1;
  font-size: 2rem;
  color: white;
}

.testimonial-stars {
  color: #FFD700;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: white;
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
}

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

.author-info strong {
  display: block;
  color: white;
  font-size: 0.9rem;
}

.author-info span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

.google-rating-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  padding: 1rem 2rem;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.rating-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.google-icon-big {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-icon-big i {
  font-size: 1.8rem;
  color: #4285F4;
}

.rating-stars-big {
  color: #FFD700;
}

.rating-number {
  color: white;
  font-size: 0.9rem;
}

.rating-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(173, 61, 63, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 40px;
}

.rating-badge span {
  color: var(--primary);
  font-size: 0.8rem;
}

/* Footer */
.footer {
  background: #0a0a0a;
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.footer-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 20% 30%, rgba(173, 61, 63, 0.08), transparent);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.footer-logo-section {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo-text h3 {
  font-size: 1rem;
  color: white;
}

.footer-logo-text h3 span {
  font-size: 1.2rem;
  color: var(--primary);
}

.footer-description p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-column h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1rem;
}

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

.footer-column ul li {
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  color: var(--primary);
}

.footer-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(173, 61, 63, 0.3), transparent);
}

.divider-icon {
  width: 40px;
  height: 40px;
  background: rgba(173, 61, 63, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.divider-icon i {
  color: var(--primary);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-content h2 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .laudos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
  }
  .btn-primary, .btn-outline {
    text-align: center;
    justify-content: center;
  }
}

.section-header.light .section-subtitle {
  background: rgba(173, 61, 63, 0.2);
  color: var(--primary);
}

.title-glow {
  color: var(--primary);
}

.title-glow-testimonial {
  color: var(--primary);
}