@charset "UTF-8";:root {
  font-family: 'Inter', system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light;
  color: #213547;
  background-color: #ffffff;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

a {
  font-weight: 500;
  color: #646cff;
  text-decoration: inherit;
}
a:hover {
  color: #535bf2;
}

body {
  margin: 0;
  display: flex;
  place-items: center;
  min-width: 320px;
  min-height: 100vh;
}

h1 {
  font-size: 3.2em;
  line-height: 1.1;
}

button {
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 500;
  font-family: inherit;
  background-color: #1a1a1a;
  cursor: pointer;
  transition: border-color 0.25s;
}
button:hover {
  border-color: #646cff;
}
button:focus,
button:focus-visible {
  outline: 4px auto -webkit-focus-ring-color;
}

#root {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
}


/* Critical CSS for CLS and LCP optimization */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent layout shift */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Optimize font loading */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-display: swap; /* Importante para performance */
}

/* Preload hero images to improve LCP */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 100px 2rem 2rem;
  background: linear-gradient(135deg, #e6f3ff 0%, #cce7ff 100%);
  contain: layout style paint; /* CSS containment para performance */
}

/* Optimize carousel for performance */
.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  filter: brightness(1.05) contrast(1.05);
  will-change: opacity; /* Hint para GPU acceleration */
}

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

/* Additional global styles */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-brand h1 {
  color: #2c5282;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #2c5282;
}

/* Language Selector */
.language-selector {
  display: flex;
  gap: 0.25rem;
  margin-left: 2rem;
}

.language-selector button {
  padding: 4px 6px;
  border: 2px solid #2c5282;
  background: transparent;
  color: #2c5282;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  min-width: 30px;
}

.language-selector button:hover {
  background: #2c5282;
  color: white;
}

.language-selector button.active {
  background: #2c5282;
  color: white;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 100px 2rem 2rem;
  background: linear-gradient(135deg, #e6f3ff 0%, #cce7ff 100%);
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-rendering: optimizeLegibility;
}

.hero p {
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: #2c5282;
  color: white;
}

.btn-primary:hover {
  background: #1a365d;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #2c5282;
  border: 2px solid #2c5282;
}

.btn-secondary:hover {
  background: #2c5282;
  color: white;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}

/* Hero Carousel */
.hero-carousel {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 2rem;
}

.carousel-container {
  position: relative;
  width: 500px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(44, 82, 130, 0.3);
  transition: transform 0.3s ease;
}

.carousel-container:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 60px rgba(44, 82, 130, 0.4);
}

.carousel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  filter: brightness(1.05) contrast(1.05);
  will-change: opacity; /* Hint para GPU acceleration */
}

.carousel-image.active {
  opacity: 1;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot.active {
  background: #fff;
  transform: scale(1.3);
  border-color: #2c5282;
  box-shadow: 0 0 10px rgba(44, 82, 130, 0.5);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.1);
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #fff;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 3rem;
  text-rendering: optimizeLegibility;
}

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

.service-card {
  background: #fff;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(44, 82, 130, 0.15);
}

.service-image {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 12px 12px 0 0;
  position: relative;
}

/* Real Photos for Services */
.service-photo {
  overflow: hidden;
  background: none;
}

.service-real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-real-photo {
  transform: scale(1.05);
}

.icon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  padding: 0 1rem;
}

.large-icon {
  font-size: 4.5rem;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
  transition: all 0.3s ease;
  flex: 1;
  text-align: center;
}

.arrow-large {
  font-size: 3rem;
  color: #3182ce;
  font-weight: bold;
  animation: bounce 2s infinite;
  flex: 0.8;
  text-align: center;
  margin: 0 0.5rem;
}

.service-card:hover .large-icon {
  transform: scale(1.15) rotate(5deg);
}

.service-card:hover .arrow-large {
  transform: scale(1.2);
  color: #2c5282;
}

/* Gradientes mais vibrantes */
.transformacao {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 50%, #93c5fd 100%);
}

.acessorios {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 50%, #86efac 100%);
}

.tecnica {
  background: linear-gradient(135deg, #fef2f2 0%, #fecaca 50%, #fca5a5 100%);
}

.instalacao {
  background: linear-gradient(135deg, #f3e8ff 0%, #ddd6fe 50%, #c4b5fd 100%);
}

.homologacao {
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 50%, #fde68a 100%);
}

.consultoria {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #cbd5e0 100%);
}

/* Nova animação para a seta */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(10px);
  }
  60% {
    transform: translateX(5px);
  }
}

.service-card h3 {
  color: #1a365d;
  margin: 1.5rem 2rem 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 700;
  text-rendering: optimizeLegibility;
}

.service-card p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0 2rem 2rem 2rem;
  text-rendering: optimizeLegibility;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #f7fafc;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-text {
  flex: 1;
}

.about h2 {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 2rem;
  text-rendering: optimizeLegibility;
}

