* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito Sans", sans-serif;
  font-size: 100%;
  color: #f7f7f7;
}

:root {
  --cor-destaque: #9f26b8;
  --cor-p-secundario: #53265a;
}

.container {
  max-width: 1420px;
  margin: 0 auto;
  display: block;
  width: 80%;
}

img {
  max-width: 100%;
}

.space-custom {
  padding-top: 6em;
}

p {
  font-size: 1.2rem;
  line-height: 1.5;
}

h2 {
  font-size: 2.5rem;
  font-weight: 500;
}

::-webkit-scrollbar {
  width: 10px;
  background: #eee;
}

::-webkit-scrollbar-thumb {
  background: #787878 !important;
  border-radius: 10px;
}

/*header*/
.logo-header {
  width: 130px;
  padding: 10px;
  padding-left: initial;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
}

.navbar {
  background-color: #f6f5f1;
  box-shadow: 0px -4px 15px -1px rgb(0 0 0 / 75%);
  border-bottom: 1px solid #b0b0b069;
  backdrop-filter: blur(13.5px);
  -webkit-backdrop-filter: blur(13.5px);
}

.align-itens-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 75px;
  justify-content: space-between;
}

.menu-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  height: 60px;
  grid-gap: 5px;
}

.align-logo-bar {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-decoration: none;
  color: var(--cor-destaque);
}

.name-brand {
  font-size: 35px;
  font-family: "Cookie", cursive;
  font-weight: 400;
}

.bottom-brand {
  font-family: "Cookie", cursive;
  font-size: 22px;
}

.nav-item a {
  text-decoration: none;
  font-size: 17px;
  display: flex;
  text-align: center;
  color: var(--cor-destaque);
  padding: 10px 20px;
  margin: 0;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  border-radius: 5px;
  align-items: center;
}

.nav-item a:hover {
  background-color: var(--cor-destaque);
  color: #f7f7f7;
}

.btn-whatsapp {
  text-decoration: none;
  font-size: 17px;
  display: flex;
  text-align: center;
  padding: 10px 20px;
  margin: 0;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
  border-radius: 5px;
  align-items: center;
}

.agnd-nav {
  /*padding: 10px 15px !important; */
  color: #f7f7f7 !important;
  background-color: var(--cor-p-secundario);
}

.nav-item .agnd-nav:hover {
  background-color: var(--cor-destaque);
}

.set-logo {
  width: 80px;
}

.social-icon {
  display: flex;
  align-items: center;
  grid-gap: 10px;
}

.social-icon a {
  text-decoration: none;
  color: #f7f7f7;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: var(--cor-destaque);
}

.pulse {
  animation: animate-pulse 3s linear infinite;
}

@keyframes animate-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(51, 204, 102, .7), 0 0 0 0 rgba(51, 204, 102, .7)
  }

  40% {
    box-shadow: 0 0 0 50px transparent, 0 0 0 0 rgba(51, 204, 102, .7)
  }

  80% {
    box-shadow: 0 0 0 50px transparent, 0 0 0 30px transparent
  }

  100% {
    box-shadow: 0 0 0 0 transparent, 0 0 0 30px transparent
  }
}

/*Intro*/

.intro {
  position: relative;
  color: var(--cor-p-secundario);
  font-size: 18px;
  height: 100vh;
  padding-top: 75px;
  display: flex;
  align-items: center;
  background-color: #f3e5f6;
  text-align: center;
  min-height: 728px;
}

