/* style.css */

@font-face {
    font-family: 'quicksand';
    src: url('fonts/quicksand.ttf') format('truetype');
    font-style: normal;
}

:root {
  /* Base escura elegante */
  --bs-dark: #14001e;         /* Fundo principal escuro e profundo */
  --bs-body-bg: #1a042a;      /* Cor de fundo secundária */
  --bs-body-color: #f8f9fa;   /* Cor padrão do texto */

  /* Gradiente de destaque */
  --invytograd-top: #ff4d9d;  /* Rosa vibrante */
  --invytograd-mid: #ff79c6;  /* Magenta suave */
  --invytograd-base: #ffb86b; /* Laranja rosado */

  /* Cores Bootstrap personalizadas */
  --bs-primary: #ff4d9d;
  --bs-secondary: #3c096c;
  --bs-success: #ffb86b;
  --bs-info: #ff79c6;
  --bs-warning: #ffc107;
  --bs-danger: #e53935;
  --bs-light: #f8f9fa;
}

/* Botões com visual INVYTO */
.btn-primary {
  background: linear-gradient(135deg, #2a0549 0%, #ff79c6 50%, #ffb86b 100%);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  filter: brightness(1.1);
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(255, 79, 157, 0.4);
  color: #fff;
}

.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;
}

/*
.btn-success {
  background-color: var(--bs-success);
  border-color: var(--bs-success);
  color: #212529;
}

.btn-success:hover,
.btn-success:focus {
  background-color: #ffaa44;
  border-color: #ffaa44;
}

*/

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}


body {

    font-family: quicksand;
    font-style: normal !important;

}

a {
  text-decoration: none;
  color:#e93b89 ;
}

body.loading {
  overflow: hidden;
}

/* Container da tela de loading */
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #14001e;
  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: #1e012d;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px #000;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, #2a0549 0%, #ff79c6 50%, #ffb86b 100%);
  transition: width 0.4s ease;
  border-radius: 10px;
}


.glass-nav {
    background-color: rgb(91 25 124 / 55%);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.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;
}

.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-color: var(--bs-dark);
  color: var(--bs-body-color);
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #3c096c 0%, #14001e 100%);
  opacity: 0.6;
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
}

