* {
  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 */
.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 ease;
}

.header.scrolled {
  padding: 0.5rem 0;
  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 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  border-radius: 16px;
}

.logo-text h1 {
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--secondary);
}

.logo-text h1 span {
  font-size: 1.3rem;
  color: var(--primary);
}

.logo-text small {
  font-size: 0.6rem;
  color: var(--gray);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: var(--secondary);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--secondary);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 12px;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, var(--secondary) 0%, #1a1a1a 100%);
  z-index: 1001;
  padding: 2rem 1.5rem;
  transition: right 0.3s ease;
  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;
}

.close-menu:hover {
  background: rgba(173, 61, 63, 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);
}

.mobile-menu a:hover {
  color: var(--primary);
  transform: translateX(10px);
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25D366;
  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 ease;
}

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

.whatsapp-float i {
  font-size: 2rem;
  color: white;
}

/* Hero Section */
.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;
}

.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.5s ease;
  z-index: 11;
}

.door-left {
  left: 0;
  transform: translateX(0);
}

.door-right {
  right: 0;
  transform: translateX(0);
}

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

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

.door-logo-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  text-align: center;
  transition: all 0.5s ease;
  pointer-events: none;
}

.rolling-door.open .door-logo-container {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
}

.door-logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(173, 61, 63, 0.5));
  animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
  0%, 100% { filter: drop-shadow(0 0 15px rgba(173, 61, 63, 0.5)); transform: scale(1); }
  50% { filter: drop-shadow(0 0 25px rgba(173, 61, 63, 0.8)); transform: scale(1.02); }
}

.door-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  margin-top: 0.5rem;
}

.door-logo-text span {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  letter-spacing: 3px;
}

.door-logo-text span:first-child {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.door-logo-text .logo-accent {
  font-size: 1.3rem;
  color: var(--primary);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: white;
}

.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);
  color: white;
}

.hero-content h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: white;
}

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

.hero-content p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  max-width: 500px;
  color: white;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--primary-dark);
}

.btn-outline {
  border: 2px solid white;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: white;
  color: var(--secondary);
}

.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;
}

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

/* Services Section */
.services-section {
  padding: 4rem 0;
  background: var(--offwhite);
}

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

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

.section-title {
  font-size: 2rem;
  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(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.service-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;
  margin: 0 auto 1rem;
}

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

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

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

.service-price {
  font-size: 1.2rem;
  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.5rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

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

/* Laudos Section */
.laudos-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--offwhite) 100%);
}

.laudos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.laudo-card {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
}

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

.laudo-highlight {
  border: 1px solid rgba(173, 61, 63, 0.3);
}

.laudo-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.6rem;
}

.laudo-icon {
  width: 60px;
  height: 60px;
  background: rgba(173, 61, 63, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.laudo-icon i {
  font-size: 1.5rem;
  color: var(--primary);
}

.laudo-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.laudo-desc {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.laudo-features {
  margin-bottom: 1rem;
}

.laudo-features span {
  font-size: 0.75rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.3rem;
}

.laudo-features span i {
  color: var(--primary);
  font-size: 0.7rem;
}

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

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

/* CTA Section */
.laudo-cta {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-radius: 32px;
  padding: 2rem;
  text-align: center;
  margin-top: 2rem;
}

.laudo-cta-content h4 {
  color: white;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.laudo-cta-content p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin: 0 auto 1rem;
  font-size: 0.9rem;
}

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

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

.badge-icon {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon i {
  font-size: 0.6rem;
  color: white;
}

.cta-badge span {
  color: white;
  font-size: 0.8rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--primary);
  border-radius: 40px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  background: var(--primary-dark);
}

/* About Section - CORRIGIDA */
.about-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

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

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

.feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(173, 61, 63, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 1rem;
  color: var(--primary);
}

.feature-content h4 {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
}

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

.trust-badge i {
  color: var(--primary);
  font-size: 0.9rem;
}

.trust-badge span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 1.5rem;
  text-align: center;
}

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

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.stat-stars {
  color: #FFD700;
  margin: 0.5rem 0;
}

.stat-rating {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
}

.stats-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
}

.mini-card i {
  font-size: 1.2rem;
  color: var(--primary);
}

.mini-info strong {
  display: block;
  color: white;
  font-size: 1rem;
}

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

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  background: var(--offwhite);
}

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

.info-card {
  background: white;
  border-radius: 32px;
  padding: 1.5rem;
  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.3rem 1rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.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: 1rem;
}

.info-header-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-header-icon i {
  font-size: 1.3rem;
  color: white;
}

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

.info-subtitle {
  color: var(--gray);
  font-size: 0.7rem;
}

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

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

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

.time {
  color: var(--dark);
}

.closed {
  color: #dc3545;
}

