body {
  margin: 0;
  font-family: Arial, sans-serif;
  text-align: center;
}

.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  padding: 20px;
}

.vcard {
  margin: 0 auto;
  max-width: 400px;
/*  background: url("img/vcard/back1.png");*/
	background: #006b21a1;
  padding: 20px;
  border-radius: 10px;
}

.profile-section {
  margin-bottom: 20px;
}

.profile-pic {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

h2 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-info {
  color: #fff;
  text-align: left;
  margin-bottom: 20px;
      font-weight: 700;	
}

.contact-item {
  margin-bottom: 10px;
}

.contact-item span {
  margin-left: 10px;
}

.contact-icon {
  margin-right: 5px;
}

.save-contact-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #fff;
  color: #ff6600;
  font-weight: bold;
  text-decoration: none;
/*  margin-top: 20px;*/
  border-radius: 27px;
}

.video-container {
  margin-bottom: 20px;
}

.qr-container {
  margin: 20px auto;
  text-align: center;
}

.qr-code {
  width: 500px;
  height: 500px;
}

.calendar {
  margin-top: 50px;
}

.calendar-header {
  margin-bottom: 10px;
}

.calendar-header h3 {
  color: #fff;
  font-size: 24px;
}

table {
  width: 100%;
  background-color: #fff;
  color: #000;
  border-collapse: collapse;
}

th,
td {
  padding: 10px;
  text-align: center;
}

thead th {
  background-color: #ff9500;
  color: #fff;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

tr:hover {
  background-color: #e0e0e0;
}

@media (max-width: 768px) {
  .vcard {
    max-width: 100%;
  }
}

.contact-info {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-icon {
  font-size: 24px;
  margin-right: 10px;
}

.contact-text {
  font-size: 16px;
}

/* Media query for adjusting icon size in mobile devices */
@media (max-width: 768px) {
  .contact-icon {
    font-size: 18px;
  }
}


.social-icons {
  display: flex;
  justify-content: center;
/*  margin-bottom: 20px;*/
}

.social-icon {
/*  display: flex;*/
	    text-align: center;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 20px;
}

.contact-info {
  background: url("img/texture/repeat6.jpg");
/*  background: #525252;	*/
  background-size: cover;
/*  padding: 17px;*/
  padding: 9px;	
  border-radius: 10px;
/*border-radius: 37px;	*/
	
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.contact-icon {
  font-size: 24px;
  margin-right: 10px;
}

.contact-text {
  font-size: 16px;
	  
}

/* Media query for adjusting icon size in mobile devices */
@media (max-width: 768px) {
  .contact-icon {
    font-size: 30px;
  }
}


.social-media-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  font-size: 28px;
  margin-right: 10px;
  background-color: #ff7f00;
  background-image: linear-gradient(to bottom, #ff7f00, #f06c00);
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease;
}

.social-link img {
  max-width: 100%;
  max-height: 100%;
}

.social-link:hover {
  transform: scale(1.1);
}











@keyframes square-in-hesitate {
  0% {
    clip-path: inset(100% 100% 100% 100%);
  }
  40% {
    clip-path: inset(33% 33% 33% 33%);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

[transition-style="in:square:hesitate"] {
  animation: 2.5s cubic-bezier(.25, 1, .30, 1) square-in-hesitate both;
}


@media (max-width: 768px) {
  .social-media-links {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    margin-bottom: 10px;
  }
}


.slider {
/*    width: 75vw;*/
    height: auto;
    margin: auto;
    overflow: hidden;
}
.slider .slide-track {
    display: flex;
    animation: scroll 40s linear infinite;
    -webkit-animation: scroll 40s linear infinite;
    width: calc(200px * 14);
}
.slider .slide {
/*    width: 200px;*/
	width: 150px;
}
.slider .slide img {
    width: 100%;
}
@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(calc(-200px * 7));
        transform: translateX(calc(-200px * 7));
    }
}






/*BOTON AGENDAR 05-06-2023   2nd*/


.add-contact-btn {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}





