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

:root {
  --primary: #0056CC;
  --primary-dark: #003d99;
  --secondary: #f0f4ff;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --border: #e0e0e0;
  --white: #ffffff;
  --success: #4CAF50;
  --font-display: 'Sora', sans-serif;
}

html {
  scroll-padding-top: 100px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

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

/* Header */
.header {
  display: flex;
  align-items: center;
  padding: 20px 0;
  background: rgba(245, 247, 255, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #E0E7FF;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: #002B6F;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .logo-img {
    height: 42px;
  }
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

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

.nav a.nav-cta {
  background: #007DF5;
  color: #fff;
  padding: 10px 20px;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(0, 125, 245, 0.28);
  font-weight: 600;
  transition: all 0.3s ease;
}

.nav a.nav-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 125, 245, 0.35);
}

/* Botão hambúrguer — escondido no desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 300;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: #002B6F;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
  transform-origin: center;
}

/* Hambúrguer vira "X" quando o menu está aberto */
body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #0060D8 0%, #0037A6 55%, #002B6F 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 8px 16px;
  width: fit-content;
  font-size: 14px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4CAF50;
  display: inline-block;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
}

.hero-highlight {
  color: #8EC6FF;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12.5px;
  letter-spacing: 1.4px;
}

.hero-tags span:not(:last-child)::after {
  content: '·';
  margin-left: 10px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

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

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

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

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
}

.hero-photo {
  width: 100%;
  max-width: 420px;
  height: 520px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  box-shadow: 0 30px 70px rgba(0, 20, 60, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: block;
}

.hero-float-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 34px rgba(0, 20, 60, 0.28);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-float-badge strong {
  font-family: var(--font-display);
  font-weight: 800;
  color: #002B6F;
  font-size: 20px;
}

.hero-float-badge span {
  font-size: 12px;
  color: var(--text-light);
}

.hero-float-badge--top {
  top: -16px;
  left: -16px;
}

.hero-float-badge--bottom {
  bottom: -16px;
  right: -16px;
}

@media (max-width: 1024px) {
  .hero-photo {
    max-width: 340px;
    height: 420px;
  }
}

@media (max-width: 768px) {
  .hero-photo {
    max-width: 100%;
    height: 320px;
    object-position: center 20%;
  }
}

/* Instagram Performance */
.instagram-performance {
  padding: 60px 0;
  background: var(--secondary);
}

.instagram-performance h2 {
  font-size: 32px;
  margin-bottom: 8px;
  color: var(--primary);
}

.period {
  color: var(--text-light);
  margin-bottom: 32px;
}

.performance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.performance-item {
  background: var(--white);
  padding: 24px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.performance-item .label {
  color: var(--text-light);
  font-size: 14px;
}

.performance-item .value {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.performance-credit {
  color: var(--text-light);
  font-size: 14px;
}

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

.section-label {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.services h2 {
  font-size: 40px;
  margin-bottom: 48px;
  max-width: 600px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--secondary);
  padding: 32px 24px;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 86, 204, 0.15);
}

.service-icon {
  font-size: 48px;
}

.service-card h3 {
  color: var(--primary);
  font-size: 20px;
}

.service-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
  padding: 80px 0;
  background: #f8f9fa;
}

.portfolio-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.portfolio .section-label {
  color: #007DF5;
}

.portfolio-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #002B6F;
}

.portfolio-header p {
  font-size: 15px;
  color: #666666;
}

.portfolio-slider {
  position: relative;
  overflow: hidden;
  margin-top: 2rem;
}

.slider-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.slider-track::-webkit-scrollbar {
  display: none;
}

.portfolio-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 300px;
  height: 400px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
  cursor: pointer;
}

.portfolio-card-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.portfolio-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.portfolio-slide.active {
  opacity: 1;
}

.portfolio-slide-dots {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 3;
}

.portfolio-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.3s ease;
}

.portfolio-dot.active {
  background: #FFFFFF;
}

.portfolio-card[data-tipo="WEDDING"] .portfolio-slide,
.portfolio-card[data-tipo="CORPORATIVO"] .portfolio-slide {
  object-position: center center;
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.portfolio-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  z-index: 2;
  color: #FFFFFF;
}

.portfolio-badge {
  background: rgba(0, 125, 245, 0.9);
  color: #FFFFFF;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  display: inline-block;
}