.background-psico {
  background-position: center;
  background: rgb(0 0 0 / 15%) url(../images/background.jpg);
  background-blend-mode: darken;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.set-btn {
  display: flex;
}

.flex-div-intro {
  display: flex;
  align-items: center;
}

.introall {
  grid-gap: 30px;
}

.p-intro {
  grid-gap: 60px;
}

.p-intro p {
  font-weight: 600;
}

.span-color-h1 {
  color: var(--cor-destaque);
  margin-bottom: 15px;
  font-weight: bold;
}

.div-25 {
  width: 25%;
}

.div-33 {
  width: 33.33%;
  float: left;
  box-sizing: border-box;
}

.space-div-33 {
  padding-left: 15px; /* ou margin-left, para espaçar as colunas */
}

.div-35 {
  width: 35%;
}

.div-40 {
  width: 40%;
}

.div-50 {
  width: 50%;
}

.div-60 {
  width: 60%;
}

.div-75 {
  width: 75%;
}

.div-100 {
  width: 100%;
}

.h1-intro {
  margin-bottom: 15px;
  font-size: 2.8rem;
}

#intro .btn-agendar-intro {
  margin-top: 30px;
}

#intro .div-100 {
  text-align: center;
}

#intro .set-btn {
  justify-content: left;
  margin-top: 3em;
}

.btn-agendar-intro {
  width: 200px;
  height: 40px;
  border-radius: 5px;
  padding: 5px;
  font-size: 15px;
  font-weight: bold;
  background-color: var(--cor-p-secundario);
  color: #f7f7f7;
  transition: all .3s;
  box-shadow: 3px 3px 3px 1px #0000007d;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: unset;
}

.btn-agendar-intro:hover {
  background-color: #49903b;
}

.introall .div-35 .img-psi-iza {
  display: none;
}

.text-banner {
  text-align: left;
}

.image-right-banner {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.div-img-right {
  height: 100%;
}

/*index sobre*/

.h2-sobre {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

#sobre {
  color: var(--cor-p-secundario);
  background-color: ghostwhite;
  padding-bottom: 6em;
}

#sobre h2 {
  margin-bottom: 1rem;
}

#sobre .h2-sobre {
  margin-bottom: 3rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  color: var(--cor-destaque) !important;
  margin-left: 60px;
}

#sobre .column-1 {
  padding-right: 15px;
}

#sobre .column-2 {
  padding-left: 15px;
}

#sobre .minha-historia {
  font-size: 26px;
}

#sobre .texto-historia {
  align-items: start !important;
}

#sobre .h2-sobre::before {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--cor-destaque);
  content: ' ';
  margin-right: 0.5rem;
}

#sobre .h2-sobre::after {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--cor-destaque);
  content: ' ';
  margin-left: 0.5rem;
}

#sobre .btn-agendar-intro {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

#sobre .flex-div-intro .space-div-50 {
  display: flex;
  justify-content: center;
}

.name-bottom-foto {
  text-align: center;
  width: 400px;
  margin-top: 3rem;
}

.my-name {
  font-weight: bold;
}

.right-side-sobre {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  grid-gap: 2rem;
}

.about-me {
  width: 348px;
  border-radius: 50%;
  box-shadow: 5px 5px 13px -1px rgb(96 96 96 / 75%);
}

.card-sobre {
  background-color: white;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 4px 4px 9px -3px #B4B4B4;
  border: 1px solid #e0e0e0;
}

.p-bottom-sobre {
  font-size: 16px;
  color: #6e6e6e;
  font-style: italic;
}

/*algumas atuacoes*/

.title-atuacoes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  padding: 5px 12px 5px 13px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-style: solid;
  border-width: 1px;
  border-color: var(--cor-destaque);
  border-radius: 20px;
  background-color: transparent;
  color: var(--cor-destaque);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 140px;
}

#atuacoes {
  color: var(--cor-p-secundario);
  background: #f6f5f1;
  padding-bottom: 6em;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
}

#atuacoes .icons-svg-atuacoes {
  width: 200px;
  height: 200px;
}

/* #atuacoes .btn-agendar-intro {
  background-image: linear-gradient(90deg, #21762d, #39b94a) !important;
} */

#atuacoes .set-btn {
  margin-top: 3rem;
}

#atuacoes>.set-size-img {
  text-align: right;
}

