
/* ===== VARIÁVEIS CSS ===== */
:root {
  --primary-color: #563d7c;
  --primary-light: #7a56c2;
  --text-dark: #3c3c3c;
  --text-muted: #777777;
  --bg-light: #f8f9fa;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}
body {
    font-family: 'Inter', sans-serif;
}
.navbar{
  background-color: rgb(199, 198, 198);
}
  .navbar-brand img{
  width: 30%;
}
.navbar-collapse{
  width: 100%;
}

.nav-link{
  color: #000;
  font-size: large;
}
.navbar-nav{
  width: max-content;
}
.nav-link.active {
  text-decoration: underline;
  font-weight: bold;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
}
.btn-custom {
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    padding: 0.75rem 2rem;
}
.btn-custom:hover {
    background-color: #333;
}
/* ===== BANNER ===== */
.banner {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.banner-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 80vh;
}

.background-rect {
  /* Manter vazio para compatibilidade */
}

.fill-rect {
  /* Manter vazio para compatibilidade */
}

.text-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 3;
}

.banner-text {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin: 0;
  line-height: 1.2;
}
.banner-text p{
    text-shadow: 1px 1px 1px #000000a9;
}

.heartbeat-container {
  position: absolute;
  bottom: 10%;
  left: 50%;
  z-index: 10;
  margin-left: 20%;
}

.heartbeat-svg {
  margin-top: 8rem;
  animation: heartbeatPulse 2.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: white;
  transition: var(--transition);
}

.navbar-brand img {
  max-height: 50px;
  width: auto;
}

.nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  transition: var(--transition);
  padding: 0.5rem 1rem !important;
}

.nav-link:hover {
  color: var(  --text-dark) !important;
}


.heartbeat-container {
  position: relative;
  width: 100%;
  max-width: 2000px;
  height: 200px;
  margin-bottom: 2rem;
  margin-left: 25rem;
}

.heartbeat-logo {
  animation: heartbeatPulse 2.5s ease-in-out infinite;
  transform-origin: center;
  
}

.heartbeat-logo path,
.heartbeat-logo circle,
.heartbeat-logo rect,
.heartbeat-logo line,
.heartbeat-logo polyline,
.heartbeat-logo polygon {
  stroke-width: 2;
  fill: #fff;
}
@keyframes heartbeatPulse {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.05);
  }
  50% {
    transform: scale(0.98);
  }
  75% {
    transform: scale(1.03);
  }
}
.banner-container {
    position: relative;
    width: 20%; /* aumentamos para comportar o texto à direita */
    overflow: visible; /* permite o texto ultrapassar a borda */
    margin-left: 10%;
    margin-top: 8%;
}
.background-rect {
    position: absolute;
    width: 10%; /* largura do retângulo */
    height: 100%;
    background-color: transparent;
    z-index: 1;
}

.fill-rect {
    position: absolute;
    width: 30vh;
    height: 70%;
    border-radius: 10px;
    background-color: rgb(199, 198, 198);
    transform: translateX(-100%);
    animation: fillAnimation 2s ease-in-out forwards;
    z-index: 2;
}
.text-container {
    position: absolute;
    top: 35%;
    left: 150px; /* posiciona um pouco à direita do retângulo */
    transform: translateY(-50%);
    z-index: 3; /* acima do retângulo */
    text-align: left;
    width: 120%;
}

.banner-text {
    color: white;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 1px;

        animation: fillAnimationText 2s ease-out forwards;

}
@keyframes fillAnimation {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0%);
    }
}
@keyframes fillAnimationText {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0%);
    }
}
.btn-core{
  background-color: #563d7c;
  color: #fff;
}
.grayscale {
    filter: grayscale(100%);
    transition: filter 0.3s;
  }

  .grayscale:hover {
    filter: grayscale(0%);
  }

  .carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

