/********** Template CSS **********/
 @font-face {
    font-family: 'Audiowide';
    src: url('../fonts/Audiowide-Regular.ttf') format('woff2')
  }

  @font-face {
    font-family: 'PT Sans';
    src: url('../fonts/PTSans-Regular.ttf') format('woff2')
  }
 
 @font-face {
    font-family: 'PT Serif';
    src: url('../fonts/PTSerif-Regular.ttf') format('woff2')
  }

:root {
    --primary: #F0E68C ;  /* Light gold */
    --secondary: #e7b91a; /* gold */
    --light: #c7c7c7;
    --dark:  #808080;
    --darkhard:  #212529;
    --darkhard-opaco:  #212529a1;
    --especial:  #2f394452;
    --contraste: #ffffe073;
}

  h1,
  h2,
  h3,
  h4,
  h5 {
    font-family: Audiowide, 'PT Serif', sans-serif;
    color: var(--light); 
  }
.bg-dark{
  background: var(--darkhard-opaco); /* leve transparência */
  backdrop-filter: blur(30px);          /* efeito vidro */
  -webkit-backdrop-filter: blur(12px);  /* suporte Safari */
  box-shadow: 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background 0.3s ease;
}
.text-primary{
    color: var(--light); 
}

p{
    font-family: 'PT Serif', Audiowide, sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: ligther !important;
  }
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.logo {
    width: clamp(8rem, 10vw, 14rem); /* mínimo de 8rem (~128px), ideal 10% da tela, máximo de 14rem (~224px) */
    height: auto;
    border-radius: 0;
    border: 0;
}


.textF {
    color: var(--dark);
    text-decoration: none;
}

.textF:hover {
    color: var(--light);
}
a {
    /* color: #363636; */
    text-decoration: none
  }

a:hover {
color: var(--secondary);
}
  
a:visited {
color: var(--secondary);
}
  
  a:not([href]):not([class]),
  a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
  }
  
  @media (max-width: 575px) {
    #variavel img{
      max-width: 100%;
    }
  }
  
  #footerAnuncio *{
    margin: -3px;
 }
.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 85px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.dropdown-item {
    color: var(--dark);
    font-weight: 500;
}
/*** Button ***/
.btn {
    transition: .5s;
    color: var(--light) !important;
}

.btn-outline-light {
    color: var(--darkhard)!important;
    border-color: var(--light) !important;
    background-color: var(--dark) !important;
    transition: opacity .5s ease-out, visibility 0s linear 0s !important;
}

.btn-outline-light:hover {
    color: var(--dark)!important;
    background-color: var(--light) !important;
    transition: opacity 1.5s ease-out, visibility 0s linear 0s !important;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: var(--light);
    background-color: var(--darkhard); 
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 35px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
}

.navbar {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    z-index: 9999 !important;
}

.navbar-brand {
  margin: 0 auto;
}

.navbar.bg-white {
  background-color: var(--especial) !important;
  backdrop-filter: blur(50px);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\F282";
    font-family: "bootstrap-icons";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 1.5rem;
    padding: 0.5rem 0;
    /* color: #FFFFFF; */
    font-size: 1rem;
    text-transform: none;
    outline: none;
    color: var(--light) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--dark) !important;
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0;
        padding: 0;
    }

    .navbar-light .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

.navbar-light .navbar-brand {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--light);
    font-weight: 600;
    font-family: 'PT Serif';
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;

    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -120px;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: var(--dark);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #DDDDDD;
}

/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}

/*** About ***/
.about-img img {
    position: relative;
    z-index: 2;
}

.about-img::before {
    position: absolute;
    content: "";
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: skew(20deg);
    z-index: 1;
}


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgb(14 , 46, 80, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}



/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgb(14 , 46, 80, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgb(14 , 46, 80, .3) !important;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--light);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--darkhard);
    border: 0.01rem solid rgba(255, 255, 255, 0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--darkhard) !important;
    border-color: var(--light) !important;
    border: 0 solid rgba(255, 255, 255, 0.5);
    transition: 0.9s !important;;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 15px;
    font-weight: normal;
    color: var(--light) !important;
    transition: all 0.3s ease;
}

.footer .btn.btn-link::before {
    margin-right: 0.3rem;
    position: relative;
    content: "\F285";
    font-family: "bootstrap-icons";
    transition: 0.2s !important;   
}

.footer .btn.btn-link:hover {
    margin-left: 0.5rem;
    transform: scaleX(1); /* Aumenta o tamanho horizontalmente */
    color: var(--primary) !important;
}

