body {
  padding-top: 70px;
  font-family: "Segoe UI", sans-serif;
}

/* Parallax Effect 
.hero-parallax {
  background-image: url('https://images/fundo_luz_index_1.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 50vh;
  position: relative;
}
*/
.hero-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-image: url('http://rctassessoriatributaria.com.br/images/rct_background.jpg');
  height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  transition: background-position 0.3s ease-out;
}

.hero-parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  //*ackground: rgba(0, 0, 0, 0.5);*/
}

.hero-parallax .container {
  position: relative;
  z-index: 2;
}

.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

.logo {
  height: 100px;        /* altura desejada */
  width: auto;         /* mantém proporção */
  display: block;      /* remove pequenos espaços em volta */
}

.color-item{ color:black;font-size:20px;font-weight:bold;}
.color-item-active{ color:#CEA33F;font-size:20px;font-weight:bold;}
.color-servicos-index{ color:#CEA33F;font-size:32px;font-weight:bold;}
.color-item-card{ color:#082142;font-size:26px;font-weight:bold;line-height: 1.2;}
.color-info-card{ color:#333333;font-size:20px;font-weight:bold;line-height: 1.33349;letter-spacing: 0.009em;}
.color-footer{ color:white;font-size:18px;font-weight:bold;line-height: 1.2;}
.color-form{ color:#333333;font-size:18px;font-weight:bold;line-height: 1.2;}
.color-black30 { color:black;font-size:30px;font-weight:bold;line-height: 1.4;}
.top20 {margin-top: 20px;}
.top40 {margin-top: 40px;}
.top100 {margin-top: 100px;}

.btn-mnu{background-color:#CEA33F;color:#000000;font-size: 20px; font-weight:800;padding:10px;border:0px; text-decoration:none; outline:0; border-radius: 30px;}

.default a {
  text-decoration: none;
}

.default a:hover {
  text-decoration: none;
}

footer a {
  text-decoration: none;
}

footer a:hover {
  text-decoration: none;
}

.footer-fixed {
  bottom: 0;
  left: 0;  
  width: 100%;  
  background: #F5F5F5;
  padding-top: 10px;
  position: fixed;
}

.backfooter { background: #CEA33F; } 

/* ======== ANIMAÇÕES SUAVES ========== */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-in"] {
  transform: translateY(0);
  opacity: 0;
}

[data-animate="fade-in"].visible {
  opacity: 1;
}

/* The Modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    padding: 0px; /* Location of the box */
    left: 0;
    margin-top: 45px;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: white;
    /*background-color: rgb(F,F,F,F);  Fallback color 
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity 
    */ 
}
/* Modal Content */
.modal-contentEx {
    background-color: #fefefe;
    margin: auto;
    padding: 5px;
    border: 0px solid #888;
    width: 100%;
}

.image-wrapper{
  position: relative;
  background-color: #FFFFFF;
  border: 0px solid #000000;
  overflow: hidden;
  padding: 10px;
  margin-top: auto;
}


/*

Atributo  Efeito Visual
data-animate="fade-in"  Desaparece → aparece suavemente
data-animate="fade-up"  Sobe suavemente enquanto aparece
data-animate="fade-left" (opcional, pode adicionar CSS extra) Vem da esquerda
data-animate="fade-right" (idem)  Vem da direita

Exemplo (no HTML):

<div class="container" data-animate="fade-in">
  <h2>Seção com fade-in</h2>
</div>

*/

