:root {
  color-scheme: dark;
  --bg: #05070d;
  --surface: rgba(14, 20, 34, 0.9);
  --surface-soft: rgba(12, 16, 28, 0.8);
  --text: #f7f8fb;
  --text-soft: #bfc7d6;
  --primary: #1A73E8;
  --primary-soft: #1EC0E6;
  --accent: #0D47A1;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: radial-gradient(circle at top, rgba(61, 126, 255, 0.14), transparent 24%),
              linear-gradient(180deg, #05070d 0%, #080b15 100%);
  color: var(--text);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.top-banner {
  width: 100%;
  background: rgba(26, 115, 232, 0.12);
  color: #1EC0E6;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(26, 115, 232, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(4, 7, 15, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.brand span {
  color: var(--primary);
}

.navigation {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.navigation a {
  color: var(--text-soft);
  font-weight: 500;
  transition: color 0.25s ease;
}

.navigation a:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  width: 2rem;
  height: 2rem;
  position: relative;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 107, 61, 0.18), transparent 16%),
              radial-gradient(circle at bottom left, rgba(61, 126, 255, 0.15), transparent 18%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: center;
  min-height: 720px;
}

.hero-copy {
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.02;
  margin: 0 0 1.2rem;
  letter-spacing: -0.05em;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-soft);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-soft));
  color: #09101e;
  box-shadow: 0 18px 45px rgba(26, 115, 232, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.14);
}

.btn:hover {
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.hero-stats div {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  min-width: 140px;
}

.hero-stats strong {
  display: block;
  font-size: 1.6rem;
  color: #fff;
}

.hero-stats span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.hero-visual {
  display: grid;
  gap: 1rem;
  align-items: center;
  justify-items: end;
}

.visual-card {
  width: 100%;
  min-height: 180px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.1));
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(18px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.visual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 107, 61, 0.22), transparent 30%),
              radial-gradient(circle at bottom right, rgba(61, 126, 255, 0.17), transparent 30%);
}

.visual-card-1 {
  min-height: 260px;
  background: linear-gradient(180deg, rgba(5,7,13,0.2), rgba(5,7,13,0.5)),
              url('imagens/uniforme.avif') center/cover no-repeat;
}
.visual-card-2 {
  min-height: 220px;
  background: linear-gradient(180deg, rgba(5,7,13,0.24), rgba(5,7,13,0.5)),
              url('imagens/dtf.jpg') center/cover no-repeat;
}
.visual-card-3 {
  min-height: 160px;
  background: linear-gradient(180deg, rgba(5,7,13,0.16), rgba(5,7,13,0.52)),
              url('imagens/estamparia.webp') center/cover no-repeat;
}

.visual-chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  backdrop-filter: blur(14px);
}

.options h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.option-btn {
  display: block;
  padding: 1.5rem;
  background: var(--primary);
  color: #fff;
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 30px rgba(26, 115, 232, 0.3);
}

.option-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(26, 115, 232, 0.4);
}

.section {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-head h2 {
  font-size: clamp(2rem, 2.6vw, 2.8rem);
  margin: 0 0 1rem;
}

.section-head p {
  color: var(--text-soft);
  max-width: 700px;
  line-height: 1.85;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.about-cards {
  display: grid;
  gap: 1rem;
}

.glass-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 28px 60px rgba(0,0,0,0.16);
  padding: 1.8rem;
  border-radius: 28px;
  backdrop-filter: blur(18px);
}

.glass-card h3 {
  margin-top: 0;
  font-size: 1.15rem;
}

.services-grid,
.dtf-grid,
.advantages-grid,
.testimonials-grid,
.process-grid,
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card {
  padding: 1.8rem;
  background: rgba(255,255,255,0.04);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(26, 115, 232, 0.25);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.85rem;
}

.dtf {
  background: linear-gradient(180deg, rgba(12, 20, 32, 0.98), rgba(5, 7, 13, 0.95));
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dtf-content {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 2rem;
  align-items: center;
}

.dtf-info p {
  max-width: 560px;
}

.dtf-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dtf-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: 0 24px 50px rgba(0,0,0,0.18);
}

.dtf-card strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.dtf-visual {
  position: relative;
  min-height: 440px;
}

.dtf-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.dtf-image {
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: linear-gradient(145deg, rgba(61,126,255,0.18), rgba(255,107,61,0.18));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 38px 80px rgba(0,0,0,0.28);
}

.advantages-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advantage-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 1.6rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.advantage-card:hover {
  transform: translateY(-6px);
}

.advantages-grid h3 {
  margin: 0 0 0.85rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0;
}

.filter-btn {
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: rgba(26,115,232,0.18);
  border-color: rgba(26,115,232,0.35);
}

.gallery-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding-bottom: 1rem;
}

