/* ========================================
   CSS Variables & Reset
   ======================================== */
:root {
  /* Cores */
  --white: #ffffff;
  --blue-900: #0b3f72;
  --blue-700: #1b5f9a;
  --blue-500: #3a7bc8;
  --red: #c61b2f;
  --red-hover: #a01625;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-900: #111827;
  --muted: #f5f7fa;
  
  /* Layout */
  --max-width: 1100px;
  --radius: 10px;
  --radius-sm: 6px;
  --space: 1rem;
  --space-sm: 0.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  
  /* Tipografia */
  --font-main: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-size-base: 16px;
  --line-height: 1.6;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
  
  /* Transições */
  --transition: all 0.3s ease;
}

/* Reset básico */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  color: var(--gray-900);
  background: var(--white);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========================================
   Layout & Container
   ======================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space);
  width: 100%;
}

.section {
  padding: var(--space-xl) 0;
}

/* ========================================
   Typography
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--blue-900);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.muted {
  color: var(--gray-600);
  font-size: 0.875rem;
}

.price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--red);
  margin: 0.5rem 0;
}

/* ========================================
   Header & Navigation
   ======================================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  height: 56px;
  width: auto;
  transition: var(--transition);
}

.logo:hover {
  opacity: 0.8;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.main-nav a {
  font-weight: 500;
  color: var(--gray-900);
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a:hover {
  color: var(--blue-700);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  border: 2px solid var(--gray-300);
  color: var(--gray-900);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--blue-700);
  color: var(--blue-700);
  background: var(--gray-50);
}

.btn-outline {
  border: 2px solid var(--red);
  color: var(--red);
  background: transparent;
}

.btn-outline:hover {
  background: var(--red);
  color: var(--white);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.hero-inner {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-media {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-media img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
}

/* ========================================
   Grid System
   ======================================== */
.grid {
  display: grid;
  gap: 1.5rem;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.catalog-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  margin-bottom: 4rem;
}

/* ========================================
   Cards
   ======================================== */
.card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card h3, .card h4 {
  color: var(--blue-900);
  margin-bottom: 0.75rem;
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.card p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.card .btn,
.card .price {
  margin-top: auto;
}

/* ========================================
   Swiper / Carousel
   ======================================== */
.swiper-container {
  padding: 2rem 0;
  overflow: hidden;
}

.swiper-slide {
  height: auto;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--red);
  background: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px;
}

.ver-mais {
  text-align: center;
  margin-top: 2rem;
}

/* ========================================
   Testimonials
   ======================================== */
.testimonial {
  font-style: italic;
  color: var(--gray-600);
  border-left: 4px solid var(--red);
  padding-left: 1.5rem;
  margin: 0;
}

.testimonial footer {
  margin-top: 1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--gray-900);
}

/* ========================================
   Map
   ======================================== */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 2rem 0;
  text-align: center;
}

.site-footer p {
  margin: 0.5rem 0;
  opacity: 0.9;
}

.site-footer a {
  color: var(--white);
  text-decoration: underline;
}

/* ========================================
   WhatsApp Float Button
   ======================================== */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: inline-block;
  transition: var(--transition);
  background: transparent;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25));
}

/* ========================================
   Catalog Page Specific
   ======================================== */
.catalog-controls {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

#search {
  flex: 1;
  min-width: 250px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-main);
  transition: var(--transition);
}

#search:focus {
  outline: none;
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(59, 123, 200, 0.1);
}

#filter-category {
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-main);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  min-width: 200px;
}

#filter-category:focus {
  outline: none;
  border-color: var(--blue-700);
}

.filter-group {
  margin: 2rem 0;
}

.filter-group h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gray-900);
}

.filter-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.filter-checkbox label {
  cursor: pointer;
  user-select: none;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  /* Header */
  .main-nav {
    gap: 1rem;
    font-size: 0.875rem;
  }
  
  .logo {
    height: 44px;
  }
  
  /* Hero */
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  /* Buttons */
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-cta .btn {
    width: auto;
    flex: 1;
    min-width: 150px;
  }
  
  /* Grid */
  .grid {
    gap: 1rem;
  }
  
  /* Catalog */
  .catalog-controls {
    flex-direction: column;
  }
  
  #search,
  #filter-category {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: none;
  }
  
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .card {
    padding: 1rem;
  }
  
  .whatsapp-float {
    right: 15px;
    bottom: 15px;
  }
  
  .whatsapp-float img {
    width: 50px;
    height: 50px;
  }
}

