/* Estilos de páginas internas */
.breadcrumb {
  background: #f4f4f4;
  padding: 0.8rem 0;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--brand-blue);
  text-decoration: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2rem 0;
}

.contact-info {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
}

.contact-info h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.8rem;
  color: #666;
}

.contact-info a {
  color: #2563eb;
  font-weight: bold;
}

.map-container {
  background: #eee;
  border-radius: 8px;
  height: 300px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.product-detail img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.feature {
  background: #ffffff;
  padding: 1.25rem 1.35rem;
  border-radius: 12px;
  border: 1px solid #d5dde5;
  border-left: 4px solid var(--brand-blue);
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.feature:hover {
  border-color: var(--brand-blue-light);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

.feature h4 {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.9);
  color: #fff;
  padding: 1rem;
  font-size: 0.9rem;
}

.gallery-loading,
.gallery-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #666;
  padding: 2rem 1rem;
}

/* Carrossel de clientes */
.clients-carousel {
  margin-top: 2rem;
}

.clients-carousel-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.clients-carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 10px;
}

.clients-carousel-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.clients-carousel-slide {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.35rem;
  box-sizing: border-box;
}

.clients-carousel .client-logo {
  background: #fff;
  padding: 0.4rem 0.5rem;
  border-radius: 8px;
  width: fit-content;
  max-width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.clients-carousel .client-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(220px, 100%);
  max-height: 100px;
  object-fit: contain;
}

.clients-carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.clients-carousel-btn:hover:not(:disabled) {
  background: rgba(59, 130, 246, 0.35);
  border-color: #93c5fd;
}

.clients-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.clients-carousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.clients-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.clients-carousel-dot.is-active {
  background: #3b82f6;
  transform: scale(1.15);
}

.clients-carousel .gallery-loading,
.clients-carousel .gallery-empty {
  text-align: center;
  color: #cbd5e1;
  padding: 2rem 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .clients-carousel-track {
    transition: none;
  }
}

@media (max-width: 575px) {
  .clients-carousel-shell {
    gap: 0.25rem;
  }

  .clients-carousel-btn {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .clients-carousel .client-logo img {
    max-height: 84px;
    max-width: min(160px, 100%);
  }
}

.content {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 0 auto;
}

.content h2 {
  color: #1a1a1a;
  margin: 1.5rem 0 1rem;
}

.content p {
  margin-bottom: 1rem;
  color: #666;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.section-produtos {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, #ffffff 0%, #ecf0f1 100%);
}

.section-produtos .container {
  text-align: center;
}

.section-produtos .section-title {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
}

.section-produtos .products-grid {
  text-align: left;
}

.feature h3 {
  color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.feature p {
  color: #5d6d7e;
  font-size: 0.92rem;
  margin: 0;
}

.section-diferenciais {
  background: #f8fafc;
}

.section-diferenciais .features {
  max-width: 980px;
  margin: 0 auto;
}

.section-letreiros {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, #ecf0f1 0%, #ffffff 100%);
}

.section-letreiros .container {
  text-align: center;
}

.section-letreiros .section-title {
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
  letter-spacing: 0.02em;
}

.letreiros-intro {
  max-width: 560px;
  margin: 0 auto 2rem;
  color: #5d6d7e;
  font-size: 1.05rem;
}

.letreiros-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
  text-align: left;
}

.letreiros-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  background: #ffffff;
  border: 1px solid #d5dde5;
  border-radius: 12px;
  text-decoration: none;
  color: #2c3e50;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.35;
  min-height: 58px;
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.letreiros-card:hover {
  border-color: var(--brand-blue-light);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.16);
  transform: translateY(-2px);
  color: #2c3e50;
}

.letreiros-card-icon {
  flex-shrink: 0;
  color: var(--brand-blue);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.letreiros-card:hover .letreiros-card-icon {
  transform: translateX(3px);
}

.letreiros-card--wide {
  grid-column: span 1;
}

@media (max-width: 900px) {
  .letreiros-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .letreiros-grid {
    grid-template-columns: 1fr;
  }

  .letreiros-card--wide {
    grid-column: span 1;
  }
}

.letreiros-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.btn-compact {
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
}

.btn-secondary {
  margin-left: 0.5rem;
  background: #34495e;
}

.btn-secondary:hover {
  background: #2c3e50;
}

.about-content p {
  margin-bottom: 1rem;
}

.section-title--left {
  text-align: left;
}

.section-title--light {
  color: #fff;
}

.section-testimonials {
  background: #f8fafc;
}

.testimonial-quote {
  font-style: italic;
}

.products-intro {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  color: #666;
  line-height: 1.8;
  text-align: center;
}

.section-media {
  background: #f8fafc;
  border-radius: 16px;
}

.media-intro {
  max-width: 760px;
  margin: 0 auto 1.75rem;
  color: #5d6d7e;
  line-height: 1.7;
  text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1080px;
  margin: 0 auto;
}

.youtube-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 1rem;
}

.video-card {
  background: #ffffff;
  border: 1px solid #d5dde5;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.video-card:hover {
  border-color: var(--brand-blue-light);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.16);
  transform: translateY(-2px);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f172a;
  object-fit: cover;
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #0f172a;
}

.video-card h3 {
  margin: 0;
  padding: 1rem 1.15rem 0.35rem;
  color: #2c3e50;
  font-size: 0.98rem;
}

.video-card-desc {
  margin: 0;
  padding: 0 1.15rem 1rem;
  color: #5d6d7e;
  font-size: 0.88rem;
  line-height: 1.5;
}

.video-card-desc a {
  color: var(--brand-blue);
  font-weight: 600;
  text-decoration: none;
}

.video-card-desc a:hover {
  text-decoration: underline;
}

.media-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.media-subtitle {
  max-width: 1080px;
  margin: 2rem auto 0;
  color: #2c3e50;
  font-size: 1.15rem;
  text-align: left;
}

@media (max-width: 900px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .video-grid,
  .youtube-grid {
    grid-template-columns: 1fr;
  }
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.areas-grid {
  text-align: left;
}

.app-footer-legal {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

.app-footer-legal a {
  color: #ecf0f1;
  text-decoration: underline;
}