.portfolio-title {
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.portfolio-description {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.slider-prev, .slider-next {
  pointer-events: all;
  background: rgba(0, 93, 207, 0.8);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  margin: 0 1rem;
}

.slider-prev:hover, .slider-next:hover {
  background: #007DF5;
  transform: scale(1.1);
}

/* About Section */
.about {
  padding: 0;
}

/* Card branco envolvendo foto + texto */
.about-card {
  background: #fff;
  border: 1px solid #E0E7FF;
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 10px 40px rgba(0, 20, 60, 0.06);
}

/* Container principal */
.about-container {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 3rem;
  align-items: stretch;
}

/* LEFT: Foto */
.about-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.about-image {
  width: 100%;
  height: 100%;
  min-height: 440px;
  max-width: 360px;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
}

/* RIGHT: Conteúdo */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 26px 30px 26px 0;
  align-self: center;
}

/* Label */
.about-label {
  color: #007DF5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Título */
.about-title {
  font-size: 32px;
  font-weight: 700;
  color: #002B6F;
  margin: 0;
  line-height: 1.3;
}

/* Parágrafos */
.about-text {
  font-size: 15px;
  color: #333333;
  line-height: 1.8;
  margin: 0;
}

/* Highlights em 2 colunas */
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  color: #333333;
  font-weight: 500;
}

.highlight-icon {
  width: 20px;
  height: 20px;
  background: #E4F7EC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00B34F;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .about-card {
    padding: 10px;
    border-radius: 18px;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .about-image {
    max-width: 280px;
    height: 360px;
    min-height: unset;
  }

  .about-content {
    padding: 0;
    align-self: auto;
  }

  .about-title {
    font-size: 28px;
  }

  .about-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .about-image {
    max-width: 100%;
    height: auto;
    max-height: 360px;
    min-height: unset;
  }

  .about-highlights {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .about-title {
    font-size: 24px;
  }
}

/* Testimonials Section */
.testimonials {
  padding: 80px 0;
  background: var(--secondary);
}

.testimonials h2 {
  font-size: 40px;
  margin-bottom: 48px;
}

.testimonials-slider {
  position: relative;
  margin-top: 2rem;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-track::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  background: var(--white);
  padding: 28px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 320px;
  scroll-snap-align: start;
  border: 1px solid #E0E7FF;
  box-shadow: 0 2px 10px rgba(0, 20, 60, 0.04);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: #007DF5;
  box-shadow: 0 8px 24px rgba(0, 125, 245, 0.15);
}

.testimonial-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 1.5rem;
}

.testimonial-prev, .testimonial-next {
  background: rgba(0, 93, 207, 0.8);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
}

.testimonial-prev:hover, .testimonial-next:hover {
  background: #007DF5;
  transform: scale(1.1);
}

.testimonial-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}

.avatar--brand {
  background: linear-gradient(135deg, #007DF5, #0056CC);
}

.testimonial-header h3 {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0;
}

.testimonial-header p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

.stars {
  color: #ffc107;
  font-size: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  font-style: italic;
}

/* Process Section */
.process {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.how-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/equipamentos.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.how-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 43, 111, 0.92) 0%, rgba(0, 86, 204, 0.88) 100%);
}

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

.process h2 {
  font-size: 40px;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.process .section-label {
  color: #FFFFFF;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 18px;
  margin-bottom: 48px;
}

.process .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process .step {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 24px;
}

.step-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
}

.process .step-number {
  color: rgba(255, 255, 255, 0.4);
}

.step h3 {
  font-size: 18px;
  color: var(--text-dark);
}

.process .step h3 {
  color: #FFFFFF;
}

.step p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}

.process .step p {
  color: rgba(255, 255, 255, 0.85);
}

/* CTA Section */
.cta-section {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-section > .container > p {
  font-size: 18px;
  margin-bottom: 48px;
  opacity: 0.95;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 28px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.contact-icon {
  font-size: 32px;
}

.contact-card h3 {
  font-size: 18px;
  margin: 0;
}

.contact-card p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

.contact-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--white);
  display: inline-block;
  padding-bottom: 2px;
}

.contact-note {
  font-size: 13px;
  opacity: 0.8;
}

/* Footer */
.footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}

.footer-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
}

.footer-nav a:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .header .container {
    flex-direction: row;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, #007DF5 0%, #0056CC 100%);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 200;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
  }

  .nav a:hover {
    color: #fff;
    opacity: 1;
  }

  .nav a.nav-cta {
    margin-top: 1rem;
    background: #fff;
    color: #007DF5;
    font-size: 1.1rem;
    opacity: 1;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }

  .nav a.nav-cta:hover {
    color: #007DF5;
    transform: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  /* Hero mobile: foto logo apos o titulo (display:contents dissolve o
     .hero-content e usamos order pra sequencia) */
  .hero {
    padding: 32px 0 48px;
  }

  .hero .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-content {
    display: contents;
  }

  .hero .badge { order: 1; }
  .hero h1 {
    order: 2;
    font-size: 36px;
    text-align: center;
  }
  .hero-image {
    order: 3;
    height: auto;
  }
  .hero p {
    order: 4;
    text-align: center;
  }
  .hero-cta {
    order: 5;
    flex-direction: column;
  }
  .hero-tags { order: 6; }

  /* Selos sobrepostos aos cantos da foto (para dentro, sem cortar) */
  .hero-float-badge {
    padding: 7px 10px;
  }

  .hero-float-badge strong {
    font-size: 15px;
  }

  .hero-float-badge span {
    font-size: 10.5px;
  }

  .hero-float-badge--top {
    top: 12px;
    left: 12px;
  }

  .hero-float-badge--bottom {
    bottom: 12px;
    right: 12px;
  }

  /* Tags viram chips arredondados centralizados */
  .hero-tags {
    justify-content: center;
    gap: 10px;
  }

  .hero-tags span {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 7px 16px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
  }

  .hero-tags span:not(:last-child)::after {
    content: none;
  }

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

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

  .portfolio-card {
    flex: 0 0 85vw;
    height: 320px;
    min-width: unset;
  }

  .portfolio-title {
    font-size: 16px;
  }

  .portfolio-description {
    font-size: 12px;
  }

  .slider-controls {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 85vw;
  }

  .testimonial-controls {
    display: none;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer .container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .portfolio-card {
    flex: 0 0 calc(50% - 1rem);
    height: 360px;
  }
}

@media (max-width: 480px) {
  html {
    scroll-padding-top: 90px;
  }

  .container {
    padding: 0 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }
}
