/**
 * Template CSS - Alta Performance e 100% Responsivo
 * Desenvolvido com foco em performance e UX
 */

/* ===== VARIÁVEIS CSS - IR LOG TRANSPORTES ===== */
:root {
  /* Cores da Marca IR Log */
  --primary-color: #e31d24; /* Vermelho Vibrante - Seta e "Log" */
  --secondary-color: #1a1a1b; /* Preto Carvão - "IR" e tipografia */
  --accent-color: #f4f4f4; /* Cinza Gelo - Fundos e contraste */
  --dark-color: #0d0d0d; /* Preto intenso */
  --light-color: #ffffff; /* Branco puro */
  --white-color: #ffffff;
  --text-dark: #1a1a1b;
  --text-muted: #6c757d;

  /* Gradientes da marca */
  --gradient-primary: linear-gradient(135deg, #e31d24 0%, #b01419 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1b 0%, #0d0d0d 100%);

  /* Tipografia - Fontes modernas sans-serif */
  --font-primary:
    'Inter', 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --transition-base: all 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(227, 29, 36, 0.1);
  --shadow-md: 0 4px 6px rgba(227, 29, 36, 0.15);
  --shadow-lg: 0 10px 25px rgba(227, 29, 36, 0.2);
  --radius-sm: 4px; /* Cantos levemente arredondados */
  --radius-md: 8px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  min-height: 100vh;
}

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

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition-base);
}

a:hover {
  color: var(--accent-color);
}

/* ===== TOP BAR ===== */
.top-bar {
  background-color: var(--dark-color);
  padding: 10px 0;
  font-size: 14px;
}

.top-bar a {
  color: white;
  margin-right: 20px;
  transition: var(--transition-base);
}

.top-bar a:hover {
  color: var(--primary-color);
}

.top-bar i {
  margin-right: 5px;
}

.top-bar-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-bar .social-links a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-left: 8px;
  margin-right: 0;
}

.top-bar .social-links a:hover {
  background: var(--primary-color);
  color: white;
}

/* ===== NAVIGATION ===== */
.navbar {
  padding: 15px 0;
  transition: var(--transition-base);
}

.navbar.sticky-top {
  box-shadow: var(--shadow-md);
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
}

.navbar-brand .logo {
  max-height: 50px;
  margin-right: 10px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 8px 16px !important;
  color: var(--text-dark);
  position: relative;
  transition: var(--transition-base);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary-color);
}

.navbar-cta .btn {
  padding: 8px 24px;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding: 20px 0;
  }

  .navbar-nav .nav-link {
    padding: 12px 0 !important;
  }

  .navbar-cta {
    margin-left: 0 !important;
    margin-top: 15px;
  }
}

/* ===== MENU SCROLL EFFECT (IR LOG) ===== */
/* Menu branco sólido no topo, branco translúcido ao rolar (todas as páginas) */
.navbar {
  background: var(--white-color);
  transition:
    background-color 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}

.navbar .navbar-brand,
.navbar .nav-link {
  color: var(--text-dark);
  transition: color 0.3s ease;
}

/* Menu branco translúcido ao rolar */
.navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

.navbar.navbar-scrolled .navbar-brand,
.navbar.navbar-scrolled .nav-link {
  color: var(--text-dark) !important;
}

.navbar.navbar-scrolled .nav-link:hover,
.navbar.navbar-scrolled .nav-link.active {
  color: var(--primary-color) !important;
}

.navbar.navbar-scrolled .btn-primary {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
}

/* ===== HERO SECTIONS ===== */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-home {
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920');
  min-height: 700px;
}

.hero-about {
  background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1920');
  min-height: 400px;
}

.hero-services {
  background-image:
    linear-gradient(135deg, rgba(0, 123, 255, 0.9) 0%, rgba(40, 167, 69, 0.8) 100%),
    url('https://images.unsplash.com/photo-1560472355-536de3962603?w=1920');
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-gallery {
  background-image: url('https://images.unsplash.com/photo-1493932484895-752d1471eab5?w=1920');
  min-height: 400px;
}

.hero-contact {
  background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?w=1920');
  min-height: 400px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.8) 0%, rgba(40, 167, 69, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-scroll a {
  color: white;
  font-size: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease-in 0.6s both;
}

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

@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
  }

  .hero-home {
    min-height: 600px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }
}

/* ===== SECTIONS ===== */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 30px;
}

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

.breadcrumb-item.active {
  color: var(--text-muted);
}

/* ===== FEATURE CARDS ===== */
.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
}

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

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  color: white;
  font-size: 30px;
  margin: 0 auto 20px;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.feature-text {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== SERVICE CARDS ===== */
/* ===== SERVICE CARDS - PÁGINA DE SERVIÇOS ===== */
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
  border-color: rgba(0, 123, 255, 0.1);
}

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