.about p {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

.stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat h3 {
  font-size: 2rem;
  color: #2c5282;
  font-weight: 700;
}

.stat p {
  font-size: 0.9rem;
  color: #4a5568;
  margin: 0;
  text-rendering: optimizeLegibility;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* About Gallery */
.about-gallery {
  width: 400px;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44, 82, 130, 0.2);
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about-photo:hover {
  transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: #fff;
}

.testimonials h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 3rem;
  text-rendering: optimizeLegibility;
}

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

.testimonial-card {
  background: #f7fafc;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #2c5282;
}

.testimonial-content p {
  font-style: italic;
  color: #4a5568;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c5282;
}

.author-info h4 {
  color: #1a365d;
  margin-bottom: 0.2rem;
  text-rendering: optimizeLegibility;
}

.author-info span {
  color: #4a5568;
  font-size: 0.9rem;
  text-rendering: optimizeLegibility;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: #f7fafc;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 3rem;
  text-rendering: optimizeLegibility;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background: #2c5282;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h3 {
  color: #1a365d;
  margin-bottom: 0.5rem;
  text-rendering: optimizeLegibility;
}

.contact-item p {
  color: #4a5568;
  margin: 0;
  text-rendering: optimizeLegibility;
}

/* Contact Links */
.contact-link {
  color: #4a5568;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.contact-link:hover {
  color: #2c5282;
  transform: translateY(-1px);
}

.phone-link:hover {
  color: #38a169;
}

.email-link:hover {
  color: #3182ce;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(44, 82, 130, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c5282;
}

.form-group textarea {
  resize: vertical;
}

/* Direct Contact Options */
.direct-contact-options {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e2e8f0;
}

.or-divider {
  text-align: center;
  color: #718096;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.quick-contact-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.quick-btn {
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  justify-content: center;
  min-width: 120px;
}

.phone-btn {
  background: #38a169;
  color: white;
  border-color: #38a169;
}

.phone-btn:hover {
  background: #2f855a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 161, 105, 0.3);
}

.whatsapp-btn {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

.whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.email-btn {
  background: #3182ce;
  color: white;
  border-color: #3182ce;
}

.email-btn:hover {
  background: #2c5282;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(49, 130, 206, 0.3);
}

/* Footer Links */
.footer-link {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Map Section */
.contact-map {
  margin-top: 4rem;
}

.contact-map h3 {
  font-size: 2rem;
  color: #1a365d;
  margin-bottom: 2rem;
  text-align: center;
  text-rendering: optimizeLegibility;
}

.map-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(44, 82, 130, 0.1);
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* Footer */
.footer {
  background: #1a365d;
  color: white;
  padding: 40px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
  margin-bottom: 1rem;
  color: #fff;
  text-rendering: optimizeLegibility;
  letter-spacing: 1px;
}

.footer-section p {
  color: #cbd5e0;
  margin-bottom: 1rem;
  text-rendering: optimizeLegibility;
}

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

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #cbd5e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

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

.social-links a {
  background: #2c5282;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #3d63a8;
  transform: translateY(-2px);
}

/* Footer Logo */
.footer-logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo-section h3 {
  margin: 0;
  color: #fff;
  text-rendering: optimizeLegibility;
  letter-spacing: 1px;
}

.footer-bottom {
  border-top: 1px solid #2d3748;
  padding-top: 1rem;
  text-align: center;
  color: #cbd5e0;
  text-rendering: optimizeLegibility;
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.gallery h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 1rem;
  text-rendering: optimizeLegibility;
}

.gallery-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #4a5568;
  margin-bottom: 3rem;
  text-rendering: optimizeLegibility;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44, 82, 130, 0.1);
  transition: all 0.3s ease;
  background: #fff;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(44, 82, 130, 0.2);
}

.gallery-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-photo {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.gallery-overlay p {
  font-size: 0.95rem;
  color: #e2e8f0;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }
  
  .nav-menu {
    display: none;
  }
  
  .language-selector {
    margin-left: 0;
    order: 2;
  }
  
  .nav-toggle {
    display: flex;
    order: 3;
  }
  
  .logo {
    height: 40px;
  }
  
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 1rem 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-image {
    margin-left: 0;
    margin-top: 2rem;
  }
  
  .hero-carousel {
    margin-left: 0;
  }
  
  .carousel-container {
    width: 350px;
    height: 280px;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-photo {
    height: 220px;
  }
  
  .gallery h2 {
    font-size: 2rem;
  }
  
  .gallery-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  
  .about-gallery {
    width: 350px;
    height: 280px;
  }
  
  .stats {
    justify-content: center;
  }
  
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .quick-contact-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .quick-btn {
    min-width: auto;
    flex: none;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .language-selector {
    gap: 0.25rem;
  }
  
  .language-selector button {
    padding: 4px 6px;
    font-size: 0.75rem;
    min-width: 30px;
  }

  .map-container iframe {
    height: 300px;
  }

  .contact-map h3 {
    font-size: 1.5rem;
  }
  
  .footer-logo {
    height: 30px;
  }
  
  .footer-logo-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}

/* Responsive para tablets */
@media (max-width: 1024px) and (min-width: 769px) {
  .carousel-container {
    width: 450px;
    height: 360px;
  }
  
  .about-gallery {
    width: 350px;
    height: 280px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
