/**
 * Tu Mecánico Web - Estilos principales
 * tumecanicoweb.es
 *
 * Paleta de colores:
 * - Azul Mecánico: #1E3A5F
 * - Naranja Señalización: #FF6B35
 * - Gris Acero: #4A5568
 * - Blanco Taller: #F7F8FA
 * - Verde Luz: #22C55E
 * - Rojo Avería: #DC2626
 */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --azul: #1E3A5F;
  --naranja: #FF6B35;
  --gris: #4A5568;
  --blanco: #F7F8FA;
  --verde: #22C55E;
  --rojo: #DC2626;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--azul);
  color: var(--blanco);
  overflow-x: hidden;
}

/* ===========================================
   NAV - SIEMPRE VISIBLE
   =========================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(30,58,95,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,107,53,0.2);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--blanco);
}

.nav-logo span { color: var(--naranja); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--blanco);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.85;
  transition: all 0.3s;
  position: relative;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--naranja);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--naranja);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--naranja);
  color: white !important;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  opacity: 1 !important;
  /* Estilo neumórfico */
  box-shadow:
    rgba(0, 0, 0, 0.3) 3px 3px 6px,
    rgba(255, 150, 100, 0.3) -2px -2px 4px;
  transition: all 0.15s ease;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    rgba(0, 0, 0, 0.35) 4px 4px 8px,
    rgba(255, 150, 100, 0.4) -3px -3px 6px,
    0 0 15px rgba(255, 107, 53, 0.3);
}

.nav-cta:active {
  transform: translateY(0);
  box-shadow:
    inset rgba(0, 0, 0, 0.2) 2px 2px 4px,
    inset rgba(255, 150, 100, 0.2) -1px -1px 2px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--blanco);
  transition: all 0.3s;
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: var(--azul);
    flex-direction: column;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    align-items: flex-start;
    transition: right 0.3s ease;
    box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    width: 100%;
    padding: 0.5rem 0;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }
}

/* ===========================================
   HERO CON IMAGEN DE FONDO
   =========================================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255,107,53,0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(255,107,53,0.1) 0%, transparent 50%);
}

.hero-image {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/hero-background.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
  z-index: 0;
}

.floating-tool {
  position: absolute;
  font-size: 10rem;
  color: var(--naranja);
  opacity: 0.4;
  pointer-events: none;
  filter: drop-shadow(0 0 30px rgba(255,107,53,0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1000px;
  text-align: center;
}

.hero h1 {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 2rem;
}

.hero h1 .line {
  display: block;
}

.hero h1 .highlight {
  color: var(--naranja);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-button {
  background: var(--naranja);
  color: white;
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1.2rem 2.8rem;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  /* Estilo neumórfico para botón */
  box-shadow:
    rgba(0, 0, 0, 0.3) 5px 5px 10px,
    rgba(255, 150, 100, 0.4) -3px -3px 8px,
    inset rgba(255, 255, 255, 0.1) 0 1px 0;
  transition: all 0.15s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow:
    rgba(0, 0, 0, 0.35) 7px 7px 14px,
    rgba(255, 150, 100, 0.5) -4px -4px 10px,
    inset rgba(255, 255, 255, 0.15) 0 1px 0,
    0 0 25px rgba(255, 107, 53, 0.4);
}

.cta-button:active {
  transform: translateY(1px);
  box-shadow:
    inset rgba(0, 0, 0, 0.2) 3px 3px 6px,
    inset rgba(255, 150, 100, 0.3) -2px -2px 4px;
}

/* ===========================================
   QUIEN SOY CON FOTO
   =========================================== */
.quien-soy {
  background: var(--blanco);
  color: var(--azul);
  padding: 6rem 2rem;
}

.quien-soy-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: center;
}

.quien-soy-avatar-wrapper {
  text-align: center;
}

.quien-soy-avatar {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  border: 6px solid var(--naranja);
  overflow: hidden;
  position: relative;
  background: var(--azul);
  /* Estilo neumórfico esférico */
  box-shadow:
    rgba(0, 0, 0, 0.2) 10px 10px 20px,
    rgba(255, 255, 255, 0.7) -8px -8px 16px,
    inset rgba(0, 0, 0, 0.1) 3px 3px 6px,
    inset rgba(255, 255, 255, 0.3) -2px -2px 4px;
  transition: all 0.3s ease;
}