.footer .form-control {
    border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer a, .footer p {
    font-family: 'PT Sans' !important;
    font-size: 0.7rem !important;
    color: var(--light) !important;
}

.footer h5{
    color: var(--secondary);
}

.breadcrumb-item{
    font-family: 'PT Serif';
    font-weight: 500;
    font-size: 1.2rem;
}

.card-plano {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 0.4rem solid #ffffff00;
  border-radius: 0.4em;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease-in-out;
}

.card-plano:hover {
  transform: scale(1.02);
  border: 0.4rem solid #ffffff1f;
  background: #ffffff1f; /* leve transparência */
  backdrop-filter: blur(30px);          /* efeito vidro */
  -webkit-backdrop-filter: blur(30px);  /* suporte Safari */
  box-shadow: 1 8px 32px var(--darkhard-opaco);
  transition: transform 0.3s ease, background 0.3s ease;
    
}

.card-plano h3,
.card-plano h5,
.card-plano .preco {
  font-family: Audiowide, sans-serif;
  font-size: 1.8rem;
}

.card-plano h1 {
   font-size: 5.8rem;
   font-family: Audiowide, serif;
   text-transform: uppercase;
   text-shadow:
    -2px -2px 0 black,
     2px -2px 0 black,
    -2px  2px 0 black,
     2px  2px 0 black;
}

.megas{
    font-family: Audiowide, serif;
    font-size: 2rem;
    color: limegreen;
    text-transform: uppercase;
    -webkit-text-stroke: 0.1rem var(--contraste); /* largura e cor da borda */
}

.card-plano .beneficios {
  margin-top: 1rem;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0 0.5rem;
}

.card-plano .beneficios p {
  margin-bottom: 0.6rem;
  color: #fff;
}

.card-plano a.btn {
  font-size: 1.3rem;
  font-weight: bold;
}

.card-plano a.btn:hover {
  color: var(--secondary) !important;
}

.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.bg-video {
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.7; /* ou ajuste conforme o contraste desejado */
  position: fixed;
  z-index: -1;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='gold' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


body{
  background: var(--especial);
  backdrop-filter: blur(10em);
  -webkit-backdrop-filter: blur(30px);
  border-top: 0.01rem solid #212529;
  transition: transform 0.3s ease-in-out;
    
}

.contatos{
  background-color: #ffffff00;
  backdrop-filter: blur(10em);
  -webkit-backdrop-filter: blur(30px);
  transition: transform 0.3s ease-in-out;
  margin-top: 2em;
  border: 0.4rem solid #ffffff00;
  border-radius: 0.4em;

    flex-wrap: wrap; /* permite quebra em múltiplas linhas */
    word-break: break-word; /* quebra palavras longas se necessário */
    overflow-wrap: break-word; /* suporte extra para navegadores antigos */
}

.contatos a, em{
    font-family: Audiowide;
    font-weight:bold;
    font-size: 0.7rem;
    color: var(--light);
    
}

.contatos .bg-light{
    background-color: #ffffff00;
    backdrop-filter: opacity(0.4);
    border: 0.4rem solid #ffffff00;
    border-radius: 0.4em;
}

.contatos .icon {
    background-color: #ffffff47 !important;
    backdrop-filter: opacity(0.4) !important;
    border: 0.4rem solid #ffffff00 !important;
    border-radius: 0.4em !important;
} 

.bg-suporte {
  background-image: url('../img/suporte.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.6; /* ou ajuste conforme o contraste desejado */
}

#footerContainer {
  visibility: hidden;
  position: relative;
  z-index: 10; /* ou mais, se necessário */
}

.bg-opacity{
    background-color: #ffffff47 !important;
}


.display-7 {    
    font-size: calc(1rem + 1.1vw);    
    font-weight: 300;    
    line-height: 1.2}
@media (min-width: 1200px) {    
    .display-7 {        
        font-size:1rem    
    }
}

.breadcumb-container li, .breadcumb-container h1 {    
    font-size: 0.9rem;
}

.rotativo-text {
  min-height: 1.2em;
  font-style: italic;
  font-size: 0.9rem;
}


.rotativo-text a {
  font-weight: 500;
}

.rotativo-text img {
  object-fit: cover;
}
#breadcrumbRotativo a {
  color: #fff;
  text-decoration: none;
}

#breadcrumbRotativo img {
  max-height: 30px;
  margin-right: 8px;
  border-radius: 4px;
  vertical-align: middle;
}

#mapaCobertura {
  width: 100%;
  height: 200px; /* padrão para telas pequenas */
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

/* Telas a partir de 576px (ex: celulares grandes, tablets em pé) */
@media (min-width: 576px) {
  #mapaCobertura {
    height: 300px;
  }
}

/* Telas a partir de 768px (tablets paisagem e laptops pequenos) */
@media (min-width: 768px) {
  #mapaCobertura {
    height: 400px;
  }
}

