@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --dark: #111;
  --dark-soft: #262626;
  --gray: #333;
  --card: #444;
  --text: #eee;
  --white: #fff;
  --accent: #f1683a;
  --blue: #5fa8d3;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--dark);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

.container {
  width: min(1140px, 90%);
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: clamp(60px, 10vw, 80px) 0;
}

h1,
h2,
h3 {
  color: var(--white);
}

h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: clamp(16px, 3vw, 20px);
  text-align: center;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

p {
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 1.7;
}

/* HEADER */
.translate-box {
  display: flex;
  align-items: end;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 12px 20px;
  border-radius: 30px;
  color: #fff;
}

.translate-box i {
  color: var(--accent);
  font-size: 1rem;
}

.translate-box select {
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  outline: none;
  cursor: pointer;
}

.translate-box select option {
  color: #111;
}

#google_translate_element {
  display: none;
}

.goog-logo-link,
.goog-te-gadget span {
  display: none !important;
}

.goog-te-gadget {
  height: 0;
  overflow: hidden;
}

.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

@media (max-width: 900px) {
  .translate-box {
    width: 10%;
    justify-content: end;
    margin: 12px 20px;
  }
}
.site-header {
  width: 100%;
  background: linear-gradient(to left, 
    rgba(0, 0, 0, 0.95) 0%,
    rgba(200, 210, 220, 0.95) 50%,
    rgba(255, 255, 255, 0.95) 100%
  );
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  width: min(1400px, 95%);
  height: clamp(70px, 12vw, 95px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(15px, 3vw, 30px);
  padding: 0 15px;
}

.logo {
  width: clamp(100px, 20vw, 200px);
  height: clamp(50px, 10vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo img {
  margin-top: 10px;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2.5vw, 45px);
  flex-wrap: wrap;
}

.main-nav a {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: rgb(0 62 255);
  transition: color 0.3s ease;
  white-space: nowrap;
  padding: 8px 12px;
}

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

.menu-toggle {
  display: none;
  width: clamp(40px, 8vw, 44px);
  height: clamp(40px, 8vw, 44px);
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease;
  
}

.menu-toggle:hover {
  background: #d95a2f;
}

/* HERO */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh; /* Para móviles modernos */
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.70   );
  animation: zoomMove 16s ease-in-out infinite alternate;
}
/* Agrega esto a tu CSS existente */

/* Animación de aparición difuminada */
@keyframes fadeInBlur {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* Aplicar animación al h1 */
.hero-content h1 {
  font-size: clamp(2rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: clamp(15px, 3vw, 20px);
  word-wrap: break-word;
  
  /* Animación */
  animation: fadeInBlur 1.5s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0; /* Comienza invisible */
}

/* Aplicar animación al p */
.hero-content p {
  color: var(--accent);   
  font-size: clamp(1.1rem, 4vw, 3rem);
  font-weight: 700;
  word-wrap: break-word;
  
  /* Animación */
  animation: fadeInBlur 1.5s ease-out forwards;
  animation-delay: 0.8s; /* Aparece después del h1 */
  opacity: 0; /* Comienza invisible */
}
.hero-content p2 {
color: #61ffc6;   
  font-size: clamp(1.1rem, 4vw, 3rem);
  font-weight: 700;
  word-wrap: break-word;
  
  /* Animación */
  animation: fadeInBlur 1.5s ease-out forwards;
  animation-delay: 0.8s; /* Aparece después del h1 */
  opacity: 0; /* Comienza invisible */
}


@keyframes zoomMove {
  from {
    transform: scale(1) translateX(0);
  }
  to {
    transform: scale(1.12) translateX(20px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, 92%);
  padding: clamp(80px, 15vw, 120px) 20px 40px;
}

.hero-content h1 {
  font-size: clamp(2rem, 7vw, 5rem);
  line-height: 1.1;
  margin-bottom: clamp(15px, 3vw, 20px);
  word-wrap: break-word;
}

.hero-content p {
  color: var(--accent);
  font-size: clamp(1.1rem, 4vw, 3rem);
  font-weight: 700;
  word-wrap: break-word;
}

/* ABOUT */

#about {
  background: var(--gray);
  text-align: center;
}

#about p {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 20px;
}

/* SERVICES */

#services {
  background: var(--dark);
}

