/* Import */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* Estilos Gerais */
body {
  font-family: 'Lato', sans-serif;
  background: url('../images/background.jpg') no-repeat center center fixed;
  background-size: cover;
  font-size: 14px;
  color: #333;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.vcard-body {
  max-width: 468px;
  width: 100%;
  margin: 80px auto;
  background: #f4f4f4;
  padding: 45px;
  border-top: 6px solid #114279;
  box-sizing: border-box;
}

.vcard-profile-img {
  width: 200px;
  margin: 0 auto;
}

.profile-img {
  width: 100%;
  border-radius: 100%;
}

.profile-title {
  margin-bottom: 0;
  text-align: center;
  font-weight: bold;
  font-size: 30px;
}

.profile-title-color {
  color: #114279;
}

.profile-subtitle {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.vcard-profile-description-text {
  text-align: center;
}

.vcard-profile-description-contact {
  text-align: center;
  border-radius: 5px;
  padding: 5px 10px;
  background: #eb7a1f;
  color: #fff;
}

.vcard-footer {
  margin-top: 20px;
  text-align: center;
}

.footer-icon {
  color: #333;
  font-size: 16px;
  margin-right: 5px;
}

/* Estilo dos Quadros de Recursos */
.vcard-feature-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.feature-box {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  display: block;
}

.feature-box i {
  font-size: 24px;
  color: #114279;
}

.feature-box p {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

.feature-box:hover {
  transform: scale(1.1);
}

/* Slider de Ícones */
.vcard-slider {
  position: relative;
  overflow: hidden;
  margin: 30px auto;
  max-width: 468px;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-item {
  flex: 0 0 calc(33.3333% - 10px);
  margin: 0 5px;
  text-align: center;
}

.slider-item i {
  font-size: 36px;
  color: #114279;
}

.slider-item p {
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  color: #114279;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 1;
}

.slider-prev {
  left: 10px;
}

.slider-next {
  right: 10px;
}

/* Responsividade */
@media (max-width: 600px) {
  .vcard-body {
    width: calc(100% - 40px);
    margin: 20px auto;
    padding: 20px;
  }
  
  .profile-title {
    font-size: 24px;
  }
  
  .profile-subtitle {
    font-size: 18px;
  }
  
  .vcard-feature-boxes {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .vcard-slider {
    max-width: calc(100% - 40px);
  }
}