/* Service Icon */
.service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
  border-radius: 20px;
  margin: 0 auto 25px;
  position: relative;
  transition: all 0.4s ease;
}

.service-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-icon {
  transform: rotateY(360deg) scale(1.05);
}

.service-card:hover .service-icon::after {
  opacity: 1;
}

.service-icon i {
  font-size: 42px;
  color: white;
}

/* Service Title */
.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
  text-align: center;
  transition: color 0.3s ease;
}

.service-card:hover .service-title {
  color: var(--primary-color);
}

/* Service Description */
.service-description {
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.8;
  text-align: center;
  font-size: 0.95rem;
}

/* Service Features List */
.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.service-features li {
  padding: 10px 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  position: relative;
  padding-left: 30px;
}

.service-features li i {
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-size: 16px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
}

.service-card .btn {
  width: 100%;
  padding: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* ===== SERVICE PREVIEW CARDS ===== */
.service-preview-card {
  background: white;
  padding: 45px 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  text-align: center;
}

.service-preview-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.service-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 123, 255, 0.1);
}

.service-preview-icon {
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 20px;
  color: white;
  font-size: 38px;
  margin: 0 auto 25px;
  transition: var(--transition-base);
  position: relative;
  box-shadow: 0 8px 16px rgba(0, 123, 255, 0.2);
}

.service-preview-icon::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-preview-card:hover .service-preview-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 12px 24px rgba(0, 123, 255, 0.3);
}

.service-preview-card:hover .service-preview-icon::after {
  opacity: 0.5;
}

.service-preview-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.service-preview-card:hover h4 {
  color: var(--primary-color);
}

.service-preview-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition-base);
  position: relative;
}

.service-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.service-link:hover::after {
  width: calc(100% - 30px);
}

.service-link:hover {
  gap: 12px;
  color: var(--accent-color);
}

.service-link i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ===== VALUE CARDS ===== */
.value-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-base);
  height: 100%;
}

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

.value-icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.value-text {
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===== TEAM CARDS ===== */
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  text-align: center;
}

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

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-content {
  padding: 25px;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 80px 0;
  color: white;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white;
  padding: 35px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
}

.testimonial-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  object-fit: cover;
  border: 4px solid var(--light-color);
}

.testimonial-text {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 5px;
}