.quien-soy-avatar:hover {
  box-shadow:
    rgba(0, 0, 0, 0.25) 12px 12px 24px,
    rgba(255, 255, 255, 0.8) -10px -10px 20px,
    inset rgba(0, 0, 0, 0.08) 2px 2px 4px,
    inset rgba(255, 255, 255, 0.4) -2px -2px 4px,
    0 0 30px rgba(255, 107, 53, 0.2);
}

.quien-soy-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quien-soy-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background: linear-gradient(135deg, var(--azul) 0%, #2a4a6f 100%);
}

.avatar-prompt {
  font-size: 0.75rem;
  color: var(--gris);
  font-style: italic;
  max-width: 240px;
  margin: 0 auto;
  line-height: 1.4;
}

.quien-soy-text h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
  color: var(--azul);
}

.quien-soy-text .subtitle {
  color: var(--naranja);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.quien-soy-text p {
  color: var(--gris);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.quien-soy-text strong {
  color: var(--azul);
}

@media (max-width: 768px) {
  .quien-soy-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .quien-soy-avatar {
    width: 180px;
    height: 180px;
  }

  .quien-soy-avatar-placeholder {
    font-size: 4.5rem;
  }
}

/* ===========================================
   PROBLEMA
   =========================================== */
.problema {
  background: var(--azul);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.problema-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../assets/images/problema-background.png');
  background-size: cover;
  background-position: center;
  opacity: 0.03;
  z-index: 0;
}

.problema-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.problema h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 2rem;
  text-align: center;
}

.problema-intro {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.problema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.problema-card {
  background: rgba(255,255,255,0.03);
  padding: 1.8rem;
  border-radius: 12px;
  border-left: 4px solid var(--rojo);
  transition: all 0.2s ease;
  /* Estilo neumórfico para fondo oscuro */
  box-shadow:
    rgba(0, 0, 0, 0.4) 5px 5px 10px,
    rgba(255, 255, 255, 0.03) -3px -3px 8px;
  position: relative;
}

.problema-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateX(5px) translateY(-2px);
  box-shadow:
    rgba(0, 0, 0, 0.5) 7px 7px 14px,
    rgba(255, 255, 255, 0.05) -4px -4px 10px,
    0 0 20px rgba(220, 38, 38, 0.1);
}

.problema-card:active {
  transform: translateX(5px) translateY(0);
  box-shadow:
    inset rgba(0, 0, 0, 0.3) 3px 3px 6px,
    inset rgba(255, 255, 255, 0.02) -2px -2px 4px;
}

.problema-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.problema-card p {
  opacity: 0.85;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .problema-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   SERVICIOS CON ICONOS/IMÁGENES
   =========================================== */
.servicios {
  background: var(--blanco);
  color: var(--azul);
  padding: 6rem 2rem;
}

.servicios h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 1.5rem;
}

.servicios-intro {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 4rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.8;
  color: var(--gris);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  max-width: 1200px;
  margin: 0 auto;
}

.servicio-card {
  background: var(--blanco);
  border: none;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.2s ease;
  /* Estilo neumórfico elevado */
  box-shadow:
    rgba(0, 0, 0, 0.15) 6px 6px 12px,
    rgba(255, 255, 255, 0.8) -6px -6px 12px;
  position: relative;
}

.servicio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  box-shadow:
    inset rgba(0, 0, 0, 0.08) 0 0 0,
    inset rgba(255, 255, 255, 0.5) 0 0 0;
  transition: box-shadow 0.2s ease;
  pointer-events: none;
}

.servicio-card:hover {
  transform: translateY(-4px);
  box-shadow:
    rgba(0, 0, 0, 0.2) 8px 8px 16px,
    rgba(255, 255, 255, 0.9) -8px -8px 16px,
    0 0 30px rgba(255, 107, 53, 0.15);
}