.carousel-track {
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


svg {
  width: 100px;
  height: auto;
  overflow: visible;
}

#efeito {
  stroke: #000;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1500; /* <- Substituir com o comprimento real da linha */
  stroke-dashoffset: 300;
  animation: drawErase 5s ease-in-out infinite;
}
#a1{
    stroke-dasharray: 1500; /* <- Substituir com o comprimento real da linha */

}
.icon {
    align-self: normal;
}

@keyframes drawErase {
  0% {
    stroke-dashoffset: 1500;
  }
  30% {
    stroke-dashoffset: 0;
  }
  60% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: 1500;
  }
}

.btn-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 70px;
  height: 70px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.5);
  display: inline-block;
  background-image: url('data:image/svg+xml;utf8,<svg fill="white" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M20.52 3.48A11.954 11.954 0 0012 0C5.373 0 0 5.373 0 12a11.91 11.91 0 001.64 6.03L0 24l6.12-1.6A11.934 11.934 0 0012 24c6.627 0 12-5.373 12-12 0-3.2-1.25-6.22-3.48-8.52zM12 22c-1.7 0-3.34-.5-4.74-1.44l-.34-.2-3.64.95.95-3.55-.22-.36A9.91 9.91 0 012 12c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10zm5.05-7.35c-.3-.15-1.77-.87-2.05-.97-.27-.1-.47-.15-.67.15-.2.3-.77.96-.95 1.15-.18.2-.36.22-.67.07-.3-.15-1.27-.47-2.42-1.5-.9-.8-1.5-1.8-1.67-2.1-.18-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.18.2-.3.3-.5.1-.2 0-.37-.02-.52-.02-.15-.67-1.6-.92-2.2-.24-.58-.48-.5-.67-.5-.18 0-.38 0-.58 0-.2 0-.52.07-.8.37-.27.3-1.04 1.02-1.04 2.5 0 1.47 1.06 2.9 1.2 3.1.15.22 2.07 3.16 5.01 4.43.7.3 1.25.48 1.68.62.7.23 1.34.2 1.85.12.57-.1 1.77-.72 2.02-1.4.25-.67.25-1.25.18-1.38-.07-.13-.27-.2-.57-.35z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  z-index: 1100;
  border: none;
  text-decoration: none;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  background-color: #1ebe57;
  box-shadow: 0 6px 14px rgba(30, 190, 87, 0.7);
  transform: scale(1.1);
  outline: none;
}

.cor{
  color: #563d7c;
}

.heartbeat-svg {
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.182));
}
/* ===== VÍDEO RESPONSIVO ===== */
.video-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px var(--shadow-medium);
}

@media screen and (max-width: 992px)  and (min-width: 599px) {
    .banner-container {
    height: 50vh;
    margin-top: 10%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  
  }
  .quem-somos{
    text-align: center;
  }
  .fill-rect {
    height: 40vw;
    width: 50%;
    margin-left: 15%;
  }
  .text-container{
    top: 50%;
    left: 50%;
    width: 90%;
  }

  .banner-text {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .heartbeat-container {
    width: 100%;
    height: 100%;
    left: 250% !important;
    margin-left: 0 !important;
  }

  .heartbeat-svg {
    width: 35%;
  }
}

@media screen and (max-width: 600px) {
  .banner-container {
    height: 60vh;
    margin-top: -10%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 100%;
  
  }
  .quem-somos{
    text-align: center;
  }
  .fill-rect {
    height: 40vw;
    width: 30%;
    margin-left: 15%;
  }
  .text-container{
    top: 52%;
    left: 30%;
    width: 40%;
  }

  .banner-text {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .heartbeat-container {
    width: 30%;
    left: 10% !important;
    margin-left: 0 !important;
    top: 30%;
  }

  .heartbeat-svg {
    width: 35%;
  }
 .oferecemos{
  margin: 5%;
 } 
 .btn-whatsapp {
  margin: 5%;
 }
}