/* ========================================
   Product Specs
   ======================================== */
.specs {
  background: var(--gray-50);
  border-left: 3px solid var(--blue-700);
  padding: 0.75rem;
  margin: 0.75rem 0;
  border-radius: var(--radius-sm);
}

.specs-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 0.5rem;
}

.specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
}

.specs-list li {
  padding: 0.25rem 0;
  color: var(--gray-600);
  line-height: 1.4;
}

.specs-list strong {
  color: var(--gray-900);
  font-weight: 600;
}

/* ========================================
   Tags de Produtos
   ======================================== */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  border-radius: 12px;
  font-weight: 500;
  transition: var(--transition);
}

.tag:hover {
  background: var(--blue-700);
  color: var(--white);
}

/* ========================================
   Catalog Cards
   ======================================== */
.catalog-card {
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.catalog-card .muted {
  flex-grow: 1;
}

.catalog-card .btn {
  margin-top: auto;
  align-self: center;
}

.catalog-card h4 {
  text-align: center;
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}

.card-image-wrapper img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.btn-details {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: var(--transition);
  z-index: 5;
  color: var(--gray-700);
}

.btn-details:hover {
  background: var(--white);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  color: var(--blue-900);
}

.btn-details svg {
  display: block;
}

/* ========================================
   Card Image Carousel
   ======================================== */
.card-image-carousel {
  position: relative;
  width: 100%;
  margin-bottom: 1rem;
}

.card-image-carousel img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  transition: opacity 0.3s ease;
}

.card-image-carousel .btn-details {
  top: 0.5rem;
  right: 0.5rem;
}

.carousel-controls {
  position: absolute;
  bottom: 0.5rem;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.carousel-btn {
  background: rgba(255,255,255,0.9);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--blue-900);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background: var(--white);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  flex-shrink: 0;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}

.dot.active {
  background: var(--white);
  width: 10px;
  height: 10px;
}

