/* style.css */

@font-face {
    font-family: 'josefin';
    src: url('fonts/josefin.ttf') format('truetype');
    font-style: normal;
}

/* Container da tela de loading */
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #343a40;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Logo animada */
.loading-logo {
  width: 50px;
  height: auto;
  margin-bottom: 30px;
  animation: pulse 1.8s infinite ease-in-out;
}

/* Animação de pulsar */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}

/* Barra de progresso */
.progress {
  width: 80%;
  height: 15px;
  background-color: #7d6b5d;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, #3d0000, #ff0600);
  transition: width 0.4s ease;
  border-radius: 10px;
}

:root {
  /* Cores industriais e energéticas */
  --bs-dark: #000000;          /* Fundo principal escuro */
  --bs-body-bg: #1c1c1c;       /* Fundo secundário */
  --bs-body-color: #ffffff;    /* Texto principal */
  
  --bs-primary: #ffc107;       /* Amarelo vibrante (botões, ícones) */
  --bs-danger: #e53935;        /* Vermelho sangue (alertas, urgência) */
  --bs-warning: #ff9800;       /* Amarelo laranja secundário */
  --bs-secondary: #6c757d;     /* Cinza Bootstrap */
  --bs-light: #f8f9fa;
  --bs-white: #ffffff;
  --bs-black: #000000;

  /* Gradiente padrão para CTA */
  --geraflash-gradient: linear-gradient(135deg, #ffc107, #e53935);

  /* Ícones/textos secundários */
  --text-muted: #b0b0b0;
}

h1,h2,h3,h4,h5, p, li a {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

section{
  border-bottom: solid 2.3px rgb(255, 87, 0, 50%);
}

.divisor{
  position: absolute;
  z-index: 999;
  width: 100%;
  line-height: 0;
  margin-top: -28px;
  text-align: center;
}

.divisor img{
  width: 35px;
}

.grayscale-hover {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
}
.grayscale-hover:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}


.btn-primary {
  background: var(--geraflash-gradient);
  border: none;
  color: #000;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.25);
  backdrop-filter: blur(6px);
}

.btn-primary:hover,
.btn-primary:focus {
  filter: brightness(1.1);
  transform: scale(1.04);
  box-shadow: 0 0 16px rgba(229, 57, 53, 0.4);
  color: #000;
}


.btn-outline-light {
  color: #fff;
  border-color: #fff;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background-color: #fff;
  color: var(--bs-dark);
}

.btn-secondary {
  background-color: var(--bs-secondary);
  border-color: var(--bs-secondary);
  color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: #2a074f;
  border-color: #2a074f;
}


html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}


body {

    font-family: josefin;
    font-style: normal !important;

}

a {
  text-decoration: none;
  color:#e93b89 ;
}

body.loading {
  overflow: hidden;
}


.glass-nav {
  background-color: rgba(20, 0, 30, 0.8); /* fundo roxo escuro com transparência */
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

nav {
   border-bottom: solid 2.3px rgb(255, 87, 0, 50%);
}

.liquid-glass {
  overflow: hidden;
}

.liquid-glass .glass-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  filter: url(#displacementFilter);

  -webkit-mask-image: url('../imagens/site/displacement-map.png');
  mask-image: url('../imagens/site/displacement-map.png');
  mask-size: cover;
  mask-repeat: no-repeat;

  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);

  -webkit-box-shadow:inset 0px 0px 54px -27px rgb(255 110 46 / 90%);
  -moz-box-shadow:inset 0px 0px 54px -27px rgb(255 110 46 / 90%);
  box-shadow: inset 0px 0px 54px -27px rgb(255 110 46 / 90%);
}

.liquid-glass .nav-content {
  position: relative;
  z-index: 2;
}

.navbar-nav .nav-link {
  color: #f8f9fa;
  font-weight: 600;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--bs-primary);
}

.navbar .btn-primary {
  transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
  background-color: #e93b89;
  border-color: #e93b89;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn-outline-light{
  border: solid 2.3px rgb(255, 255, 255, 35%) !important;
}