.servicio-card:active {
  transform: translateY(0);
  box-shadow:
    inset rgba(0, 0, 0, 0.1) 4px 4px 8px,
    inset rgba(255, 255, 255, 0.6) -4px -4px 8px;
}

.servicio-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.2rem;
  position: relative;
}

.servicio-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.servicio-icon {
  font-size: 2.8rem;
  display: block;
  text-align: center;
}

.servicio-card h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--azul);
  text-align: center;
}

.servicio-card p {
  color: var(--gris);
  line-height: 1.6;
  margin-bottom: 1.2rem;
  font-size: 0.98rem;
  text-align: center;
}

.servicio-price {
  font-family: 'Space Mono', monospace;
  color: var(--naranja);
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  display: block;
}

.image-prompt {
  font-size: 0.7rem;
  color: #999;
  font-style: italic;
  margin-top: 0.5rem;
  text-align: center;
  line-height: 1.3;
}

.image-prompt-1 {
  background-image: url('../assets/images/image1.png');
  background-size: cover;
  background-position: center;
  height: 200px;
  z-index: 0;
}

.image-prompt-2 {
  background-image: url('../assets/images/image2.png');
  background-size: cover;
  background-position: center;
  height: 200px;
  z-index: 0;
}

.image-prompt-3 {
  background-image: url('../assets/images/image3.png');
  background-size: cover;
  background-position: center;
  height: 200px;
  z-index: 0;
}

.image-prompt-4 {
  background-image: url('../assets/images/image4.png');
  background-size: cover;
  background-position: center;
  height: 200px;
  z-index: 0;
}

.image-prompt-5 {
  background-image: url('../assets/images/image5.png');
  background-size: cover;
  background-position: center;
  height: 200px;
  z-index: 0;
}

.image-prompt-6 {
  background-image: url('../assets/images/image6.png');
  background-size: cover;
  background-position: center;
  height: 200px;
  z-index: 0;
}

@media (max-width: 768px) {
  .servicios-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   CUANDO NO
   =========================================== */
.cuando-no {
  background: var(--azul);
  color: var(--blanco);
  padding: 6rem 2rem;
}

.cuando-no-content {
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
}

.cuando-no h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 2rem;
  color: var(--rojo);
}

.cuando-no-intro {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cuando-no-list {
  text-align: left;
  max-width: 750px;
  margin: 0 auto 3rem;
}

.cuando-no-item {
  background: rgba(255,255,255,0.04);
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border-left: 4px solid var(--rojo);
  transition: all 0.2s ease;
  /* Estilo neumórfico para fondo oscuro */
  box-shadow:
    rgba(0, 0, 0, 0.4) 4px 4px 8px,
    rgba(255, 255, 255, 0.02) -2px -2px 6px;
}

.cuando-no-item:hover {
  background: rgba(255,255,255,0.07);
  transform: translateX(5px) translateY(-2px);
  box-shadow:
    rgba(0, 0, 0, 0.5) 6px 6px 12px,
    rgba(255, 255, 255, 0.04) -3px -3px 8px;
}

.cuando-no-item strong {
  color: var(--naranja);
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.3rem;
}

/* ===========================================
   PROCESO CON ILUSTRACIONES
   =========================================== */
.proceso {
  background: var(--blanco);
  color: var(--azul);
  padding: 6rem 2rem;
}

.proceso h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 1.5rem;
}

.proceso-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 4rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gris);
  line-height: 1.8;
}

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.proceso-step {
  text-align: center;
  position: relative;
}

/* Línea conectora entre pasos */
.proceso-line {
  position: absolute;
  top: 37px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255, 107, 53, 0.3) 10%,
    rgba(255, 107, 53, 0.3) 90%,
    transparent 100%
  );
  z-index: 0;
}

.proceso-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--naranja), #ff8f6b);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
  transition: width 1.5s ease-out;
}

.proceso-line.active::before {
  width: 100%;
}

.step-illustration {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  position: relative;
}

