:root {
    --primary: #595959; /* #a07e63 - azul: #1556C1*/
    --primary-rgb : 89, 89, 89; /* 160, 126, 99 - azul: 21, 86, 193 */
    --secondary: #333333;
    --light: #EFFDF5;
    --dark: #0E2E50;
}

html {
    scroll-behavior: smooth !important;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 100,
  'GRAD' 0,
  'opsz' 24
}


h1 {
    font-family: "Raleway", sans-serif;
    font-weight: 100 !important;
}

.tx-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary);
}

.bg-primary-opacity-60 {
    background-color: rgba(var(--primary-rgb), 0.6) !important;
}

.bg-primary-opacity-80 {
    background-color: rgba(var(--primary-rgb), 0.8) !important;
}

#testimonials {
    background-image: url(/assets/site/img/testimonials-background.jpg);
}

footer {
    background-image: url(/assets/site/img/footer-background-2.jpg);
}

/* FORM */

[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
    outline: 2px solid transparent !important;
    outline-offset: 2px !important;
    --tw-ring-inset: var(--tw-empty, /*!*/ /*!*/) !important;
    --tw-ring-offset-width: 0px !important;
    --tw-ring-offset-color: #fff !important;
    --tw-ring-color: #e1e1e1 !important;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow) !important;
    border-color: #c9c9c9 !important;
}

/* SWAL ALERT */
.swal-button:not([disabled]):hover {
    background-color: #676767 !important;
}

.swal-button {
    background-color: #555555 !important;
}
/* WHATSAPP FIXED BUTTON */

.whapp {
    position: sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    -webkit-sticky;
    bottom: 48px;
    position: fixed;
    right: 48px;
    z-index: 2 !important;
}

.whapp-btn {
    display: flex;
    text-align: center;
    border-radius: 50%; /* Alterado para 50% para obter formato circular */
    height: 5rem;
    min-width: 5rem;
    background-color: #54c151;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, .18);
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    padding: 0.25rem;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.whapp-btn img {
    width: 56px;
    display: flex;
    text-align: center;
}

.whapp-btn:hover {
    background-color: #439a41;
}

@keyframes pulse {
    0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(84, 193, 81, 0.7);
    border-radius: 50%; /* Adicionado para manter o formato circular */
    }
    70% {
    transform: scale(1.2);
    box-shadow: 
        0 0 0 10px rgba(84, 193, 81, 0),
        0 0 0 20px rgba(84, 193, 81, 0.4),
        0 0 0 30px rgba(84, 193, 81, 0.2),
        0 0 0 40px rgba(84, 193, 81, 0); /* Adicionado degradê com distanciamento */
    border-radius: 50%; /* Adicionado para manter o formato circular */
    }
    100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(84, 193, 81, 0);
    border-radius: 50%; /* Adicionado para manter o formato circular */
    }
}

.animated.pulse {
    animation: pulse infinite;
    animation-duration: 2s;
}

@media screen and (max-width: 479px) {
    .menu-button-2 {
    background-color: #fff;
    color: #000;
    }
}

/* PROJECT SLIDESHOW */

* {
    box-sizing: border-box;
  }
  
/* Hide the images by default */
.mySlides {
    display: none;
  }
  
  /* Add a pointer when hovering over the thumbnail images */
  .cursor {
    cursor: pointer;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
    background-color: rgba(0, 0, 0, 0.2);
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* Container for image text */
  .caption-container {
    text-align: center;
    background-color: #222;
    padding: 2px 16px;
    color: white;
  }
  
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Six columns side by side */
  .column {
    float: left;
    width: 16.66%;
  }
  
  /* Add a transparency effect for thumnbail images */
  .demo {
    opacity: 0.6;
  }
  
  .active,
  .demo:hover {
    opacity: 1;
  }