.liquid-button .glass-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  filter: url(#displacementFilter);

  -webkit-mask-image: url('../imagens/site/displacement-map.png');
  mask-image: url('../imagens/site/displacement-map.png');
  mask-size: cover;
  mask-repeat: no-repeat;

  background-color: rgba(255, 255, 255, 0.08);

  -webkit-box-shadow:inset 0px 0px 11px -3px rgb(255 110 46 / 90%);
  -moz-box-shadow:inset 0px 0px 11px -3px rgb(255 110 46 / 90%);
  box-shadow:inset 0px 0px 11px -3px rgb(255 110 46 / 90%);

  z-index: 1;
  pointer-events: none;
}

.liquid-button .btn-content {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}


.logo-transition {
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateX(0);
}

/* Efeito de saída */
.logo-hide {
  opacity: 0;
  transform: translateX(-20px);
}


.hero-section {
  min-height: 100vh;
  background-image: url('../imagens/site/hero-bg.png'); /* caminho da imagem */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--bs-body-color);
  /*
  padding-top: 0px;
  padding-bottom: 55px;
  */
  text-align: center;
  position: relative;
  overflow: hidden;
}


.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3); 
  z-index: 0;
}


.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1,
.hero-section p {
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.logo-hero {
  max-height: 200px;
}


.ig-post-card {
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.ig-post-card:hover {
  transform: scale(1.03);
}

.ig-post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.ig-post-card:hover .ig-overlay {
  opacity: 1;
}

.ig-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
  text-align: left;
  padding: 0.75rem 1rem;
}

.ig-caption p {
  margin: 0;
  white-space: normal;
  word-break: break-word;
  line-height: 1.4;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #febc09, #ca641b, #e64033);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    padding-top: 8px;
}

.icon-box:hover {
  transform: scale(1.1);
}

.section-gradient-escuro {
  /*background: linear-gradient(160deg, #000000 0%, #1c1c1c 50%, #111111 100%);*/
  background: url('../imagens/site/section-bg.jpg');
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: top left;
}


.section-gradient-claro {
  background: linear-gradient(160deg, #2a0549 0%, #ff79c6 50%, #ffb86b 100%);
}

.section-gradient-dark {
  /*background: linear-gradient(160deg, #5f2d2d 0%, #676767 50%, #59432d 100%);*/
  background: url('../imagens/site/section-bg-dark.jpg');
  background-size: cover;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: top left;
}


.feature-box {
  position: relative;
  border-radius: 12px;
  padding: 15px 15px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.08);
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.feature-box .glass-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  filter: url(#displacementFilter);
  -webkit-mask-image: url('../imagens/site/displacement-map.png');
  mask-image: url('../imagens/site/displacement-map.png');
  mask-size: cover;
  mask-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0px 0px 50px -5px rgb(255 110 46 / 90%);
  pointer-events: none;
}

.feature-box .content {
  position: relative;
  z-index: 2;
}


.icon-color {
  font-size: 60px;
    background: linear-gradient(160deg, #2a0549 0%, #ff79c6 50%, #ffb86b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.icon-color-escuro {
  font-size: 60px;
    background: linear-gradient(160deg, #14001e 0%, #2a0549 50%, #1a042a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  transition: opacity 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}


/* para definir estrutura no mobite casa necessario*/

@media (max-width: 768px) {

    .logo-hero {
      max-height: 70px;
    }

    .navbar ul {
      font-size: calc(1.3rem + .6vw) !important;
    }

    .navbar .btn {
      font-size: calc(1.275rem + .3vw) !important;
    }

    .case-title{
        font-size: 60px;
        margin-bottom: 8px;
        line-height: 60px;
    }

    #planos h1{
      font-size: xxx-large;
    }

    #sobconsulta{
      font-size: xx-large !important;
    }

    .section-gradient-escuro {
      background: url('../imagens/site/section-bg-mobile.jpg');
    }

    .section-gradient-dark {
      background: url('../imagens/site/section-bg-dark-mobile.jpg');
      background-size: cover;
      background-attachment: scroll;
      background-repeat: no-repeat;
      background-position: top left;
    }

}

.text-primary{
  color: #693397 !important;
}