.step-illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-number {
  width: 75px;
  height: 75px;
  background: var(--naranja);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  font-size: 1.9rem;
  margin: 0 auto 1.3rem;
  /* Estilo neumórfico esférico */
  box-shadow:
    rgba(0, 0, 0, 0.25) 5px 5px 10px,
    rgba(255, 150, 100, 0.4) -3px -3px 8px,
    inset rgba(255, 255, 255, 0.15) -2px -2px 4px,
    inset rgba(0, 0, 0, 0.1) 2px 2px 4px;
  transition: all 0.2s ease;
}

.step-number:hover {
  box-shadow:
    rgba(0, 0, 0, 0.3) 7px 7px 14px,
    rgba(255, 150, 100, 0.5) -4px -4px 10px,
    inset rgba(255, 255, 255, 0.2) -2px -2px 4px,
    inset rgba(0, 0, 0, 0.15) 2px 2px 4px,
    0 0 20px rgba(255, 107, 53, 0.4);
}

.proceso-step h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
  color: var(--azul);
}

.proceso-step p {
  color: var(--gris);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .proceso-steps {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
  }

  .step-illustration {
    width: 90px;
    height: 90px;
  }
}

/* ===========================================
   TESTIMONIOS
   =========================================== */
.testimonios {
  background: var(--azul);
  color: var(--blanco);
  padding: 6rem 2rem;
}

.testimonios h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
}

.testimonios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonio-card {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--naranja);
  /* Estilo neumórfico para fondo oscuro */
  box-shadow:
    rgba(0, 0, 0, 0.4) 5px 5px 12px,
    rgba(255, 255, 255, 0.03) -3px -3px 8px;
  transition: all 0.2s ease;
}

.testimonio-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
  box-shadow:
    rgba(0, 0, 0, 0.5) 7px 7px 16px,
    rgba(255, 255, 255, 0.05) -4px -4px 10px,
    0 0 25px rgba(255, 107, 53, 0.1);
}

.testimonio-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.testimonio-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--naranja);
}

.testimonio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonio-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--naranja), #ff8f6b);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.testimonio-info h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.testimonio-info p {
  font-size: 0.85rem;
  opacity: 0.7;
}

.testimonio-text {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
  font-style: italic;
}

@media (max-width: 768px) {
  .testimonios-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================================
   GARANTIAS
   =========================================== */
.garantias {
  background: var(--blanco);
  color: var(--azul);
  padding: 6rem 2rem;
}

.garantias h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
}

.garantias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
  max-width: 1000px;
  margin: 0 auto;
}

.garantia-item {
  background: var(--blanco);
  padding: 2rem;
  border-radius: 14px;
  text-align: center;
  border-top: 4px solid var(--verde);
  transition: all 0.2s ease;
  /* Estilo neumórfico elevado */
  box-shadow:
    rgba(0, 0, 0, 0.12) 5px 5px 10px,
    rgba(255, 255, 255, 0.8) -5px -5px 10px;
  position: relative;
}

.garantia-item:hover {
  transform: translateY(-3px);
  box-shadow:
    rgba(0, 0, 0, 0.18) 7px 7px 14px,
    rgba(255, 255, 255, 0.9) -7px -7px 14px,
    0 0 20px rgba(34, 197, 94, 0.15);
}

.garantia-item:active {
  transform: translateY(0);
  box-shadow:
    inset rgba(0, 0, 0, 0.08) 3px 3px 6px,
    inset rgba(255, 255, 255, 0.6) -3px -3px 6px;
}

.garantia-icon {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}

.garantia-item h3 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--azul);
}

.garantia-item p {
  color: var(--gris);
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .garantias-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

/* ===========================================
   CTA FINAL
   =========================================== */
.cta-final {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--naranja), #ff8f6b);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Icono de fondo decorativo - SVG en lugar de emoji */
.cta-final::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  opacity: 0.08;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  /* background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 64' fill='none' stroke='white' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 50l22-22'/%3E%3Ccircle cx='44' cy='20' r='12'/%3E%3Cpath d='M44 12v16M36 20h16'/%3E%3Cpath d='M10 54l4-4 4 4-4 4z'/%3E%3C/svg%3E"); */
  background-size: contain;
  background-repeat: no-repeat;
}