.dot:hover {
  background: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
  .carousel-controls {
    bottom: 0;
    padding: 0.75rem 0.5rem;
    gap: 1rem;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  }
  
  .carousel-btn {
    width: 32px;
    height: 32px;
    font-size: 1.3rem;
  }
  
  .carousel-dots {
    flex: 1;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
  
  .dot.active {
    width: 12px;
    height: 12px;
  }
}

/* ========================================
   Product Modal
   ======================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { 
    opacity: 0;
    transform: translateY(30px);
  }
  to { 
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: var(--red);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
}

.modal-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-main-image {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.modal-thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
}

.modal-thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
  border: 2px solid transparent;
}

.modal-thumbnails img:hover {
  opacity: 1;
}

.modal-thumbnails img.active {
  opacity: 1;
  border-color: var(--blue-700);
}

.modal-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-info h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: 1.75rem;
}

.modal-category {
  color: var(--gray-600);
  font-size: 0.95rem;
  margin: 0;
}

.modal-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--red);
  margin: 0.5rem 0;
}

.modal-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

.modal-specs {
  background: var(--gray-50);
  border-left: 3px solid var(--blue-700);
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.modal-specs h4 {
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
  color: var(--blue-900);
}

.modal-specs .specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.modal-specs .specs-list li {
  padding: 0.4rem 0;
  color: var(--gray-600);
  line-height: 1.5;
}

.modal-specs .specs-list strong {
  color: var(--gray-900);
  font-weight: 600;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.modal-actions {
  margin-top: auto;
  padding-top: 1rem;
}

.modal-actions .btn {
  width: 100%;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .modal-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  
  .modal-info {
    text-align: center;
  }
  
  .modal-info h2 {
    font-size: 1.5rem;
  }
  
  .modal-price {
    font-size: 1.5rem;
  }
  
  .modal-close {
    top: 0.5rem;
    right: 0.5rem;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
  
  .modal-specs,
  .modal-description {
    text-align: left;
  }
  
  .modal-tags {
    justify-content: center;
  }
}

/* ========================================
   Result Count
   ======================================== */
.result-count {
  text-align: center;
  margin: 1rem 0;
  font-weight: 500;
  color: var(--gray-600);
}

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ========================================
   Animations (AOS)
   ======================================== */
[data-aos] {
  pointer-events: auto;
}

/* Loading state */
.loading {
  text-align: center;
  padding: 3rem;
  color: var(--gray-600);
}

.loading::after {
  content: '...';
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%, 20% {
    content: '.';
  }
  40% {
    content: '..';
  }
  60%, 100% {
    content: '...';
  }
}

/* ========================================
   Backgrounds Alternados
   ======================================== */
.section-alt {
  background: var(--gray-50);
}

/* ========================================
   Service Cards (Melhorados)
   ======================================== */
.service-card {
  text-align: center;
  transition: var(--transition);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
  color: var(--blue-900);
}

.service-card p {
  text-align: left;
  margin-bottom: 1rem;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.service-benefits {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  text-align: left;
}

.service-benefits li {
  padding: 0.5rem 0;
  color: var(--gray-600);
  font-size: 0.95rem;
}

.link-destaque {
  color: var(--red);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--red);
  transition: var(--transition);
}

.link-destaque:hover {
  color: var(--red-hover);
  border-bottom-color: var(--red-hover);
}

/* ========================================
   Testimonials / Avaliações
   ======================================== */
.testimonials-swiper {
  padding: 2rem 0;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonial-prev,
.testimonial-next {
  color: var(--red);
  background: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.testimonial-prev:after,
.testimonial-next:after {
  font-size: 20px;
}

.testimonial-card {
  text-align: center;
  padding: 2rem;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--red);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stars {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gray-600);
  margin: 1rem 0;
  flex-grow: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--blue-900);
  margin-top: 1rem;
  font-style: normal;
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  background: var(--red);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-card {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-link {
  color: var(--blue-700);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  margin: 0.5rem 0;
}

.contact-link:hover {
  color: var(--red);
  transform: scale(1.05);
}

.contact-card .btn {
  margin-top: auto;
  width: 100%;
  max-width: 250px;
  align-self: center;
}

/* ========================================
   Footer Melhorado
   ======================================== */
.site-footer {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  color: var(--white);
  padding: 2.5rem 0;
  text-align: center;
}

.site-footer p {
  margin: 0.75rem 0;
  opacity: 0.95;
  font-size: 0.95rem;
}

.site-footer strong {
  font-weight: 600;
}

.footer-tech {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
}

/* ========================================
   Map Wrapper Melhorado
   ======================================== */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 1.5rem;
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 400px;
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 768px) {
  .service-card img {
    height: 180px;
  }
  
  .service-benefits {
    font-size: 0.9rem;
  }
  
  .testimonial-card {
    min-height: 200px;
    padding: 1.5rem;
  }
  
  .contact-grid {
    gap: 1.5rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .map-wrapper iframe {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .service-card h3 {
    font-size: 1.25rem;
  }
  
  .stars {
    font-size: 1.25rem;
  }
  
  .testimonial-text {
    font-size: 0.95rem;
  }
  
  .contact-link {
    font-size: 1.1rem;
  }
}

/* ========================================
   Section Dividers & Headers
   ======================================== */
.section-produtos {
  background: linear-gradient(135deg, 
    #ff6b9d 0%, 
    #feca57 25%, 
    #48dbfb 50%, 
    #ff9ff3 75%, 
    #54a0ff 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.section-produtos .section-badge {
  background: rgba(255, 255, 255, 0.95);
  color: var(--blue-900);
  box-shadow: var(--shadow);
}

.section-produtos h2 {
  color: var(--white);
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.section-produtos .lead {
  color: var(--white);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--blue-900);
}

.section-header .lead {
  color: var(--gray-600);
  margin-bottom: 0;
}

/* Separação visual entre seções */
.section-alt + .section:not(.section-alt) {
  border-top: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1.2rem;
  }
}
