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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

/* ===================== HEADER ===================== */
#header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, .3);
  backdrop-filter: blur(10px);
  z-index: 100;
  transition: transform .4s ease;
}

.logo-header {
  width: 200px;
}

nav {
  display: flex;
  gap: 35px;
}

nav a {
  color: #fff;
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #c70000;
  transition: .3s;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

/* ===================== MENU TOGGLE (HAMBURGUESA) ===================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

/* ===================== HEADER RESPONSIVE ===================== */
@media (max-width: 1024px) {
  #header {
    padding: 16px 6%;
  }

  .logo-header {
    width: 180px;
  }

  nav {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  #header {
    padding: 15px 5%;
  }

  .logo-header {
    width: 160px;
  }

  .menu-toggle {
    display: flex;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 100;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.5);
  }

  nav.active {
    right: 0;
  }

  nav a {
    width: 100%;
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  nav a:last-child {
    border-bottom: none;
  }

  nav a:hover,
  nav a.active {
    color: #c70000;
    padding-left: 10px;
  }

  nav a::after {
    display: none;
  }

  /* Overlay cuando el menú está abierto */
  body.menu-open::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 99;
    animation: fadeIn 0.3s ease;
    pointer-events: all;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  /* Asegurar que el header esté visible cuando el menú está abierto */
  body.menu-open #header {
    transform: translateY(0) !important;
  }
}

@media (max-width: 480px) {
  #header {
    padding: 12px 4%;
  }

  .logo-header {
    width: 140px;
  }

  nav {
    width: 100%;
    right: -100%;
    padding: 70px 25px 25px;
  }

  nav a {
    font-size: 1rem;
    padding: 18px 0;
  }

  .menu-toggle {
    width: 28px;
    height: 28px;
  }

  .menu-toggle span {
    height: 2.5px;
  }
}

@media (max-width: 360px) {
  .logo-header {
    width: 120px;
  }

  nav {
    padding: 65px 20px 20px;
  }

  nav a {
    font-size: 0.95rem;
    padding: 16px 0;
  }
}

/* ===================== HERO ===================== */
#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.2s ease-in-out, transform 6s ease;
  will-change: transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 2;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("https://grainy-gradients.vercel.app/noise.svg");
  opacity: .18;
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 8%;
}

.hero-logo {
  width: 320px;
  margin-bottom: 35px;
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: #ddd;
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-btn {
  padding: 16px 45px;
  border-radius: 50px;
  background: #c40018;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  border: 2px solid #c40018;
  transition: .35s;
}

.hero-btn:hover {
  background: #fff;
  color: #c40018;
}

@media (max-width: 768px) {
  .hero-logo {
    width: 240px;
  }

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

/* Socios Comerciales */
.socios-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.socios-section .section-title {
  font-size: 2rem;
  color: #000;
  margin-bottom: 40px;
}

.socios-section .subsection-title {
  font-size: 1.5rem;
  color: #000;
  margin: 30px 0 20px;
}

/* Grid de logos: 9 por fila */
.socios-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 20px;
  justify-items: center;
  align-items: center;
  margin-bottom: 40px;
}

.socios-card img {
  width: 80px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.socios-card img:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1440px) {
  .socios-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

@media (max-width: 1200px) {
  .socios-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (max-width: 992px) {
  .socios-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .socios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .socios-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Sección y título */
.services-gallery {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.services-gallery .gallery-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #000;
}

/* Grid responsive */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  justify-items: center;
  align-items: start;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  /* mantiene proporción cuadrada */
  max-width: 500px;
  /* tamaño máximo en escritorio */
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.5s ease, transform 0.3s ease;
  cursor: pointer;
  border-radius: 5px;
}

.gallery-item img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  display: flex;
}

.modal-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

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

/* Flechas blancas sin fondo */
.prev,
.next {
  position: absolute;
  top: 50%;
  color: #fff;
  font-size: 60px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  padding: 0;
  transform: translateY(-50%);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.prev:hover,
.next:hover,
.close:hover {
  color: #ddd;
}

/* Media queries responsive */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===================== CERTIFICATION BAR ===================== */
.cert-bar {
  background: #000;
  padding: 60px 8%;
  display: flex;
  justify-content: center;
}

.cert-logos {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-wrap: wrap;
}

.cert-logos img {
  height: 55px;
  opacity: .85;
  filter: grayscale(100%);
  transition: .3s;
}

.cert-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* ===================== CERTIFICATION BAR RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .cert-bar {
    padding: 50px 6%;
  }

  .cert-logos {
    gap: 50px;
  }

  .cert-logos img {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .cert-bar {
    padding: 40px 5%;
  }

  .cert-logos {
    gap: 35px;
    justify-content: center;
  }

  .cert-logos img {
    height: 45px;
  }
}

@media (max-width: 480px) {
  .cert-bar {
    padding: 35px 4%;
  }

  .cert-logos {
    gap: 30px 25px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }

  .cert-logos img {
    height: 40px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    flex: 0 0 auto;
  }
}

@media (max-width: 360px) {
  .cert-bar {
    padding: 30px 3%;
  }

  .cert-logos {
    gap: 25px 20px;
    flex-wrap: wrap;
  }

  .cert-logos img {
    height: 35px;
    max-width: 100px;
    width: auto;
    object-fit: contain;
  }
}

/* Optimización para tablets en landscape */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .cert-bar {
    padding: 45px 6%;
  }

  .cert-logos {
    gap: 45px;
  }

  .cert-logos img {
    height: 48px;
  }
}

/* ===================== ABOUT ===================== */
.about-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  overflow: hidden;
  background: #000;
}

.about-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.about-dark {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1;
}

.about-content {
  position: relative;
  z-index: 2;
  width: 50%;
  margin-left: 0;
  margin-right: auto;
  padding: 120px 8%;
  color: #fff;
}

.about-content h2 {
  font-size: 3.4rem;
}

.about-line {
  width: 80px;
  height: 3px;
  background: #c70000;
  margin: 22px 0 35px;
}

.about-content p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 22px;
}

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 45px;
}