/* Telas a partir de 992px (notebooks e desktops médios) */
@media (min-width: 992px) {
  #mapaCobertura {
    height: 500px;
  }
}

/* Telas a partir de 1200px (monitores maiores) */
@media (min-width: 1200px) {
  #mapaCobertura {
    height: 600px;
  }
}

.radio-icon {
  width: 48px;
  height: 48px;
}

.radio-player .btn-outline-info, .radio-player .btn-outline-info:hover, .radio-player .btn-outline-info:active, .radio-player .btn-outline-info:after{

    border: none !important;
    box-shadow: none !important;
}

.btn-outline-info:hover {
    color: var(--darkhard) !important;
    background-color: var(--light) !important;
    transition: opacity .5s ease-out, visibility 0s linear 0s !important;
}

.whatsapp-btn {
  background-color: var(--especial);
  color: #d1d1d1;
  border: 1px solid #444;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-btn:hover {
  background-color: var(--secondary);
  border-color: #126c34;
  color: #d1d1d1;
}

/* Força o texto a herdar a nova cor */
.whatsapp-btn .texto-wpp {
  color: inherit;
  transition: color 0.3s ease;
}

/* Isso garante que o ícone e o texto respondam */
.whatsapp-btn:hover .texto-wpp,
.whatsapp-btn:hover i {
  color: var(--darkhard);
}

.conselhos .nav-link{
    color: var(--light);
}

.conselhos .psicologo .nav-link{
    background-color: hsla(2, 44%, 72%, 0.283);
    color: var(--light);
}

.conselhos .psicologo .nav-link:hover{
    background-color: hsla(2, 44%, 72%, 0.644);
    color: var(--darkhard);
}

.conselhos .psicologo .nav-link:before{
    background-color: rgb(215 153 151);
    color: var(--darkhard);
}

#aba4-tab.active {
  background-color: rgb(215 153 151) !important; /* rosa claro */
  color: #212529 !important;            /* texto escuro */
}

.cookie-consent {
  position: fixed;
  top:10%; 
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(20, 20, 20, 0.9);
  border: 1px solid #444;
  border-radius: 16px;
  z-index: 999999;
  max-width: 700px;
  width: 95%;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

#acceptCookies {
  background-color: var(--secondary);
  color: var(--darkhard) !important;
  cursor: pointer;
  border: 1px solid #444;
  border-radius: 5px;    
}

#declineCookies{
  background-color: var(--secondary);
  color: var(--darkhard) !important;
  cursor: pointer;
  border: 1px solid #444;
  border-radius: 5px;
}

.cookie-consent.show {
  opacity: 1;
  pointer-events: auto;
}

.btn-cookie {
  transition: all 0.3s ease;
}

.btn-cookie:hover {
  transform: scale(1.05);
  filter: brightness(1.15);
}

.ajuda-psicologica-tab {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 999;
}

.ajuda-psicologica-tab .btn {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 2px solid #ffc107;
  color: #ffc107;
  transition: 0.3s;
}

.ajuda-psicologica-tab .btn:hover {
  background-color: #ffc107;
  color: #000;
}

.nav-tabs .nav-item {
  flex: 1 1 auto;
  text-align: center;
  min-width: 0;
}

.nav-tabs .nav-link {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.glass-bg {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 12px;
}

#breadcrumbRotativo {
  font-style: italic;
  font-size: 0.9rem;
}


#facebook, #instagram, #whatsapp {
    background-color: #ffffff14 !important;
    border-color: #e7b91a4d !important;
    box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.5);
    opacity: 0.8;
}

#facebook .bi-facebook,
#instagram .bi-instagram,
#whatsapp .bi-whatsapp {
  opacity: 0.4;
  transform: scale(1);
  transition: 
    color 0.5s ease-in-out, 
    opacity 0.8s ease-in-out, 
    transform 0.4s ease-in-out;
}

/* Hover */
#facebook:hover .bi-facebook {
  color: blue !important;
  opacity: 1 !important;
  transform: scale(1.1) !important;
}

#instagram:hover .bi-instagram {
  color: rgb(231, 53, 121) !important;
  opacity: 1 !important;
  transform: scale(1.1) !important;
}

#whatsapp:hover .bi-whatsapp {
  color: rgb(38, 205, 44) !important;
  opacity: 1 !important;
  transform: scale(1.1) !important;
}

.nav-tabs .nav-link.active {
  background-color: var(--dark) !important; /* verde Bootstrap */
  color: var(--darkhard) !important;
  border-color: var(--dark) !important;
  font-weight: 600;
}

.text-muted{
    color: var(--light) !important;
}

.campo-alinhado {
  height: 48px; /* Ajuste para o valor que desejar */
  font-size: 16px;
}

#captchaCanvas {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Courier New', Courier, monospace;
}