.cta-final h2 {
  font-family: 'Work Sans', sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.cta-final p {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  opacity: 0.95;
  margin-bottom: 2.5rem;
  max-width: 600px;
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

.cta-final .cta-button {
  background: var(--azul);
  font-size: 1.2rem;
  padding: 1.4rem 3.5rem;
  position: relative;
  z-index: 2;
}

/* ===========================================
   CTA FLOTANTE
   =========================================== */
.cta-flotante {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--naranja);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.4s ease;
  pointer-events: none;
  /* Estilo neumórfico circular */
  box-shadow:
    rgba(0, 0, 0, 0.35) 5px 5px 12px,
    rgba(255, 150, 100, 0.4) -3px -3px 8px,
    0 4px 20px rgba(255, 107, 53, 0.4);
}

.cta-flotante.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.cta-flotante:hover {
  transform: translateY(-3px);
  box-shadow:
    rgba(0, 0, 0, 0.4) 7px 7px 16px,
    rgba(255, 150, 100, 0.5) -4px -4px 10px,
    0 8px 30px rgba(255, 107, 53, 0.5);
}

.cta-flotante:active {
  transform: translateY(0);
  box-shadow:
    inset rgba(0, 0, 0, 0.25) 3px 3px 6px,
    inset rgba(255, 150, 100, 0.3) -2px -2px 4px;
}

.cta-flotante svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

@media (max-width: 768px) {
  .cta-flotante {
    bottom: 20px;
    right: 20px;
    padding: 0.9rem 1.2rem;
    font-size: 0.85rem;
  }

  .cta-flotante span {
    display: none;
  }

  .cta-flotante svg {
    width: 28px;
    height: 28px;
  }
}

/* ===========================================
   FOOTER COMPLETO
   =========================================== */
footer {
  background: linear-gradient(180deg, var(--azul) 0%, #0d1a2a 100%);
  padding: 0;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}

.footer-brand .footer-logo {
  font-family: 'Work Sans', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand .footer-logo span {
  color: var(--naranja);
}

.footer-brand > p {
  opacity: 0.7;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-sellos {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.sello {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 107, 53, 0.08);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 53, 0.3);
  /* Estilo neumórfico para fondo oscuro */
  box-shadow:
    rgba(0, 0, 0, 0.4) 3px 3px 6px,
    rgba(255, 255, 255, 0.02) -2px -2px 4px;
  transition: all 0.2s ease;
}

.sello:hover {
  background: rgba(255, 107, 53, 0.15);
  box-shadow:
    rgba(0, 0, 0, 0.5) 4px 4px 8px,
    rgba(255, 255, 255, 0.03) -2px -2px 5px,
    0 0 10px rgba(255, 107, 53, 0.2);
}

.sello svg {
  width: 20px;
  height: 20px;
  color: var(--naranja);
  stroke: var(--naranja);
}

.sello span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--naranja);
}

.footer-servicios h4,
.footer-contacto h4 {
  font-family: 'Work Sans', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--naranja);
}

.footer-servicios ul {
  list-style: none;
}

.footer-servicios li {
  margin-bottom: 0.6rem;
}

.footer-servicios a {
  color: var(--blanco);
  text-decoration: none;
  opacity: 0.7;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-servicios a:hover {
  opacity: 1;
  color: var(--naranja);
  padding-left: 5px;
}

.horario {
  margin-bottom: 1.5rem;
}

.horario-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.horario-item .dia {
  opacity: 0.7;
}

.horario-item .hora {
  font-weight: 600;
}

.horario-item.urgencia {
  border-bottom: none;
  color: var(--rojo);
}

.horario-item.urgencia .hora {
  color: var(--rojo);
}

.footer-contacto-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-contacto-links a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--blanco);
  text-decoration: none;
  opacity: 0.7;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-contacto-links a:hover {
  opacity: 1;
  color: var(--naranja);
}

.footer-contacto-links svg {
  width: 18px;
  height: 18px;
  stroke: var(--naranja);
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  opacity: 0.5;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
  }

  .footer-sellos {
    justify-content: center;
  }

  .footer-servicios ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  .horario-item {
    justify-content: center;
    gap: 1rem;
  }

  .footer-contacto-links {
    align-items: center;
  }

  .floating-tool {
    width: 60px;
    height: 60px;
  }
}