.hero-section h1,
.hero-section p {
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.logo-hero {
  max-height: 350px;
}

.video-frame {
    width: 336px;
    height: 590px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    border: 6px solid rgba(255, 255, 255, 0.09);
}

.video-phone {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ff4d9d, #ff79c6, #ffb86b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.icon-box:hover {
  transform: scale(1.1);
}

.section-gradient-escuro {
  background: linear-gradient(160deg, #14001e 0%, #2a0549 50%, #1a042a 100%);
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-position: top left;
}

.section-gradient-claro {
  background: linear-gradient(160deg, #2a0549 0%, #ff79c6 50%, #ffb86b 100%);
}


.feature-box {
  background-color: #f9f9f9;
  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;
  color: #693397;
  overflow: hidden;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.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;
}


.case-video-frame {
  width: 336px;
  height: 590px;
  background-color: #eee;
  border: 6px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

#case-sucesso ul li {
  font-size: 1rem;
}

.case-title{
  font-size: 55px;
  margin-bottom: 8px;
  position:relative;
  z-index: 999;
}

.case-icons{
  background: linear-gradient(160deg, #2a0549 0%, #ff79c6 50%, #ffb86b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


#planos .card ul li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* container caso preciso de preenchar toda tela */

.container-h100 {
    height: 100% !important;
    width: 100% !important;
    min-height: 100vh !important;
}

/* classe para efeito de vidro */

.glass{
    background-color: rgb(43 19 69 / 70%);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

/* para definir estrutura no mobite casa necessario*/

@media (max-width: 768px) {

    .logo-hero {
      max-height: 170px;
    }

    .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;
    }

}

.text-primary{
  color: #693397 !important;
}

.simulador-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  height: 70%;
  width: 100%;
  align-self: center; /* mantém a div centralizada verticalmente no .card */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;

}

.glass-starter{
  background-color: rgb(104 35 163 / 20%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.glass-vip{
    background-color: rgb(45 23 64 / 54%);
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
}

.simulador-overlay.show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.accordion-button::after {
  transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-button::after {
  background-image: linear-gradient(160deg, #2a0549 0%, #ff79c6 50%, #ffb86b 100%);
  background-size: cover;
  color: transparent; /* oculta fallback */
  border: none;
  width: 1.25rem;
  height: 1.25rem;
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-bg{
  background-color: #3c096c;
}

.chama-fogo {
  background: linear-gradient(160deg, #ff0000, #ffca00);
  background-size: 100% 100%;
  /*animation: chamaGradiente 2s ease-in-out infinite;*/
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*
@keyframes chamaGradiente {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
*/

.form-control::placeholder {
  color: #554065;
}
.form-control::-webkit-input-placeholder { color: #554065; }
.form-control:-moz-placeholder { color: #554065; }
.form-control::-moz-placeholder { color: #554065; }
.form-control:-ms-input-placeholder { color: #554065; }

.input-cupom{
  background-color: #e7e7e7 !important;
  color: #554065 !important;
}
.input-cupom::placeholder {
  color: #a0a0a0;
}
.input-cupom::-webkit-input-placeholder { color: #a0a0a0; }
.input-cupom:-moz-placeholder { color: #a0a0a0; }
.input-cupom::-moz-placeholder { color: #a0a0a0; }
.input-cupom:-ms-input-placeholder { color: #a0a0a0; }

.logo-mike{
    border-radius: 15px !important;
    background-color: #fff;
    border: solid 1px #f0f0f0;
    padding: 11px;
    -webkit-box-shadow: 0px 0px 6px 6px rgba(0,0,0,0.03);
    -moz-box-shadow: 0px 0px 6px 6px rgba(0,0,0,0.03);
    box-shadow: 0px 0px 6px 6px rgba(0,0,0,0.03);
}

/*############################ DASHBOARD ##########################*/

.logo-primeiro-acesso{
  max-width: 150px;
}
.toggle-olho{
  color: #FFF;
  background-color: #643981;
}

.sidebar {
  width: 75px;
  transition: width 0.3s;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow-x: hidden;
  z-index: 1030;
  padding: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar:hover {
  width: 200px;
}

.sidebar .nav-link {
  color: white;
  padding: 10px;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.3s;
  border-radius: 10px;
}

.sidebar .nav-link:hover {
  background-color: #31363b;
}

.sidebar .nav-link.active {
  background: linear-gradient(135deg, #2a0549 0%, #ff79c6 50%, #ffb86b 100%);
  font-weight: bold;
  border-radius: 10px;
}


.sidebar .nav-link span {
  opacity: 0;
  transition: opacity 0.3s;
  margin-left: 10px;
}

.sidebar:hover .nav-link span {
  opacity: 1;
}

.sidebar .nav-link i {
  font-size: 25px;
  margin-left: 5px;
}


#main-content {
  transition: margin-left 0.3s;
}

/* Aplique o margin-left apenas em telas médias para cima (>=768px) */
@media (min-width: 768px) {
  #main-content {
    margin-left: 75px;
  }
  /*
  #main-content .container {
    height: ;
  }
  */

  .sidebar:hover ~ #main-content {
    margin-left: 200px;
  }
}

/*
@media (max-width: 767.98px) {
  #main-content {
    height: calc(100vh - 80px) !important;
  }
}
*/

.sidebar-footer {
  padding: 10px 0px 0px 0px !important;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  overflow: hidden;
}

.sidebar-footer span {
  opacity: 0;
  transition: opacity 0.3s;
  margin-left: 10px;
  font-size: 10px;
}

.sidebar:hover .sidebar-footer span {
  opacity: 1;
}

.bt-offcanvas{
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-body .nav-link.active {
  background: linear-gradient(135deg, #2a0549 0%, #ff79c6 50%, #ffb86b 100%);
  font-weight: bold;
  border-radius: 5px;
}

.offcanvas-body .nav-link {
  color: white;
  padding: 10px;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.3s;
  border-radius: 10px;
}

.offcanvas-body .nav-link:hover {
  background-color: #31363b;
}

.offcanvas-body .nav-link.active {
  background: linear-gradient(135deg, #2a0549 0%, #ff79c6 50%, #ffb86b 100%);
  font-weight: bold;
  border-radius: 10px;
}

.offcanvas-body .nav-link span {
  transition: opacity 0.3s;
  margin-left: 10px;
}

.offcanvas-body .nav-link i {
  font-size: 25px;
  margin-left: 5px;
}

.offcanvas-body .sidebar-footer span {
  opacity: 1;
  margin-left: 10px;
  font-size: 10px;
}

.glass-effect{
  background-color: rgb(104 35 163 / 20%);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);

  box-shadow: 0px 0px 30px 3px rgba(255,255,255,0.2) inset;
  -webkit-box-shadow: 0px 0px 30px 3px rgba(255,255,255,0.2) inset;
  -moz-box-shadow: 0px 0px 30px 3px rgba(255,255,255,0.2) inset;
}