.gallery-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 260px;
  cursor: pointer;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-8px);
}

.gallery-card .thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.gallery-card:hover .thumb {
  transform: scale(1.08);
}

.gallery-card span {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  z-index: 1;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 15px 30px rgba(0,0,0,0.55);
}

.gallery-card:nth-child(1) .thumb { background-image: linear-gradient(135deg, rgba(26, 115, 232, 0.5), rgba(5, 7, 13, 0.5)), url('galeria/uniforme1.jpg'); }
.gallery-card:nth-child(2) .thumb { background-image: linear-gradient(135deg, rgba(26, 115, 232, 0.4), rgba(5, 7, 13, 0.4)), url('galeria/uniformeempresairais1.jpg'); }
.gallery-card:nth-child(3) .thumb { background-image: linear-gradient(135deg, rgba(26, 115, 232, 0.5), rgba(5, 7, 13, 0.5)), url('galeria/infantil1.jpg'); }
.gallery-card:nth-child(4) .thumb { background-image: linear-gradient(135deg, rgba(26, 115, 232, 0.5), rgba(5, 7, 13, 0.5)), url('galeria/personalizados1.jpg'); }
.gallery-card:nth-child(5) .thumb { background-image: linear-gradient(135deg, rgba(26, 115, 232, 0.5), rgba(5, 7, 13, 0.5)), url('galeria/dtf1.jpg'); }
.gallery-card:nth-child(6) .thumb { background-image: linear-gradient(135deg, rgba(26, 115, 232, 0.4), rgba(5, 7, 13, 0.4)), url('galeria/dtf2.jpg'); }
.gallery-card:nth-child(7) .thumb { background: linear-gradient(135deg, rgba(26, 115, 232, 0.2), rgba(5, 7, 13, 0.4)); }

.testimonials-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 26px 60px rgba(0,0,0,0.18);
}

.testimonial-card p {
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.testimonial-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.testimonial-card span {
  color: var(--text-soft);
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-step {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 1.8rem;
  text-align: center;
  position: relative;
}

.process-step span {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: rgba(26,115,232,0.2);
  color: var(--text);
  font-weight: 700;
}

.process-step h3 {
  margin-bottom: 1rem;
}

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

.contact-info {
  display: grid;
  gap: 1.25rem;
}

.contact-highlights {
  display: grid;
  gap: 1rem;
}

.contact-highlights div {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 1rem 1.2rem;
}

.contact-highlights strong {
  display: block;
  margin-bottom: 0.35rem;
}

.contact-map {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 32px;
  padding: 2rem;
  box-shadow: 0 34px 70px rgba(0,0,0,0.2);
}

.field-group {
  display: grid;
  gap: 0.5rem;
}

.field-group label {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: #fff;
  padding: 1rem 1.1rem;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: rgba(61,126,255,0.7);
  box-shadow: 0 0 0 3px rgba(61,126,255,0.15);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

.site-footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.footer-grid strong {
  display: block;
  margin-bottom: 0.8rem;
}

.footer-grid p,
.footer-grid a {
  color: var(--text-soft);
  line-height: 1.8;
}

.footer-grid a:hover {
  color: #fff;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.9s forwards ease;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.28s; }
.delay-3 { animation-delay: 0.42s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.68s; }
.delay-6 { animation-delay: 0.82s; }

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .hero-content,
  .dtf-content,
  .contact-grid,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
  }

  .hero-visual {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

  .gallery-grid,
  .testimonials-grid,
  .advantages-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .hero-content {
    align-items: start;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .visual-card-1,
  .visual-card-2,
  .visual-card-3 {
    min-height: 180px;
  }

  .section-head {
    text-align: center;
  }

  .about-cards,
  .options-grid,
  .dtf-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-filters {
    justify-content: flex-start;
    overflow-x: auto;
  }
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
  }

  .navigation {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    border-radius: 0;
    background: #05070d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    width: 100%;
    z-index: 30;
  }

  .navigation.open {
    max-height: 600px;
    padding: 1.5rem;
  }

  .navigation a {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.8rem 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
  }

  .gallery-grid,
  .testimonials-grid,
  .advantages-grid,
  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-filters {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header,
  .top-banner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .hero p,
  .section-head p,
  .testimonial-card p,
  .service-card p,
  .dtf-card p,
  .process-step p {
    font-size: 0.98rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.9rem;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .visual-card {
    min-height: 160px;
  }

  .gallery-card {
    min-height: 220px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .contact-info {
    padding-left: 0;
    padding-right: 0;
  }

  .navigation {
    top: 5rem;
    left: 0;
    right: 0;
    width: 100%;
  }

  .navigation.open {
    max-height: 700px;
  }

  .gallery-filters {
    gap: 0.6rem;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease;
}

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

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  border-radius: 5px;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}