/* ===========================================
   ESTILOS NEUMÓRFICOS - SOFT UI
   =========================================== */

:root {
  --neu-height: 1;
  --neu-light: rgba(255, 255, 255, 0.5);
  --neu-shadow: rgba(0, 0, 0, 0.25);
  --neu-light-dark: rgba(255, 255, 255, 0.08);
  --neu-shadow-dark: rgba(0, 0, 0, 0.5);
}

/* Tile base neumórfico */
.neu-tile {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
}

.neu-tile::before,
.neu-tile::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
}

/* Efecto elevado (up) - para fondos claros */
.neu-up {
  box-shadow:
    var(--neu-shadow) calc(0.33rem * var(--neu-height)) calc(0.33rem * var(--neu-height)) 0.6rem;
}

.neu-up::before {
  box-shadow:
    var(--neu-light) calc(-0.33rem * var(--neu-height)) calc(-0.33rem * var(--neu-height)) 0.6rem;
}

/* Efecto hundido (down) - para fondos claros */
.neu-down {
  box-shadow:
    inset var(--neu-shadow) calc(0.25rem * var(--neu-height)) calc(0.25rem * var(--neu-height)) 0.6rem;
}

.neu-down::before {
  box-shadow:
    inset var(--neu-light) calc(-0.25rem * var(--neu-height)) calc(-0.25rem * var(--neu-height)) 0.6rem;
}

/* Efecto elevado para fondos oscuros */
.neu-up-dark {
  box-shadow:
    var(--neu-shadow-dark) calc(0.4rem * var(--neu-height)) calc(0.4rem * var(--neu-height)) 0.8rem,
    rgba(255, 255, 255, 0.03) calc(-0.2rem * var(--neu-height)) calc(-0.2rem * var(--neu-height)) 0.4rem;
}

/* Efecto hundido para fondos oscuros */
.neu-down-dark {
  box-shadow:
    inset var(--neu-shadow-dark) calc(0.3rem * var(--neu-height)) calc(0.3rem * var(--neu-height)) 0.6rem,
    inset var(--neu-light-dark) calc(-0.2rem * var(--neu-height)) calc(-0.2rem * var(--neu-height)) 0.4rem;
}

/* Botón neumórfico con transición */
.neu-button {
  position: relative;
  cursor: pointer;
  box-shadow:
    var(--neu-shadow) calc(0.33rem * var(--neu-height)) calc(0.33rem * var(--neu-height)) 0.6rem;
  transition: box-shadow 0.15s 0.15s ease-in, transform 0.15s ease;
}

.neu-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-shadow:
    var(--neu-light) calc(-0.33rem * var(--neu-height)) calc(-0.33rem * var(--neu-height)) 0.6rem;
  transition: box-shadow 0.15s 0.15s ease-in;
  pointer-events: none;
}

.neu-button:hover {
  box-shadow: var(--neu-shadow) 0 0 0;
  transition: box-shadow 0.15s ease-out;
}

.neu-button:hover::before {
  box-shadow: var(--neu-light) 0 0 0;
  transition: box-shadow 0.15s ease-out;
}

.neu-button:active {
  box-shadow:
    inset var(--neu-shadow) calc(0.25rem * var(--neu-height)) calc(0.25rem * var(--neu-height)) 0.6rem;
}

.neu-button:active::before {
  box-shadow:
    inset var(--neu-light) calc(-0.25rem * var(--neu-height)) calc(-0.25rem * var(--neu-height)) 0.6rem;
}

/* Círculo neumórfico elevado */
.neu-circle {
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--neu-light), transparent, var(--neu-shadow));
  box-shadow: var(--neu-shadow) 0.33rem 0.33rem 0.6rem;
}

/* Círculo neumórfico hundido */
.neu-circle-down {
  border-radius: 50%;
  background: radial-gradient(circle at 75% 75%, var(--neu-light), transparent, var(--neu-shadow));
}