.testimonial-role {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.testimonial-stars {
  color: #ffc107;
  margin-bottom: 15px;
}

/* ===== GALLERY - PÁGINA DE GALERIA ===== */
/* Gallery Filters */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.gallery-filter-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.gallery-filter-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.gallery-filter-btn:hover i {
  transform: scale(1.2);
}

.gallery-filter-btn.active {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.gallery-filter-btn.active:hover {
  transform: translateY(-3px);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  aspect-ratio: 4/3;
  transition: all 0.3s ease;
  animation: fadeInScale 0.6s ease-out backwards;
}

.gallery-item.hide {
  display: none;
}

/* Gallery Card */
.gallery-card {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--light-color);
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.gallery-card a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Gallery Image */
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover .gallery-image {
  transform: scale(1.15);
}

/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 123, 255, 0.95) 0%, rgba(40, 167, 69, 0.9) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  padding: 20px;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

/* Gallery Content */
.gallery-content {
  text-align: center;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-content {
  transform: translateY(0);
}

/* Gallery Icon */
.gallery-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid white;
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.gallery-card:hover .gallery-icon {
  transform: scale(1.1) rotate(360deg);
  background: rgba(255, 255, 255, 0.3);
}

.gallery-icon i {
  font-size: 32px;
  color: white;
}

/* Gallery Info */
.gallery-info {
  color: white;
}

.gallery-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.gallery-category {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Gallery Counter */
.gallery-counter {
  padding: 20px;
  background: var(--light-color);
  border-radius: var(--radius-lg);
  display: inline-block;
  min-width: 250px;
}

.gallery-counter p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.gallery-counter span {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Empty State */
.empty-state {
  padding: 60px 20px;
}

.empty-state i {
  opacity: 0.5;
}

.empty-state h4 {
  margin-bottom: 10px;
}

/* Gallery Item Animation */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animação escalonada para itens da galeria */
.gallery-item:nth-child(1) {
  animation-delay: 0.05s;
}
.gallery-item:nth-child(2) {
  animation-delay: 0.1s;
}
.gallery-item:nth-child(3) {
  animation-delay: 0.15s;
}
.gallery-item:nth-child(4) {
  animation-delay: 0.2s;
}
.gallery-item:nth-child(5) {
  animation-delay: 0.25s;
}
.gallery-item:nth-child(6) {
  animation-delay: 0.3s;
}
.gallery-item:nth-child(7) {
  animation-delay: 0.35s;
}
.gallery-item:nth-child(8) {
  animation-delay: 0.4s;
}
.gallery-item:nth-child(9) {
  animation-delay: 0.45s;
}
.gallery-item:nth-child(10) {
  animation-delay: 0.5s;
}
.gallery-item:nth-child(11) {
  animation-delay: 0.55s;
}
.gallery-item:nth-child(12) {
  animation-delay: 0.6s;
}

/* Responsivo - Gallery */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }

  .gallery-filter-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .gallery-filters {
    gap: 10px;
  }

  .gallery-filter-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .gallery-filter-btn span {
    display: none;
  }

  .gallery-filter-btn i {
    margin: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .gallery-title {
    font-size: 1rem;
  }

  .gallery-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .gallery-icon i {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .gallery-item {
    aspect-ratio: 1;
  }
}

/* ===== PROCESS STEPS - PÁGINA DE SERVIÇOS ===== */
.process-step {
  text-align: center;
  position: relative;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

/* Process Number */
.process-number {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  border-radius: 50%;
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 auto 25px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.3);
  transition: all 0.4s ease;
}

.process-number::before {
  content: '';
  position: absolute;
  inset: -5px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step:hover .process-number {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 15px 40px rgba(0, 123, 255, 0.4);
}

.process-step:hover .process-number::before {
  opacity: 0.3;
}

.process-step h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.process-step:hover h4 {
  color: var(--primary-color);
}

.process-step p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.95rem;
  margin: 0;
}

/* Connector Line between steps */
@media (min-width: 992px) {
  .process-step::after {
    content: '';
    position: absolute;
    top: 75px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    z-index: -1;
    opacity: 0.3;
  }

  .process-step:last-child::after {
    display: none;
  }
}

/* ===== CONTACT PAGE ===== */
/* Contact Info Wrapper */
.contact-info-wrapper {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
  position: sticky;
  top: 100px;
}

.contact-info-wrapper h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.contact-info-wrapper h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

/* Contact Info Items */
.contact-info-item {
  display: flex;
  align-items: start;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--light-color);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: white;
  box-shadow: var(--shadow-sm);
  transform: translateX(5px);
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  color: white;
  font-size: 22px;
  margin-right: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.contact-details h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.contact-details p {
  color: var(--text-muted);
  margin: 0;
  line-height: 1.8;
}

.contact-details a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Social Links in Contact */
.contact-social h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-top: 30px;
}

.contact-social .social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-social .social-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-color);
  border-radius: 50%;
  color: var(--text-dark);
  transition: all 0.3s ease;
  font-size: 18px;
}

.contact-social .social-link:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 15px;
}

.contact-form-wrapper h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: 2px;
}

/* Form Floating Labels */
.form-floating {
  position: relative;
}

.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  padding: 1rem 0.75rem;
  border: 2px solid #e9ecef;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  font-size: 1rem;
}

.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0.75rem;
  pointer-events: none;
  border: 2px solid transparent;
  transform-origin: 0 0;
  transition: all 0.3s ease;
  color: var(--text-muted);
  font-weight: 500;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-1rem) translateX(0.15rem);
  color: var(--primary-color);
}

.form-floating > .form-control:focus,
.form-floating > .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.1);
  outline: 0;
}

/* Validação Visual */
.form-control.is-valid,
.form-select.is-valid {
  border-color: var(--accent-color);
  padding-right: calc(1.5em + 0.75rem);
  background-image: none;
}

.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: none;
}

.valid-feedback {
  display: none;
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 8px;
}

.invalid-feedback {
  display: none;
  color: #dc3545;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 8px;
}

.form-control.is-valid ~ .valid-feedback,
.form-select.is-valid ~ .valid-feedback {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-control.is-invalid ~ .invalid-feedback,
.form-select.is-invalid ~ .invalid-feedback {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Textarea */
.form-floating > textarea.form-control {
  height: auto;
  min-height: 150px;
  resize: vertical;
}

/* Character Counter */
.form-text {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 8px;
}

#charCount {
  font-weight: 600;
  color: var(--primary-color);
}

/* Form Check */
.form-check {
  padding: 15px;
  background: var(--light-color);
  border-radius: var(--radius-md);
  transition: background 0.3s ease;
}

.form-check:hover {
  background: #e3e6ea;
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  border: 2px solid #dee2e6;
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.1);
}

.form-check-label {
  margin-left: 10px;
  cursor: pointer;
  color: var(--text-dark);
}

.form-check-label a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

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

/* Submit Button */
#submitBtn {
  position: relative;
  padding: 15px 45px;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

#submitBtn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

#submitBtn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#submitBtn .spinner-border {
  width: 1rem;
  height: 1rem;
  margin-right: 8px;
}