#atuacoes .flex-div-intro {
  grid-gap: 20px;
  margin-top: initial;
}

#atuacoes .h2-sobre {
  color: var(--cor-p-secundario);
}

#atuacoes .right-img {
  display: flex;
  place-content: center;
}

#atuacoes .set-size-img {
  display: flex;
  place-content: center;
}

#atuacoes .set-size-img img {
  width: 590px;
  max-height: 450px;
  object-fit: cover;
  box-shadow: 3px 3px 10px rgb(104 104 104);
  border-radius: 20px;
}

#atuacoes .reverse-flex {
  flex-direction: row-reverse;
  margin-top: 6em;
  margin-bottom: 6em;
}

.title-atuacoes2 {
  width: 100px;
}

/*Areas de atuacao*/

.atuacao-cards {
  border: 1px solid #e3e3e3;
  border-radius: 5px;
  box-shadow: 1px 1px 10px 2px #d9d9d9;
  width: 31%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #444666;
  min-height: 550px;
}

.icon-background {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  padding: 12px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 50%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#57597c), to(#2f314e));
  background-image: linear-gradient(180deg, #57597c, #2f314e);
  box-shadow: none;
  color: #fff;
  text-align: center;
}

.h2-portfolio {
  color: var(--cor-p-secundario);
  text-align: center;
  margin-bottom: 3rem;
}

#portfolio .flex-div-intro {
  grid-gap: 30px;
  display: flex;
  text-align: center;
  flex-direction: row;
  flex-wrap: wrap;
}

#portfolio .set-btn {
  justify-content: center;
  margin-top: 6rem;
}

#portfolio .atuacao-cards h3 {
  margin-bottom: 16px;
  font-size: 26px;
}

#banner-contato {
  background: rgb(0 0 0 / 70%) url(../images/banner-contato.jpg);
  color: #fff;
  padding: 6em 0px;
  margin-top: 6em;
  background-blend-mode: darken;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.flexing-banner {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.h2-banner-contact {
  margin-bottom: 3rem;
}

.wave-bottom {
  position: absolute;
  left: 0%;
  right: 0%;
  z-index: 1;
  width: 100%;
  height: 5vw;
}

.content-cards {
  padding: 25px;
}

#banner-contato .btn-agendar-intro {
  margin-top: 2rem;
}

#banner-contato .btn-agendar-intro {
  background-image: linear-gradient(90deg, #21762d, #39b94a) !important;
}

#banner-contato .btn-agendar-intro:hover {
  background-color: initial;
}

/*Contato index*/

.contact-canal {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #232323;
}

.contact-canal svg {
  fill: var(--cor-p-secundario);
  width: 24px !important;
  margin-right: 5px;
}

#form-contato {
  background: white;
}

#form-ebook {
  background: white;
}

#form-contato .div-50 {
  padding-right: 30px;
  padding-left: 30px;
}

#form-ebook .div-50 {
  padding-right: 30px;
  padding-left: 30px;
}

#form-contato iframe {
  max-width: 100%;
  border: 0;
  width: 100%;
  bottom: 0;
  position: relative;
}

#form-ebook iframe {
  max-width: 100%;
  border: 0;
  width: 100%;
  bottom: 0;
  position: relative;
}

.h3-nome {
  color: var(--cor-p-secundario);
  margin-bottom: 1em;
}

.list-contacts {
  display: flex;
  flex-direction: column;
  grid-gap: 10px;
}

#form-contato .flex-div-intro {
  align-items: initial;
}

#form-ebook .flex-div-intro {
  align-items: initial;
}

#form-contato .h2-sobre {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  color: var(--cor-destaque) !important;
  justify-content: center;
}

#form-ebook .h2-sobre {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  color: var(--cor-destaque) !important;
  justify-content: center;
}

#form-contato .h2-sobre::before {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--cor-destaque);
  content: ' ';
  margin-right: 0.5rem;
}