.about-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: .4s;
}

.about-gallery img:hover {
  filter: grayscale(0%);
  transform: scale(1.04);
}

/* ===================== ABOUT RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .about-content {
    width: 55%;
    padding: 100px 6%;
  }

  .about-content h2 {
    font-size: 2.8rem;
  }

  .about-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .about-section {
    min-height: auto;
    padding: 80px 0;
  }

  .about-bg {
    position: absolute;
    inset: 0;
    opacity: 0.3;
  }

  .about-dark {
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
  }

  .about-content {
    width: 100%;
    padding: 60px 6%;
    margin: 0 auto;
    text-align: center;
  }

  .about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .about-line {
    margin: 20px auto 30px;
  }

  .about-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .about-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 35px;
  }

  .about-gallery img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 0;
  }

  .about-content {
    padding: 50px 5%;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .about-gallery {
    gap: 15px;
    margin-top: 30px;
  }

  .about-gallery img {
    height: 180px;
  }
}

/* ===================== SERVICES GRID ===================== */
.services-grid {
  background: #000;
  padding: 120px 0;
  color: #fff;
}

.services-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 80px;
}

.services-cards {
  width: 95%;
  max-width: 1600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* SOLO 2 CARDS */
  gap: 50px;
}

.service-card {
  position: relative;
  height: 650px;
  /* MÁS GRANDES */
  overflow: hidden;
  border-radius: 20px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  opacity: 0;
  transition: opacity .5s ease;
}

.service-overlay h3 {
  font-size: 2.6rem;
  margin-bottom: 12px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease;
  transition-delay: .05s;
}

.service-overlay p {
  font-size: 1.5rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, .8);
  transform: translateY(20px);
  opacity: 0;
  transition: transform .5s ease, opacity .5s ease;
  transition-delay: .12s;
}

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

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

.service-card:hover .service-overlay h3,
.service-card:hover .service-overlay p {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1100px) {
  .services-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-cards {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 420px;
  }
}

