.hiddenRow {
    padding: 0 !important;
}

.read-input {
    background-color: #f5f5f5 !important;
    border: none;
    border-bottom: 3px solid #4e73df; /* Adjust opacity for desired transparency */
    padding: 5px;
    border-radius: 0;
  }

.square {
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    position: relative; /* If you want text inside of it */
}
.square-inner {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #FF0000; /* Default color, can be overridden */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: white;
    text-align: center;
}

.square-input {
    width: 80%;
    text-align: right;
}

.label-with-icon {
    display: flex;
    align-items: center;
}
.label-with-icon i {
    margin-right: 5px;
}

.red { background-color: rgb(101, 0, 0); }
.green { background-color: rgb(1, 100, 1); }
.blue-light { background-color: rgb(0, 0, 126); }
.yellow { background-color: rgb(219, 157, 0); }
.purple { background-color: rgb(0, 146, 166); }
.orange { background-color: rgb(255, 94, 0); }

.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
    background-color: #f9f9f9;
    border-radius: 4px;
}

/*input[type="file"] {
    display: none;
}*/

.file-preview img, .file-preview video {
    max-width: 200px;
    height: auto;
    display: block;
    margin-top: 10px;
}

.file-preview {
    margin-top: 20px;
}

.sticky-bar {
    background-color: #ffc6c8 !important;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
}

.whatsapp-button img {
    width: 50px;
    height: 50px;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease-in-out;
}

.logo-sticky { display: none; }
.sticky-bar .logo-transparent { display: none !important; }
.sticky-bar .logo-sticky { display: inline !important; }

.about-area .about-img {
  position: relative; /* necessário para posicionar conteúdo e vídeo */
  overflow: hidden;   /* para esconder partes do vídeo fora do container */
}

.about-area .about-img .bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0; /* vídeo no fundo */
}

.about-area .about-img .info-man {
  position: relative; /* garante que fique acima do vídeo */
  z-index: 1;
}