#form-ebook .h2-sobre::before {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--cor-destaque);
  content: ' ';
  margin-right: 0.5rem;
}


.div-redes {
  display: flex;
  place-content: center;
}

#form-contato form {
  display: flex;
  place-content: center;
}

#form-ebook form {
  display: flex;
  place-content: center;
}

#form-contato .h2-sobre::after {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--cor-destaque);
  content: ' ';
  margin-left: 0.5rem;
}

#form-ebook .h2-sobre::after {
  display: block;
  width: 48px;
  height: 2px;
  background-color: var(--cor-destaque);
  content: ' ';
  margin-left: 0.5rem;
}

.h2-contato {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--cor-p-secundario);
}

.h2-ebook {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--cor-p-secundario);
}

.form-index {
  position: relative;
  border-radius: 30px;
  background: #fbfbfb;
  box-shadow: 5px 5px 10px #d3d3d3;
}

.form-index h2 {
  margin-bottom: 10px;
  color: var(--cor-p-secundario);
}

.sec-formulario .flex-div-intro {
  justify-content: center;
}

.sec-ebook .flex-div-intro {
  justify-content: center;
}

.form-p {
  padding-top: initial !important;
  font-size: initial !important;
  padding-bottom: initial !important;
  margin-bottom: 15px;
}