/* ===================== SERVICES VIDEO INTRO ===================== */
.services-video {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.services-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-content img {
  width: 280px;
  max-width: 70%;
  animation: logoFade 1.5s ease forwards;
}

@keyframes logoFade {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===================== SERVICES VIDEO RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .services-video {
    height: 80vh;
  }

  .video-content img {
    width: 240px;
  }
}

@media (max-width: 768px) {
  .services-video {
    height: 70vh;
    min-height: 500px;
  }

  .video-content img {
    width: 180px;
    max-width: 60%;
  }

  .video-overlay {
    background: rgba(0, 0, 0, .65);
  }
}

@media (max-width: 480px) {
  .services-video {
    height: 60vh;
    min-height: 400px;
  }

  .video-content img {
    width: 140px;
    max-width: 50%;
  }

  .video-overlay {
    background: rgba(0, 0, 0, .7);
  }
}

@media (max-width: 360px) {
  .services-video {
    height: 50vh;
    min-height: 350px;
  }

  .video-content img {
    width: 120px;
  }
}

/* ===================== CATÁLOGOS ===================== */
.catalogos-section {
  background: #f5f6f7;
  padding: 120px 40px;
}

.catalogos-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.catalogos-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 80px;
  color: #111;
}

.catalogos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.catalogo-card {
  position: relative;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
  transition: transform .6s ease, box-shadow .6s ease;
}

.catalogo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, .35);
}

.catalogo-card.bg-1 {
  background-image: url("images/General-02.png");
}

.catalogo-card.bg-2 {
  background-image: url("images/General-01.png");
}

.catalogo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .35);
  transition: background .6s ease;
}

.catalogo-card:hover .catalogo-overlay {
  background: rgba(0, 0, 0, .75);
}

.catalogo-content {
  position: relative;
  padding: 50px;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.catalogo-card:hover .catalogo-content {
  opacity: 1;
  transform: translateY(0);
}

.catalogo-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.catalogo-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 90%;
}

.btn-hero {
  display: inline-block;
  padding: 14px 42px;
  border-radius: 50px;
  background: #c40018;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  border: 2px solid #c40018;
  transition: background .35s ease, color .35s ease;
}

.btn-hero:hover {
  background: #ffffff;
  color: #c40018;
}

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

  .catalogo-card {
    height: 380px;
  }
}

/* ===================== FOOTER ===================== */
.footer {
  background: #111;
  color: #fff;
  padding-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 8% 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.footer-form h3 {
  margin-bottom: 20px;
}

.footer-form input,
.footer-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: none;
  border-radius: 6px;
  background: #222;
  color: #fff;
}

.footer-form button {
  padding: 12px 30px;
  background: #c40000;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
}

.footer-info {
  margin-top: 60px;
}

.footer-info p {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-map iframe {
  width: 100%;
  height: 70vh;
  border: 0;
}

.footer-logo {
  margin-top: 40px;
  text-align: center;
}

.footer-logo img {
  max-width: 140px;
  margin-bottom: 15px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-social img {
  width: 42px;
  height: 42px;
  transition: transform .3s ease, opacity .3s ease;
}

.footer-social a:hover img {
  transform: scale(1.15);
  opacity: .8;
}

.footer-copy {
  text-align: center;
  font-size: 14px;
  padding-bottom: 20px;
  opacity: .8;
}

.footer-accent {
  height: 100px;
  background: #c40000;
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-info {
    margin-top: 20px;
  }
}

/* ===================== WHATSAPP FLOAT ===================== */
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
  z-index: 9999;
  transition: transform .35s ease, box-shadow .35s ease;
  animation: whatsappPulse 2.8s infinite;
}

.whatsapp-float img {
  width: 32px;
  transition: transform .35s ease;
}

.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 45px rgba(37, 211, 102, .55);
}

.whatsapp-float:hover img {
  transform: rotate(-8deg) scale(1.1);
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
  }

  .whatsapp-float img {
    width: 28px;
  }
}

/* ===================== SERVICES INTRO SECTION ===================== */
.services-intro {
  position: relative;
  height: 90vh;
  width: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/services-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  z-index: 1;
}

.services-intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 8%;
  width: 100%;
}

.services-intro-content h2 {
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 700;
  letter-spacing: .25em;
  color: #111;
  margin-bottom: 80px;
}

.services-icons {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 40px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  opacity: .65;
  transition: all .35s ease;
  cursor: default;
}

.icon-item img {
  width: 110px;
  height: auto;
  filter: grayscale(100%);
}

.icon-item span {
  font-size: 1rem;
  letter-spacing: .2em;
  color: #444;
}

.icon-item:hover {
  opacity: 1;
  transform: translateY(-10px);
}

@media (max-width: 768px) {
  .services-intro {
    height: auto;
    padding: 120px 0;
  }

  .services-icons {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .services-intro-content h2 {
    margin-bottom: 60px;
  }

  .icon-item img {
    width: 90px;
  }
}