.img-icon {
  display: block;         
  margin: 0 auto 1rem;    
  max-width: 60px;        
  height: auto;           
}

.step-icon {
  display: block;
  margin: 0 auto 15px;
  max-width: 60px;
  height: auto;
}

.step-card h5 {
  color: #1953A0; 
  margin-bottom: 10px;
}

.background-video {
  left: 40% !important;
}

.step-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.step-img {
  flex: 1;
  height: 200px;
  overflow: hidden;
}

.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

.step-content {
  flex: 1;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-content h5 {
  color: #1953A0;
  margin-bottom: 10px;
  font-weight: 700;
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

.remove-space {
  padding-top: 0% !important;
}


.flip-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.flip-container {
  max-width: 1200px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}


.flip-card {
  perspective: 1000px;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 420px; 

  transform-style: preserve-3d;
  transition: transform 0.7s;
}


.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

.flip-card.active .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;

  backface-visibility: hidden;
  border-radius: 14px;
  overflow: hidden;
}

.flip-front {
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: anchor-center;
}

.azul1 {
  background: #19529F !important;
 }
 
 .azul2 {
  background: #1565C0 !important;
 }

 .azul3 {
  background: #1976D2 !important;
 }

.card-img {
  position: relative;
  width: 80%;
  height: 100%;
  object-fit: contain;
}


.card-title {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 22px;
  font-weight: 600;

  padding: 20px;
}

.flip-back {
  background: #1e4f8a;
  color: white;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 25px;
  text-align: center;

  transform: rotateY(180deg);

  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 992px) {

  .flip-container {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .flip-container {
    grid-template-columns: 1fr;
  }

}

