.atuacao-div-container {
  text-align: center;
  padding: 60px 20px;
}

.atuacao-div-container h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.atuacao-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
}

.atuacao-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 30px 20px;
  width: 260px;
  text-align: center;
  transition: all 0.3s ease;
}

.atuacao-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.atuacao-card i {
  font-size: 40px;
  color: #a67c52;
  margin-bottom: 15px;
}

.atuacao-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.atuacao-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.atuacao-card button {
  background: #a67c52;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer; text-transform: uppercase;
    width: fit-content;
  transition: background 0.3s ease;
}


.atuacao-card i {
    background-color: #eee;
    border-radius: 50%;
    padding: 10px 15px ;
    transition: 0.2s;
    margin-bottom: 20px;
}
.atuacao-card:hover i {
    background-color: #c08731;
    color: white;
       transition: 0.2s;
    box-shadow: 0px 5px 10px rgba(44, 44, 44, 0.041);
}
.atuacao-card button:hover {
  background: #8b653e;
}
.atuacoes-container {
    position: relative;
    background-color: #000;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    color: white;
    /* font-family: 'Futura PT', sans-serif; */
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.4);
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slide.active .background-video {
  opacity: 0.6;
}

.content {
width: 100%;
  margin: auto;
  padding: 20px 200px;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.slide.active .content {
  opacity: 1;
  transform: translateY(0);
}
.content h2 {
 text-transform: uppercase;
}
.content button {
  background: #c08731;
  color: #ffffff;
  border: none;
  width: fit-content;
  padding: 10px 25px;
  border-radius: 4px;
  margin: 15px 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.content-p {
    background-color: #fff;
    /* width: 100%; */
    color: #b6b2b2 !important;
    margin: 2px 420px;
    padding: 20px;
    border-radius: 5px;
}
.content-p p{
    color: #7e7e7e !important;
    font-size: 15px;
    line-height: 1.6;
}
.content button:hover {
  background: #805515;
  transform: translateY(-2px);
}

.features {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 15px;
    padding: 20px;
    text-align: left;
    width: 22%;
    backdrop-filter: blur(5px);
    transition: transform 0.4s 
ease, background 0.4s 
ease;
border: 1px solid rgba(255, 255, 255, 0.041);
}
.feature h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.feature p{
    color: #7e7e7e;
    padding: 10px 10px;
}
.feature span{
    color: white;
    transition: 0.2s;
}
.feature:hover span{
    color: #c08731;
    transition: 0.2s;
}
.feature:hover {
    cursor: default;
  transform: translateY(-5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.384);
}

.feature:hover p{
    color: white;
}
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
  padding: 10px 15px;  transition: 0.2s;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.prev:hover, .next:hover {
  background: rgba(255, 255, 255, 0);
  font-size: 2.5rem;
  transition: 0.2s;
  color: #c08731;
}

.prev { left: 50px; }
.next { right: 50px; }
@media (max-width: 1200px) {
  .atuacao-grid {
    display: grid
;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
}.content {
    width: 100%;
    margin: auto;
    padding: 20px 50px;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 1.5s 
ease, transform 1.5s 
ease;
}
.content-p {
    background-color: #fff;
    /* width: 100%; */
    color: #b6b2b2 !important;
    margin: 2px 0px;
    padding: 20px;
    border-radius: 5px;
}
.content-p p {
    color: #7e7e7e !important;
    font-size: 11px;
    line-height: 1.6;
}.content h2 {
    FONT-SIZE: 15PX;
    text-transform: uppercase;
}.features {
    display: grid
;
    justify-content: center;
    margin-top: 40px;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}    .feature {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        font-size: 10px;
        padding: 20px;
        text-align: left;
        width: 100%;
        backdrop-filter: blur(5px);
        transition: transform 0.4s 
ease, background 0.4s 
ease;
        border: 1px solid rgba(255, 255, 255, 0.041);
    }.atuacoes-container {
    position: relative;
    background-color: #000;
    display: none;
    width: 100%;
    height: 200vh;
    overflow: hidden;
    color: white;
    /* font-family: 'Futura PT', sans-serif; */
}
.feature h4 {
    margin-bottom: 0px;
    font-size: 1.2rem;
}
}