.services-grid {
  margin-top: clamp(30px, 5vw, 40px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(20px, 3vw, 28px);
  padding: 0 10px;
}

.service {
  background: var(--card);
  padding: clamp(24px, 4vw, 32px) clamp(20px, 3vw, 24px);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(12px, 2vw, 16px);
}

.service:hover {
  transform: translateY(-8px);
  background: #505050;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* Contenedor de la imagen */
.service-icon {
  width: 100%;
  max-width: 200px;
  height: clamp(140px, 20vw, 180px);
  margin-bottom: clamp(8px, 2vw, 12px);
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.service:hover .service-icon img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.service h3 {
  margin-bottom: clamp(8px, 2vw, 10px);
  color: var(--accent);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.service p {
  color: var(--text);
  line-height: 1.6;
}

/* Responsive adicional para servicios */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-icon {
    max-width: 100%;
    height: 160px;
  }
}

@media (max-width: 400px) {
  .service {
    padding: 20px 16px;
  }

  .service-icon {
    height: 140px;
  }
}

/* TEAM */

#team {
  background: var(--gray);
  text-align: center;
}

.team-grid {
  margin-top: clamp(30px, 5vw, 40px);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 3vw, 24px);
  padding: 0 10px;
}

.team-member {
  width: min(260px, 100%);
  background: var(--card);
  padding: clamp(18px, 3vw, 24px);
  border-radius: 18px;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
}

.team-member img {
  width: clamp(120px, 25vw, 160px);
  height: clamp(120px, 25vw, 160px);
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto clamp(15px, 3vw, 20px);
}

/* CONSULTING */

#consulting {
  background: var(--dark);
  text-align: center;
}

#consulting p {
  max-width: 850px;
  margin: 12px auto;
  padding: 0 20px;
}

/* FOOTER */

footer {
  background: linear-gradient(to right, 
    #ffffff 0%,
    #e8e8e8 25%,
    #888888 50%,
    #444444 75%,
    #000000 100%
  );
  padding: clamp(40px, 6vw, 60px) 0 clamp(20px, 3vw, 30px);
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(30px, 5vw, 40px);
  margin-bottom: clamp(30px, 4vw, 40px);
}

.footer-section h3 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: clamp(15px, 2vw, 20px);
  font-weight: 600;
}

/* Ajuste de colores por columna según el gradiente */
.footer-section:nth-child(1) h3,
.footer-section:nth-child(1) .footer-description {
  color: #222; /* Texto oscuro para fondo claro */
}

.footer-section:nth-child(2) h3,
.footer-section:nth-child(2) .footer-links a {
  color: #333; /* Texto oscuro para fondo medio-claro */
}

.footer-section:nth-child(3) h3,
.footer-section:nth-child(3) .footer-contact li {
  color: #f5f5f5; /* Texto claro para fondo medio-oscuro */
}

.footer-section:nth-child(4) h3,
.footer-section:nth-child(4) .footer-newsletter {
  color: #ffffff; /* Texto blanco para fondo oscuro */
}

/* Logo del footer */
.footer-logo {
  width: clamp(120px, 20vw, 150px);
  margin-bottom: 15px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: brightness(0.2); /* Logo oscuro para fondo claro */
}

.footer-description {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  line-height: 1.6;
  color: #333;
  max-width: 280px;
}

/* Enlaces del footer */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #444;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

/* Información de contacto */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: #f5f5f5; /* Texto claro para la tercera columna */
}

.footer-contact i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Redes sociales */
.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.social-links a {
  width: clamp(40px, 8vw, 45px);
  height: clamp(40px, 8vw, 45px);
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.2rem);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(241, 104, 58, 0.4);
}

.footer-newsletter {
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: #e8e8e8;
  line-height: 1.6;
}

.footer-newsletter strong {
  color: var(--white);
  display: block;
  margin-bottom: 5px;
}