/* Círculo botón neumórfico */
.neu-circle-button {
  cursor: pointer;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 50%,
    var(--neu-light) 15%,
    transparent 30%,
    var(--neu-shadow)
  );
  background-position: -4rem -4rem;
  background-size: 200% 200%;
  box-shadow: var(--neu-shadow) 0.33rem 0.33rem 0.6rem;
  transition: background 0.3s ease-in-out, box-shadow 0.15s 0.15s ease-in-out;
}

.neu-circle-button:hover {
  background-position: -2rem -2rem;
  box-shadow: var(--neu-shadow) 0 0 0;
  transition: background 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* ===========================================
   EFECTOS PARALLAX - INSPIRADO EN BOLD.BZ
   =========================================== */

/* Secciones con efecto de superposición */
.section-parallax {
  position: relative;
  z-index: 1;
}

/* Contenedor para el texto que se queda fijo */
.parallax-pin-container {
  position: relative;
  height: 200vh; /* Espacio para el scroll */
}

.parallax-pin-content {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

/* Sección que sube y cubre el contenido anterior */
.section-overlay {
  position: relative;
  z-index: 10;
  background: inherit;
  margin-top: -100vh;
}

.section-overlay::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, inherit);
  pointer-events: none;
}

/* Transiciones suaves entre secciones */
.section-transition {
  position: relative;
  overflow: hidden;
}

.section-transition::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.1) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Efecto de revelación al hacer scroll */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Efecto de escala y opacidad para elementos que se desvanecen */
.fade-scale-out {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Contenedor con clip para efectos de máscara */
.clip-container {
  overflow: hidden;
  position: relative;
}

/* Línea animada de progreso de sección */
.section-progress {
  position: fixed;
  top: 70px;
  left: 0;
  height: 3px;
  background: var(--naranja);
  width: 0%;
  z-index: 1001;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--naranja);
}

/* Efecto de blur suave al hacer scroll */
.blur-on-scroll {
  transition: filter 0.3s ease;
}

/* Animación de entrada desde abajo con retraso escalonado */
.stagger-reveal > * {
  opacity: 0;
  transform: translateY(40px);
}

.stagger-reveal.active > *:nth-child(1) { transition-delay: 0s; }
.stagger-reveal.active > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-reveal.active > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-reveal.active > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-reveal.active > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-reveal.active > *:nth-child(6) { transition-delay: 0.5s; }

.stagger-reveal.active > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* ===========================================
   ICONOS ESTILO SALPICADERO
   =========================================== */

/* Iconos flotantes del hero */
.floating-tool {
  width: 100px;
  height: 100px;
  font-size: inherit;
}

.floating-tool .dashboard-icon {
  width: 100%;
  height: 100%;
  color: var(--naranja);
  /* Efecto emisivo/glow para iconos flotantes */
  filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.8))
          drop-shadow(0 0 20px rgba(255, 107, 53, 0.4));
}

/* Indicador de dashboard para servicios */
.dashboard-indicator {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, #0d1a2a, #1a2d45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Estilo neumórfico esférico */
  box-shadow:
    rgba(0, 0, 0, 0.5) 6px 6px 12px,
    rgba(255, 255, 255, 0.03) -3px -3px 6px,
    inset rgba(0, 0, 0, 0.3) 2px 2px 4px,
    inset rgba(255, 255, 255, 0.05) -1px -1px 3px,
    0 0 15px rgba(255, 107, 53, 0.3);
  border: 2px solid rgba(255, 107, 53, 0.4);
  position: relative;
  transition: all 0.2s ease;
}

.servicio-card:hover .dashboard-indicator {
  box-shadow:
    rgba(0, 0, 0, 0.6) 8px 8px 16px,
    rgba(255, 255, 255, 0.05) -4px -4px 8px,
    inset rgba(0, 0, 0, 0.2) 1px 1px 2px,
    inset rgba(255, 255, 255, 0.08) -1px -1px 2px,
    0 0 25px rgba(255, 107, 53, 0.5);
}

/* Efecto de luz de salpicadero - halo exterior */
.dashboard-indicator::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.25) 0%, transparent 60%);
  z-index: -1;
}