/* Map Section */
.map-section {
  margin-top: 60px;
}

#map {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Responsivo - Contact Page */
@media (max-width: 992px) {
  .contact-info-wrapper {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .contact-info-wrapper,
  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .contact-info-item {
    padding: 15px;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  #submitBtn {
    width: 100%;
    padding: 12px 30px;
    font-size: 1rem;
  }

  #map {
    height: 350px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--dark-color);
  color: white;
  padding-top: 1px; /* Fix para margens colapsantes */
}

.footer-top {
  padding: 60px 0 40px;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: white;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition-base);
}

.social-link:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
  display: inline-block;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 18px;
  width: 20px;
  flex-shrink: 0;
  padding-top: 4px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition-base);
}

.footer-contact a:hover {
  color: white;
}

.footer-bottom {
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-bottom a {
  color: white;
  font-weight: 500;
}

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

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 32px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  color: white;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 30px;
  left: 30px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Fallback se o ícone não carregar */
.back-to-top::before {
  content: '↑';
  position: absolute;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

.back-to-top i {
  position: relative;
  z-index: 1;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}

/* ===== CTA SECTION ===== */
/* ===== CTA SECTION - CALL TO ACTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  padding: 80px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: 100px 100px;
  opacity: 0.5;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-section .lead {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-section .btn-light {
  background: white;
  color: var(--primary-color);
  font-weight: 700;
  padding: 15px 45px;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  background: var(--light-color);
  color: var(--primary-color);
}

/* ===== BUTTONS ===== */
.btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  transition: var(--transition-base);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-outline-primary {
  border: 2px solid var(--primary-color);
}

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

.btn-outline-light {
  border: 2px solid white;
  color: white;
}

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

.btn-lg {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* ===== UTILITIES ===== */
.bg-light-gray {
  background-color: #f8f9fa;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  margin: 0 auto 30px;
}

/* ===== LOADING ===== */
.lazy-load {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy-load.loaded {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .back-to-top {
    left: 20px;
    bottom: 100px;
  }

  /* Service Cards em tablets */
  .service-card {
    padding: 35px 25px;
  }

  .service-icon {
    width: 80px;
    height: 80px;
  }

  .service-icon i {
    font-size: 38px;
  }

  /* Process steps em tablets */
  .process-number {
    width: 90px;
    height: 90px;
    font-size: 2.2rem;
  }

  .process-step h4 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  /* Service Cards em mobile */
  .service-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .service-icon i {
    font-size: 34px;
  }

  .service-title {
    font-size: 1.3rem;
  }

  .service-description {
    font-size: 0.9rem;
  }

  .service-features li {
    font-size: 0.85rem;
    padding: 8px 0;
  }

  /* Process Steps em mobile */
  .process-number {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .process-step h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .process-step p {
    font-size: 0.9rem;
  }

  .process-step {
    padding: 25px 15px;
    margin-bottom: 20px;
  }

  /* CTA Section em mobile */
  .cta-section h2 {
    font-size: 1.8rem;
  }

  .cta-section .lead {
    font-size: 1rem;
  }

  .cta-section .btn-light {
    padding: 12px 35px;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 28px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    width: 45px;
    height: 45px;
    font-size: 18px;
    left: 20px;
    bottom: 85px;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .footer-top {
    padding: 40px 0 30px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Animação escalonada para cards de serviço */
.service-card {
  animation: slideInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}
.service-card:nth-child(5) {
  animation-delay: 0.5s;
}
.service-card:nth-child(6) {
  animation-delay: 0.6s;
}

/* Animação escalonada para process steps */
.process-step {
  animation: scaleIn 0.5s ease-out backwards;
}

.process-step:nth-child(1) {
  animation-delay: 0.1s;
}
.process-step:nth-child(2) {
  animation-delay: 0.2s;
}
.process-step:nth-child(3) {
  animation-delay: 0.3s;
}
.process-step:nth-child(4) {
  animation-delay: 0.4s;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== FANCYBOX CUSTOMIZATION ===== */
.fancybox__backdrop {
  background: rgba(0, 0, 0, 0.95);
}

.fancybox__toolbar__items {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50px;
  padding: 5px;
}

.fancybox__toolbar button {
  color: white !important;
  transition: transform 0.2s ease;
}

.fancybox__toolbar button:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}

.fancybox__caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 30px 20px 20px;
  text-align: center;
  font-size: 1rem;
  color: white;
}

.fancybox__thumb {
  border: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.fancybox__thumb:hover,
.fancybox__thumb.is-nav-selected {
  border-color: var(--primary-color);
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .whatsapp-float,
  .back-to-top,
  .hero-section,
  .footer,
  .gallery-filters {
    display: none;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item {
    page-break-inside: avoid;
    margin-bottom: 20px;
  }
}