/* Línea divisoria */
.footer-divider {
  height: 1px;
  background: linear-gradient(to right, 
    rgba(0, 0, 0, 0.2) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  margin: clamp(30px, 4vw, 40px) 0 clamp(20px, 3vw, 25px);
}

/* Parte inferior del footer */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  color: #ccc;
  background: rgba(0, 0, 0, 0.3);
  padding: 15px 20px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.footer-bottom p {
  margin: 0;
  color: #ddd;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-legal span {
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  footer {
    background: linear-gradient(to bottom, 
      #ffffff 0%,
      #cccccc 25%,
      #666666 50%,
      #333333 75%,
      #000000 100%
    );
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* Ajuste de colores para móvil (gradiente vertical) */
  .footer-section:nth-child(1) h3,
  .footer-section:nth-child(1) .footer-description {
    color: #222;
  }

  .footer-section:nth-child(2) h3,
  .footer-section:nth-child(2) .footer-links a {
    color: #333;
  }

  .footer-section:nth-child(3) h3,
  .footer-section:nth-child(3) .footer-contact li {
    color: #f0f0f0;
  }

  .footer-section:nth-child(4) h3,
  .footer-section:nth-child(4) .footer-newsletter {
    color: #ffffff;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }

  .footer-description {
    margin: 0 auto;
  }

  .footer-contact li {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer-section h3 {
    font-size: 1.1rem;
  }

  .social-links a {
    width: 42px;
    height: 42px;
  }
}
/* RESPONSIVE */

/* Tablets y pantallas medianas */
@media (max-width: 900px) {
  .header-container {
    height: clamp(70px, 10vw, 80px);
  }

  .logo {
    width: clamp(90px, 18vw, 120px);
    height: clamp(45px, 9vw, 60px);
  }

  .menu-toggle {
    display: block;
    align-items: end;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(38, 38, 38, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .main-nav.active {
    max-height: 400px;
  }

  .main-nav a {
    width: 100%;
    padding: clamp(14px, 3vw, 16px);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
  }

  .hero {
    min-height: 90vh;
    min-height: 90svh;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  }
}

/* Móviles */
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }

  .header-container {
    width: 96%;
    padding: 0 10px;
  }

  .hero-content {
    width: 95%;
    padding: 90px 15px 30px;
  }

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

  .service {
    padding: 20px 16px;
  }

  .team-grid {
    gap: 16px;
  }

  .team-member {
    width: 100%;
    max-width: 300px;
  }
}

/* Móviles pequeños */
@media (max-width: 400px) {
  html {
    font-size: 14px;
  }

  .header-container {
    gap: 10px;
  }

  .logo {
    width: 80px;
    height: 40px;
  }

  .menu-toggle {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    align-items: end;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  section {
    padding: 50px 0;
  }
}

/* Pantallas muy grandes */
@media (min-width: 1600px) {
  html {
    font-size: 18px;
  }

  .container {
    width: min(1400px, 90%);
  }
}

/* Orientación horizontal en móviles */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }
}
/* ELIMINAR BARRA SUPERIOR DE GOOGLE TRANSLATE */
body > .skiptranslate,
iframe.skiptranslate,
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
}

/* Evitar que Google baje la página */
html,
body {
  top: 0 !important;
  margin-top: 0 !important;
}

/* Ocultar elementos visuales del widget */
#google_translate_element,
.goog-te-gadget,
.goog-logo-link,
.goog-te-combo {
  display: none !important;
}
.contact-section {
  background:
    radial-gradient(circle at top left, rgba(97, 255, 198, 0.12), transparent 35%),
    linear-gradient(135deg, #111 0%, #1c1c1c 100%);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 35px;
  align-items: stretch;
}

.contact-info-card,
.contact-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: clamp(25px, 4vw, 40px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.contact-badge {
  display: inline-block;
  background: rgba(97, 255, 198, 0.15);
  color: #61ffc6;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 700;
  margin-bottom: 18px;
}

.contact-info-card h2 {
  text-align: left;
  margin-bottom: 15px;
}

.contact-info-card p {
  color: #d8d8d8;
  margin-bottom: 28px;
}

.contact-data {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-data div {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.contact-data i {
  width: 42px;
  height: 42px;
  background: #61ffc6;
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-map {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 260px;
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(97, 255, 198, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.contact-map::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(0.9) contrast(1.05);
}

.contact-form h3 {
  margin-bottom: 24px;
  color: #61ffc6;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bdbdbd;
}

.form-group select option {
  color: #111;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #61ffc6;
  box-shadow: 0 0 0 3px rgba(97, 255, 198, 0.18);
}

.whatsapp-btn {
  width: 100%;
  border: none;
  border-radius: 16px;
  padding: 15px 20px;
  background: #25d366;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn i {
  margin-right: 8px;
}

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

  .contact-info-card h2 {
    text-align: center;
  }

  .contact-info-card {
    text-align: center;
  }

  .contact-data div {
    justify-content: center;
  }

  .contact-map {
    aspect-ratio: 4 / 3;
    min-height: 240px;
    margin-top: 26px;
  }
}

@media (max-width: 480px) {
  .contact-map {
    aspect-ratio: 1 / 1;
    min-height: 220px;
    border-radius: 16px;
  }
}
/* TRACKING SECTION */

.tracking-section {
  background:
    radial-gradient(circle at top left, rgba(97, 255, 198, 0.12), transparent 35%),
    linear-gradient(135deg, #111 0%, #1c1c1c 100%);
}

.tracking-header {
  max-width: 850px;
  margin: 0 auto clamp(35px, 5vw, 50px);
  text-align: center;
}

.tracking-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(97, 255, 198, 0.15);
  color: #61ffc6;
  padding: 9px 18px;
  border-radius: 30px;
  font-weight: 800;
  margin-bottom: 20px;
}

.tracking-header p {
  color: #d8d8d8;
  max-width: 760px;
  margin: 0 auto;
}

.tracking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: clamp(22px, 4vw, 35px);
}

.tracking-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.tracking-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(241, 104, 58, 0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tracking-card:hover {
  transform: translateY(-8px);
  border-color: rgba(97, 255, 198, 0.45);
  background: rgba(255, 255, 255, 0.105);
}

.tracking-card:hover::before {
  opacity: 1;
}

.tracking-card > * {
  position: relative;
  z-index: 1;
}

.tracking-card.featured {
  border-color: rgba(97, 255, 198, 0.35);
}

.tracking-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--accent), #61ffc6);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 24px;
  box-shadow: 0 14px 30px rgba(97, 255, 198, 0.18);
}

.tracking-card h3 {
  color: var(--accent);
  margin-bottom: 14px;
}

.tracking-card p {
  color: #e5e5e5;
  margin-bottom: 22px;
}

.tracking-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.tracking-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f2f2f2;
  font-size: 0.95rem;
}

.tracking-list i {
  color: #61ffc6;
}

.tracking-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #61ffc6;
  color: #111;
  padding: 15px 20px;
  border-radius: 40px;
  font-weight: 800;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.tracking-btn:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(97, 255, 198, 0.25);
}

/* HELP SECTION */

.tracking-help {
  background: var(--dark);
  padding-top: clamp(45px, 7vw, 65px);
  padding-bottom: clamp(45px, 7vw, 65px);
}

.tracking-help-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: clamp(30px, 5vw, 48px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(241, 104, 58, 0.95), rgba(95, 168, 211, 0.85)),
    url("/image/proyectosfondo.jpg") center/cover;
  background-blend-mode: multiply;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.45);
}

.tracking-help-box h2 {
  text-align: left;
  margin-bottom: 10px;
}

.tracking-help-box p {
  color: #f4f4f4;
  max-width: 680px;
}

.help-btn {
  min-width: 210px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fff;
  color: #111;
  padding: 15px 24px;
  border-radius: 40px;
  font-weight: 800;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* RESPONSIVE TRACKING */

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

  .tracking-help-box {
    flex-direction: column;
    text-align: center;
  }

  .tracking-help-box h2 {
    text-align: center;
  }

  .help-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .tracking-card {
    padding: 24px 20px;
  }

  .tracking-icon {
    width: 62px;
    height: 62px;
    font-size: 1.4rem;
  }
}

body p {
  text-align: justify;
}