/* Efecto de cristal/lente interior */
.dashboard-indicator::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.dashboard-indicator .servicio-svg {
  width: 48px;
  height: 48px;
  color: var(--naranja);
  stroke: var(--naranja);
  /* Efecto emisivo/glow - luz de salpicadero encendida */
  filter: drop-shadow(0 0 4px rgba(255, 107, 53, 0.9))
          drop-shadow(0 0 8px rgba(255, 107, 53, 0.6))
          drop-shadow(0 0 12px rgba(255, 107, 53, 0.3));
}

/* Efecto hover - luz mas intensa */
.servicio-card:hover .dashboard-indicator .servicio-svg {
  filter: drop-shadow(0 0 6px rgba(255, 107, 53, 1))
          drop-shadow(0 0 12px rgba(255, 107, 53, 0.8))
          drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

/* Indicador en estado de alerta (para urgencias) */
.dashboard-indicator.alert {
  background: linear-gradient(145deg, #1a0a0a, #2d1212);
  border-color: rgba(220, 38, 38, 0.6);
  animation: pulse-alert 1.5s ease-in-out infinite;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.05),
    inset 0 -2px 6px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(220, 38, 38, 0.4);
}

.dashboard-indicator.alert::before {
  background: radial-gradient(circle, rgba(220, 38, 38, 0.4) 0%, transparent 60%);
}

.dashboard-indicator.alert .servicio-svg {
  color: var(--rojo);
  stroke: var(--rojo);
  /* Glow rojo intenso para alerta */
  filter: drop-shadow(0 0 4px rgba(220, 38, 38, 1))
          drop-shadow(0 0 10px rgba(220, 38, 38, 0.8))
          drop-shadow(0 0 16px rgba(220, 38, 38, 0.5));
}

@keyframes pulse-alert {
  0%, 100% {
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.4),
      0 0 15px rgba(220, 38, 38, 0.4);
  }
  50% {
    box-shadow:
      0 4px 20px rgba(0, 0, 0, 0.4),
      0 0 30px rgba(220, 38, 38, 0.7),
      0 0 40px rgba(220, 38, 38, 0.4);
  }
}

/* Card de urgencias */
.servicio-card.urgencia {
  border-color: rgba(220, 38, 38, 0.3);
}

.servicio-card.urgencia:hover {
  border-color: var(--rojo);
  box-shadow: 0 12px 35px rgba(220, 38, 38, 0.2);
}

/* Iconos de garantías - estilo salpicadero */
.garantia-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  color: var(--naranja);
  /* Contenedor circular oscuro tipo salpicadero */
  background: linear-gradient(145deg, #0d1a2a, #1a2d45);
  border-radius: 50%;
  padding: 12px;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.3),
    inset 0 1px 2px rgba(255, 255, 255, 0.05),
    inset 0 -1px 4px rgba(0, 0, 0, 0.3),
    0 0 12px rgba(255, 107, 53, 0.2);
  border: 2px solid rgba(255, 107, 53, 0.3);
}

.garantia-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--naranja);
  /* Efecto glow emisivo */
  filter: drop-shadow(0 0 3px rgba(255, 107, 53, 0.8))
          drop-shadow(0 0 6px rgba(255, 107, 53, 0.4));
}

.garantia-item:hover .garantia-icon svg {
  filter: drop-shadow(0 0 5px rgba(255, 107, 53, 1))
          drop-shadow(0 0 10px rgba(255, 107, 53, 0.6));
}

/* Avatar fallback */
.avatar-fallback {
  display: none;
  width: 60%;
  height: 60%;
  color: var(--naranja);
}

.quien-soy-avatar-placeholder.show-fallback .avatar-fallback {
  display: block;
}

/* Testimonios - iconos de persona */
.testimonio-avatar-placeholder svg {
  width: 70%;
  height: 70%;
  color: white;
  stroke: white;
}

/* Estilos responsive para iconos */
@media (max-width: 768px) {
  .dashboard-indicator {
    width: 70px;
    height: 70px;
  }

  .dashboard-indicator .servicio-svg {
    width: 40px;
    height: 40px;
  }

  .garantia-icon {
    width: 56px;
    height: 56px;
  }
}