.form-inner {
  padding: 0px 0px 40px 0px;
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.form-inner input,
.form-inner textarea {
  display: block;
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #c7c7c7;
  border-radius: 5px;
  background: #fafafa;
  font-family: 'Rubik', sans-serif;
}

.form-inner textarea {
  resize: none;
}

.form-inner label {
  color: var(--cor-p-secundario);
  float: left;
  font-weight: 600;
  margin-bottom: 10px;
}

.btn-submit {
  padding: 10px 15px !important;
  margin: 0 auto;
  margin-top: 20px;
  cursor: pointer;
}

/*Modal succes*/

.modal {
  background-color: #ffffff;
  border: 2px solid #a5a5a5;
  border-radius: 20px;
  top: 30%;
  position: fixed;
  left: 50%;
  transform: translate(-50%, 0);
  padding: 20px;
  box-shadow: 4px 4px 10px 1px #433e3b73;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  color: var(--cor-p-secundario);
}

.p-modal {
  padding: 10px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
  color: var(--cor-p-secundario);
}

.msg-success p {
  padding-top: 2em !important;
  padding-bottom: 2em !important;
}

/*Footer*/

.footer {
  background-color: #e9e9e9;
  padding: 30px 0px;
  text-align: center;
  color: var(--cor-p-secundario);
}

.name-lucianadatalab {
  text-decoration: none;
  color: #2b4b80;
}

/*Responsivo*/

@media only screen and (min-width: 1600px) {
  .atuacao-cards {
    min-height: 485px;
  }
}

@media only screen and (max-width: 1080px) {
  .set-logo {
    width: 65px;
  }

  .hamburger {
    display: block;
    position: absolute;
    right: 0;
    top: 25px;
    margin-right: 50px;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  #intro {
    flex-direction: column;
    min-height: 100vh;
    height: initial;
  }

  .menu-nav {
    position: fixed;
    left: -100%;
    top: 75px;
    gap: 15px;
    flex-direction: column;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    opacity: 0;
    height: auto;
    background-color: #f6f5f1;
    padding: 30px 0px;
  }

  .list-contacts {
    place-items: center;
  }

  .right-side-sobre {
    grid-gap: initial;
  }

  .menu-nav.active {
    left: 0;
    border-top: 1px solid #a32eba;
    border-bottom: 1px solid #a32eba;
    margin-left: unset;
    box-shadow: unset;
    top: 75px;
    height: auto;
    opacity: 1;
    overflow: auto;
  }

  #portfolio .flex-div-intro {
    justify-content: center;
  }

  .div-75,
  .div-50,
  .div-25,
  .div-60,
  .div-40,
  .atuacao-cards,
  .form-index {
    width: 100%;
    text-align: center;
  }

  .div-img-right {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .atuacao-cards {
    max-width: 575px;
    min-height: initial;
  }

  h1 {
    font-size: 2.0rem !important;
  }

  h2 {
    font-size: 1.5rem !important;
  }

  h3 {
    font-size: 1.2rem !important;
  }

  p {
    font-size: 1.0rem !important;
  }

  .list-contacts a {
    font-size: 1.0rem !important;
  }

  .set-btn {
    justify-content: center !important;
    margin-bottom: 30px;
  }

  .flex-div-intro,
  #atuacoes .reverse-flex {
    flex-direction: column;
    margin-top: 3em;
    margin-bottom: 3em;
  }

  #atuacoes .icons-svg-atuacoes {
    width: 160px;
    margin: 10px 0px;
  }

  .space-custom {
    padding-top: 3em;
  }

  #sobre {
    padding-bottom: 1em;
  }

  #sobre .flex-div-intro .space-div-50 {
    margin-top: 1em;
  }

  #sobre .flex-div-intro {
    margin-bottom: 0 !important;
  }

  #sobre .column-1 {
    padding-right: initial;
  }

  #sobre .column-2 {
    padding-left: initial;
  }

  .title-atuacoes {
    margin: 0 auto;
    margin-bottom: 15px;
  }

  #atuacoes {
    padding-bottom: 3em;
  }

  #sobre .h2-sobre {
    place-content: center;
    margin-left: initial;
  }

  .about-me {
    margin-bottom: 3rem;
  }

  #portfolio {
    padding-bottom: 3em;
  }

  #banner-contato {
    margin-top: 3em;
  }

  .my-name {
    margin-bottom: 10px;
  }

  .sec-formulario .flex-div-intro {
    grid-gap: 20px;
  }
  
  .sec-ebook .flex-div-intro {
    grid-gap: 20px;
  }

  .boxes-sobre {
    flex-direction: column;
  }

  #form-contato .div-50 {
    padding-left: initial;
    padding-right: initial;
  }
  
  #form-ebook .div-50 {
    padding-left: initial;
    padding-right: initial;
  }

  #form-contato .form-inner {
    padding: 0px;
  }
  
  #form-ebook .form-inner {
    padding: 0px;
  }

  #footer {
    padding-top: 2rem;
  }

  #footer .flex-div-intro {
    align-items: center;
    text-align: center;
    grid-gap: 25px;
  }

  #intro .div-75 {
    padding-top: 10vh;
    padding-bottom: 10vh;
  }

  .align-itens-header {
    height: 75px;
  }

  #banner-contato {
    padding: 3em 0px;
  }

  .name-bottom-foto {
    width: 100%;
    margin-bottom: 3rem;
    margin-top: initial;
  }

  .image-right-banner {
    width: 600px;
    border-radius: 20px;
  }

  .text-banner {
    padding: 45px 0px;
  }
}

@media only screen and (max-width: 600px) {
  .name-brand {
    font-size: 25px;
  }

  .bottom-brand {
    font-size: 16px;
  }

  .image-right-banner {
    border-radius: initial;
  }

  .wave-bottom {
    height: 10vw;
  }
}

.cards-intro {
  display: flex;
  flex-wrap: column; /*wrap; /* Permite quebrar em linhas menores se precisar em telas pequenas */
  gap: 20px; /* Espaço entre os cards */
    /*justify-content: space-between;*/
}

.cards-intro {
  display: flex;
  flex-direction: column; /* força empilhamento em linhas */
  gap: 20px; /* espaço entre os cards */
}

.card.div-100 {
  width: 100%;
}

.card {
  flex: 1 1 30%; /* Ajusta para 3 cards lado a lado com alguma folga */
  box-sizing: border-box;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.card .icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

@media (max-width: 900px) {
  .card {
    flex: 1 1 100%;
  }
}