/*-------------------------------------------------------------
VARIÁVEIS
----------------------------------------------------------------*/

:root {
  --roxo: #6261ab;
  --roxo-dark: #4b2c91;
}

/*-------------------------------------------------------------
CONFIG GERAL / EFEITOS
----------------------------------------------------------------*/

body {
   /*font-family: "Montserrat", sans-serif;*/
   font-family: "Montserrat", sans-serif;
   letter-spacing: 0.75px;
   font-size: 14px;
  
  
  
}
.fw-bold{
    font-style:bold;
    font-weight: 800 !important;     
     letter-spacing: 0px;
}


/* BACKGROUND */
.bg-roxo{
    background-color: var(--roxo);
}

.bg-gradient-roxo {
  background: linear-gradient(135deg, #0d0a1a, #2e1a5e, #5a32a3, #6261ab);
  position: relative;
}

/* BASE */
.btn-success{
    background: #02aa20 !important;
}

.btn-basic {
  background: var(--roxo);
  color: #fff;
  border: none;
}

/* HOVER ROXO */
.btn-basic:hover {
  background: var(--roxo-dark);
  font-weight: 500;
  color: #fff;
  
}

.btn-purple,
.btn-outline-purple {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* BOTÃO ROXO */
.btn-purple {
  background: var(--roxo);
  color: #fff;
  border: none;
}

/* HOVER ROXO */
.btn-purple:hover {
  background: var(--roxo-dark);
  font-weight: 500;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(111, 66, 193, 0.4);
}

/* BOTÃO OUTLINE */
.btn-outline-purple {
  border: 1px solid var(--roxo);
  color: var(--roxo);
}

/* HOVER OUTLINE */
.btn-outline-purple:hover {
  background: var(--roxo);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(111, 66, 193, 0.3);
}

/* EFEITO BRILHO */
.btn-purple::after,
.btn-outline-purple::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.3),
    transparent
  );
  transition: all 0.5s;
}

/* ANIMAÇÃO */
.btn-purple:hover::after,
.btn-outline-purple:hover::after {
  left: 100%;
}

/* TEXTO */
.text-purple {
  color: var(--roxo);
}

/*-------------------------------------------------------------
PÁGINA INDEX
----------------------------------------------------------------*/
/* HERO */

/* LOGO CONTROLADA */
.logo-img {
  max-width: 200px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hero-fluid {
  position: relative;
  width: 100%;
  padding: 80px 0;
  overflow: hidden;
}

/* IMAGEM DIREITA */
.hero-image {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

.hero-image img {
  max-width: 610px;
  height: auto;
}

/* ANIMAÇÃO TEXTO */
.hero-anim {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.5s ease;
}

.hero-hide {
  opacity: 0;
  transform: translateY(15px);
}

.hero-show {
  opacity: 1;
  transform: translateY(0);
}

/* IMAGEM */
#hero-img {
  transition: all 0.7s ease;
}

.img-hide {
  opacity: 0;
  transform: scale(1.05);
}

.img-show {
  opacity: 1;
  transform: scale(1);
}

/* PERFORMANCE */
#hero-title,
#hero-text {
  will-change: transform, opacity;
}
#hero-title {
  transition-delay: 0.05s;
}

#hero-text {
  transition-delay: 0.1s;
}
/* RESPONSIVO */
@media (max-width: 992px) {
  .hero-image {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 30px;
    justify-content: center;
  }

  .hero-image img {
    max-width: 100%;
  }
}


/* DEPOIMENTOS */
/* CARD DEPOIMENTO */
.depo-card {
  border-radius: 14px;
  border: none;
  transition: all 0.35s ease;
  background: #fff;
  position: relative;
  overflow: hidden;
  
}

/* HOVER */
.depo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* AVATAR */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

/* DETALHE ROXO */
.depo-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--roxo);
}

/* ESTRELAS */
.text-warning i {
  font-size: 14px;
}

.feedback-card {
  display: none;
}

.feedback-card.feedback-visible {
  display: block;
  animation: feedbackFadeIn 0.55s ease forwards;
}