.peak-hours {
  background: rgba(173, 61, 63, 0.08);
  padding: 0.5rem;
  border-radius: 12px;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.peak-hours i {
  color: var(--primary);
  font-size: 0.8rem;
}

.peak-content {
  color: var(--primary);
  font-size: 0.7rem;
}

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

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

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

.contact-icon-circle i {
  font-size: 1rem;
  color: white;
}

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

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

.contact-action {
  font-size: 0.65rem;
  color: var(--primary);
  display: block;
}

.btn-route {
  width: 100%;
  padding: 0.8rem;
  background: var(--secondary);
  border: none;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 1rem 0;
}

.btn-route span {
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
}

.btn-route:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

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

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

.quality-seal span {
  color: var(--secondary);
  font-size: 0.75rem;
}

.map-card {
  background: white;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
}

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

.map-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  background: var(--secondary);
  padding: 0.3rem 0.8rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

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

.map-actions {
  display: flex;
  gap: 0.3rem;
  background: white;
  padding: 0.3rem;
  border-radius: 40px;
}

.map-actions button {
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
}

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

.map-overlay-info {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 10;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  padding: 0.3rem 0.8rem;
  border-radius: 40px;
}

.map-info-content {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.map-info-content i {
  color: var(--primary);
  font-size: 0.7rem;
}

.map-info-content span {
  color: white;
  font-size: 0.65rem;
}

/* Testimonials Section - CORRIGIDA */
.testimonials-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

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

.testimonial-quote-icon {
  text-align: right;
  opacity: 0.2;
  font-size: 1.5rem;
  color: white;
}

.testimonial-stars {
  color: #FFD700;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  line-height: 1.4;
}

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

.author-avatar {
  width: 40px;
  height: 40px;
  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.85rem;
}

.author-meta {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

.google-verified {
  margin-left: auto;
}

.google-verified i {
  font-size: 1rem;
  color: #4285F4;
}

.testimonial-reactions {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.testimonial-reactions i {
  font-size: 0.7rem;
  color: #ff4d4d;
}

.testimonial-reactions span {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
}

.testimonials-load-more {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.btn-load-more {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(173, 61, 63, 0.3);
  padding: 0.6rem 1.5rem;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-load-more span {
  color: white;
  font-size: 0.85rem;
}

.btn-load-more i {
  color: var(--primary);
}

.btn-load-more:hover {
  background: rgba(173, 61, 63, 0.2);
  border-color: var(--primary);
}

.google-rating-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 60px;
  padding: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}

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

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

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

.rating-info {
  text-align: left;
}

.rating-stars-big {
  color: #FFD700;
  font-size: 0.8rem;
}

.rating-number {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
}

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

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

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

/* Footer - CORRIGIDA */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 100%);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

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

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

.footer-logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

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

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

.footer-logo-text p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.6rem;
}

.footer-description p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link i {
  font-size: 0.9rem;
  color: var(--primary);
}

.social-link span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
}

.social-link:hover {
  background: rgba(173, 61, 63, 0.2);
  transform: translateY(-2px);
}

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

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

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

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

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary);
  transform: translateX(3px);
  display: inline-block;
}

.hours-list-footer li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hours-list-footer .day {
  color: rgba(255, 255, 255, 0.7);
}

.hours-list-footer .time {
  color: rgba(255, 255, 255, 0.5);
}

.hours-list-footer .closed {
  color: #dc3545;
}

.address-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.address-list li i {
  font-size: 0.7rem;
  color: var(--primary);
  width: 20px;
}

.footer-phone a,
.footer-whats a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-phone a:hover,
.footer-whats a:hover {
  color: var(--primary);
}

.footer-whats i {
  color: #25D366;
}

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

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

.divider-icon {
  width: 35px;
  height: 35px;
  background: rgba(173, 61, 63, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.divider-icon i {
  color: var(--primary);
  font-size: 0.9rem;
}

.divider-icon:hover {
  background: rgba(173, 61, 63, 0.3);
  transform: scale(1.05);
}

.divider-icon:hover i {
  transform: rotate(360deg);
}

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

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

.back-to-top {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(173, 61, 63, 0.3);
  padding: 0.3rem 1rem;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-to-top i {
  font-size: 0.7rem;
  color: var(--primary);
}

.back-to-top span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

.back-to-top:hover {
  background: rgba(173, 61, 63, 0.2);
  transform: translateY(-3px);
}

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

.section-header.light .section-title {
  color: white;
}

.section-header.light .section-description {
  color: rgba(255, 255, 255, 0.7);
}

.title-decoration-center {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--primary-light), var(--primary), transparent);
  margin: 0.5rem auto 0;
  border-radius: 3px;
}

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .services-grid,
  .laudos-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .door-logo-img {
    width: 70px;
    height: 70px;
  }
  
  .door-logo-text span:first-child {
    font-size: 0.8rem;
  }
  
  .door-logo-text .logo-accent {
    font-size: 1rem;
  }
  
  .btn-group {
    flex-direction: column;
  }
  
  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-links {
    flex-direction: column;
  }
  
  .google-rating-modern {
    flex-direction: column;
    text-align: center;
  }
  
  .rating-left {
    flex-direction: column;
    text-align: center;
  }
  
  .rating-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 45px;
    height: 45px;
  }
  
  .logo-text h1 {
    font-size: 0.8rem;
  }
  
  .logo-text h1 span {
    font-size: 0.9rem;
  }
  
  .hero-content h2 {
    font-size: 1.5rem;
  }
  
  .door-logo-img {
    width: 55px;
    height: 55px;
  }
  
  .door-logo-text span:first-child {
    font-size: 0.7rem;
  }
  
  .door-logo-text .logo-accent {
    font-size: 0.85rem;
  }
  
  .info-card {
    padding: 1rem;
  }
  
  .stats-mini {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Links Legais no Footer */
.footer-legal {
  text-align: center;
  margin: 1.5rem 0 1rem;
}

.legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.legal-links a i {
  font-size: 0.7rem;
  color: var(--primary);
}

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

.legal-links .separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
}

@media (max-width: 768px) {
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .legal-links .separator {
    display: none;
  }
}