.feedback-card.feedback-fade-out {
  animation: feedbackFadeOut 0.35s ease forwards;
}

.feedback-avatar {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: var(--roxo);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

@keyframes feedbackFadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes feedbackFadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

/* CTA */
.cta {
  background: linear-gradient(135deg, #000, var(--roxo));
}

.card-img-top-custom {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card{
    min-height: 150px !important;
    max-height: 400px !important;
}

/* CARD BASE */
.card-produto {
  transition: all 0.35s ease;
  border: none;
  border-radius: 12px;
  position: relative;
}

/* HOVER - ELEVAÇÃO */
.card-produto:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* IMAGEM */
.card-img-top-custom {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* ZOOM NA IMAGEM */
.card-produto:hover .card-img-top-custom {
  transform: scale(1.1);
}

/* EFEITO DE BRILHO */
.card-produto::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.6s;
}

/* ATIVA BRILHO */
.card-produto:hover::after {
  left: 100%;
}

/* BOTÃO ACOMPANHA ANIMAÇÃO */
.card-produto:hover .btn {
  transform: scale(1.05);
}

/* SUAVIZA */
.btn {
  transition: all 0.3s ease;
}

/*LOGO/ PORTFOLIO CLIENTE*/
.logo-client {
  max-width: 120px;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-client:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* FOOTER */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ÍCONES */
.social-icon {
  color: #fff;
  font-size: 18px;
  transition: all 0.3s ease;
}

/* HOVER */
.social-icon:hover {
  color: var(--roxo);
  transform: translateY(-2px);
}

/*BOTÃO FIXO WHATSAPP*/
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #02aa20;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

/* HOVER */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  color: #fff;
}

/* ANIMAÇÃO PULSO */
.whatsapp-float::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  z-index: -1;
}

/* KEYFRAMES */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}



/*-------------------------------------------------------------
PÁGINA DO BLOG
----------------------------------------------------------------*/

/* BANNER */

.blog-banner {
  background: linear-gradient(90deg, #0d0a1a, #1a1333);
  padding: 10px 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center; /* centraliza horizontal */
  align-items: center;     /* centraliza vertical */
}



/* IMAGEM */
.banner-img {
  max-width: 100%;   /* nunca ultrapassa a tela */
  max-height: 250px; /* limite altura */
  height: auto;      /* mantém proporção */
  display: block;
}

/* TABLET */
@media (max-width: 992px) {
  .banner-img {
    height: auto; 
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .banner-img {
    height: auto; 
  }
}

/* SIDEBAR */
.sidebar a {
  text-decoration: none;
  color: #333;
}

.sidebar a:hover {
  color: var(--roxo);
}

/* POSTS RECENTES */
.sidebar img {

  width: 350px;
  height: 150px;
  object-fit: cover;
}

/* COMPARTILHAR */
.social-icon {
  font-size: 18px;
  color: #333;
  transition: 0.3s;
}

.social-icon:hover {
  color: var(--roxo);
}

/*BLOG */

/* CARD */
.blog-card {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s ease;
  background: #fff;
  border: rgba(0,0,0,0.1);
  border-style: solid;
  border-width: 1px;
}

/* HOVER */
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-color: var(--roxo);
}

/* IMAGEM */
.blog-img {
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* ZOOM */
.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

/* TEXTO */
.blog-card h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-card p {
  line-height: 1.4;
}


/* CARD LISTA DE POST */
.post-card {
  align-items: flex-start;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* HOVER */
.post-card:hover {
  transform: translateX(5px);
}

/* IMAGEM */
.post-img img {
  width: 250px;
  height: 120px;
  object-fit: cover;
  border-radius: 8px;
  
}

/* TEXTO */
.post-content h5 {
  font-size: 16px;
}

.post-content p {
  line-height: 1.4;
}

@media (max-width: 768px) {
  .post-card {
    flex-direction: column;
  }

  .post-img img {
    width: 100%;
    height: auto;
  }
}
