/*------------------------------------------------
*
* Template name : Naru
* Version       : 1.0.2
* Author        : FlaTheme
* Author URL    : https://themeforest.net/user/flatheme
* Table of Contents: 
* 1.  Base
* 2.  Forms
* 3.  Lists
* 4.  Typography
* 5.  Buttons
* 6.  Clients 
* 7.  Lightbox
* 8.  Map
* 9.  Header
* 10. Portfolio
* 11. Preloader
* 12. Utilities
*
-------------------------------------------------*/
/*------------------------------------------------
  1. Base
-------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&family=Poppins:wght@100;200;300;400;500;600;700;800;900&family=Lora:wght@400;500;600;700&display=swap");
html, body {
  width: 100%;
  height: 100%;
}

body {
  overflow-x: hidden;
  position: relative;
  z-index: 1;
  background: #fffcf1;
  min-height: 100%;
}

p{
  text-align: justify
}
img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.container-fluid {
  padding: 0 60px;
}

.container-fluid-image{
    padding: 0 60px;
  border-radius: 14px;
    margin: 25px;
    padding: 25px;
    background: #131313;
}

.container-fluid-image img {
  width: 100%;
  aspect-ratio: 1 / 1; /* torna a imagem quadrada */
  object-fit: cover;   /* corta e centraliza a imagem mantendo o enquadramento */
  border-radius: 12px; /* opcional — deixa os cantos levemente arredondados */
  display: block;
}

.container-fluid-image .legenda {
text-align: justify;
color: whitesmoke;
}

@media (min-width: 1600px) {
  .container-fluid {
    padding: 0 70px;
  }
}

@media (min-width: 1920px) {
  .container-fluid {
    max-width: 1780px;
  }
}

@media (max-width: 1199.98px) {
  .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 991.98px) {
  .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 767.98px) {
  .container-fluid {
    padding: 0 30px;
  }
}

.section {
  padding: 90px 0;
}

@media (max-width: 1199.98px) {
  .section {
    padding: 70px 0;
  }
}

@media (max-width: 991.98px) {
  .section {
    padding: 50px 0;
  }
}

.section-sm {
  padding: 70px 0;
}

@media (max-width: 1199.98px) {
  .section-sm {
    padding: 50px 0;
  }
}

@media (max-width: 991.98px) {
  .section-sm {
    padding: 30px 0;
  }
}

.section-xs {
     display: flex;
    justify-content: center;
    background: #fff6d1;
    align-items: center;
}
.section-xs-about {
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.section-xs-50 {
    display: flex;
    justify-content: center;
    background: #fff6d1;
    align-items: center;
    height: 50vh;

}

@media (max-width: 1199.98px) {
  .section-xs {
    padding: 40px 0;
  }
}

@media (max-width: 991.98px) {
  .section-xs {
    padding: 30px 0;
  }
     .section-xs-50 {
        height: 100vh;

  }
}

.styled-box {
  padding: 30px;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
}

.styled-box.style-2 {
  border-right: 0;
  border-left: 1px solid black;
}

.cursors {
  z-index: 1000;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

.cursors .mouse-caption, .cursors img {
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 8px;
}

.cursors .mouse-caption {
  backdrop-filter: blur(5px);
  background: rgba(235, 229, 220, 0.5);
  padding: 20px 24px;
}

.cursors .mouse-caption * {
  margin: 0;
}

.cursors img {
  min-width: 300px;
  width: 300px;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

@media (max-width: 991.98px) {
  .cursors {
    display: none;
  }
}

/*------------------------------------------------
  2. Forms
-------------------------------------------------*/
input:not(.form-check-input),
textarea {
  background: transparent;
  width: 100%;
  margin-bottom: 1rem;
  padding: 14px 24px;
  border: 1px dashed rgba(0, 0, 0, 0.4);
  border-radius: 26px;
  box-shadow: none;
  font: 400 16px "Open Sans", sans-serif;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

input:not(.form-check-input):focus, input:not(.form-check-input):active,
textarea:focus,
textarea:active {
  outline: 0;
  box-shadow: none;
}

textarea {
  height: 180px;
}

input:not(.form-check-input), textarea, .form-control {
  color: #525456;
}

input:not(.form-check-input)::-webkit-input-placeholder, textarea::-webkit-input-placeholder, .form-control::-webkit-input-placeholder {
  color: #818385;
}

input:not(.form-check-input)::-moz-placeholder, textarea::-moz-placeholder, .form-control::-moz-placeholder {
  color: #818385;
}

input:not(.form-check-input):-ms-placeholder, textarea:-ms-placeholder, .form-control:-ms-placeholder {
  color: #818385;
}

input:not(.form-check-input)::-ms-placeholder, textarea::-ms-placeholder, .form-control::-ms-placeholder {
  color: #818385;
}

input:not(.form-check-input)::placeholder, textarea::placeholder, .form-control::placeholder {
  color: #818385;
}

input:not(.form-check-input):focus, textarea:focus, .form-control:focus {
  border-color: black;
}

label {
  font-size: 15px;
}

.submit-result span {
  display: none;
  -webkit-transition: ease-out 0.2s;
  transition: ease-out 0.2s;
}

.submit-result span.show-result {
  margin-top: 24px;
  display: block;
}

.submit-result span#success {
  color: #32CD32;
}

.submit-result span#error {
  color: #E32227;
}

/*------------------------------------------------
  3. Lists
-------------------------------------------------*/
ul {
  margin: 0;
}

ul[class*=' list-'], ul[class^='list-'] {
  padding: 0;
}

ul.list-unstyled li {
  list-style-type: none;
  margin-bottom: 6px;
}

ul.list-unstyled li:last-child {
  margin-bottom: 0;
}

ul[class*=' list-inline'] li, ul[class^='list-inline'] li {
  display: inline-block;
}

ul.list-inline-sm li {
  padding-right: 4px;
}

ul.list-inline-sm li:last-child {
  padding-right: 0;
}

ul.list-inline li {
  padding-right: 8px;
}

ul.list-inline li:last-child {
  padding-right: 0;
}

ul.list-inline-lg li {
  padding-right: 12px;
}

ul.list-inline-lg li:last-child {
  padding-right: 0;
}

ul.list-inline-dash li {
  padding-right: 2px;
}

ul.list-inline-dash li:last-child {
  padding-right: 0;
}

ul.list-inline-dash li:before {
  content: '-';
  padding-right: 6px;
}

ul.list-inline-dash li:first-child:before {
  display: none;
}

/*------------------------------------------------
  4. Typography
-------------------------------------------------*/
body {
  color: #525456;
  font-family: "Lato", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: black;
  font-family: "Lato", sans-serif;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 6px;
  }
}

p {
  margin: 0;
  line-height: 1.74;
}

@media (max-width: 991.98px) {
  p {
    line-height: 1.6;
  }
}

.uppercase {
  letter-spacing: 1px;
  text-transform: uppercase;
}

.font-small {
  font-size: 0.9em;
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .font-small {
    font-size: 0.9em;
    line-height: 1.7;
  }
}

.font-large {
  font-size: 1.063em;
  line-height: 1.6;
}

@media (max-width: 991.98px) {
  .font-large {
    font-size: 1.063em;
  }
}

.sm-heading {
  font-family: "Lato", sans-serif;
  font-size: 0.9em;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 1px;
  text-transform: uppercase;
}

i {
  display: inline-block;
  color: black;
}

.icon-4xl i {
  font-size: 2.4em;
}

.icon-3xl i {
  font-size: 2.13em;
}

.icon-2xl i {
  font-size: 1.86em;
}

.icon-xl i {
  font-size: 1.6em;
}

.icon-lg i {
  font-size: 1.33em;
}

.icon-sm i {
  font-size: 0.9em;
}

/*------------------------------------------------
  5. Buttons
-------------------------------------------------*/
a {
  color: black;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
  text-decoration: none;
}

a:hover {
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
}

button {
  background: transparent;
  box-shadow: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

a:focus, a:active, button:focus, button:active {
  box-shadow: none;
  outline: 0;
}

.button {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: black;
  border-radius: 40px;
  padding: 12px 28px;
  color: white;
  font-family: "Lora", serif;
  font-weight: 500;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.button:hover {
  background: rgba(0, 0, 0, 0.9);
  color: white;
}

.button.button-outline {
  background: transparent;
  border: 1px dashed black;
  color: black;
}

.button.button-outline:hover {
  background: black;
  color: white;
}

.button.button-lg {
  padding: 14px 32px;
}

.button-circle {
  position: relative;
  display: inline-block;
  overflow: hidden;
  background: black;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  color: white;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.button-circle:hover {
  background: rgba(0, 0, 0, 0.9);
  color: white;
}

.button-circle.button-circle-outline {
  background: transparent;
  border: 1px dashed black;
  color: black;
}

.button-circle.button-circle-outline:hover {
  background: black;
  color: white;
}

/*------------------------------------------------
  6. Clients
-------------------------------------------------*/
.client-box a img {
  opacity: 0.5;
  width: 100%;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.client-box a:hover img {
  opacity: 1;
}

.clients-slider {
  margin: 0 90px;
}

@media (max-width: 991.98px) {
  .clients-slider {
    margin: 0 70px;
  }
}

.clients-prev,
.clients-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  background: transparent;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px dashed black;
  text-align: center;
  line-height: 40px;
  color: black;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.clients-prev i,
.clients-next i {
  color: black;
  -webkit-transition: ease-out 0.12s;
  transition: ease-out 0.12s;
}

.clients-prev:hover,
.clients-next:hover {
  background: black;
  color: white;
}

.clients-prev:hover i,
.clients-next:hover i {
  color: white;
}

.clients-prev {
  left: 0;
}

.clients-next {
  right: 0;
}

/*------------------------------------------------
  7. Lightbox
-------------------------------------------------*/
.lightbox-item {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.lightbox-item img {
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 100%;
  -webkit-transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox-item a {
  display: block;
}

.lightbox-item .lightbox-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  color: white;
}

.lightbox-item .lightbox-icon * {
  color: white;
}

.lightbox-item:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

/*------------------------------------------------
  8. Map
-------------------------------------------------*/
.gmap {
  width: 100%;
}

.gmap-sm {
  height: 350px;
}

.gmap-md {
  height: 400px;
}

.gmap-lg {
  height: 450px;
}

@media (max-width: 991.98px) {
  .gmap-sm {
    height: 300px;
  }
  .gmap-md {
    height: 350px;
  }
  .gmap-lg {
    height: 400px;
  }
}

/*------------------------------------------------
  9. Header
-------------------------------------------------*/


.header {
  z-index: 991;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  backdrop-filter: blur(8px);
  background: rgba(235, 229, 220, 0.5);
  width: 100%;
  height: 80px;
  padding: 20px 0;
  text-align: center;
}

.header .container-fluid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header .header-logo {
  display: inline-flex;
}

.header .header-logo * {
  margin-bottom: 0;
}

.header .header-logo img {
  max-height: 42px;
}

.header .header-menu {
  position: absolute;
}

.header .header-menu .nav {
  font-size: 1.063em;
  font-family: "Lora", serif;
  font-weight: 500;
}

.header .header-menu .nav .nav-item {
  position: relative;
}

.header .header-menu .nav .nav-item .nav-link {
  padding: 0;
  color: #1c1e20;
}

@media (min-width: 992px) {
  .header .header-menu {
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
  }
  .header .header-menu .nav .nav-item {
    margin-bottom: 0;
    margin-left: 24px;
  }
  .header .header-menu .nav .nav-item:first-child {
    margin-left: 0;
  }
  .header .header-menu .nav .nav-item .nav-link {
    position: relative;
  }
  .header .header-menu .nav .nav-item .nav-link:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    background: black;
    height: 1px;
    -webkit-animation: line-out 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation: line-out 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) both;
  }
  .header .header-menu .nav .nav-item .nav-link:hover {
    color: black;
  }
  .header .header-menu .nav .nav-item .nav-link:hover:before {
    width: 100%;
    -webkit-animation: line-in 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation: line-in 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) both;
  }
  .header .mobile-nav-toggle {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .header-placeholder {
    height: 70px;
  }
  .header {
    height: 70px;
    padding: 16px 0;
  }
  .header .header-menu {
    display: none;
    top: 100%;
    left: 0;
    background: rgba(235, 229, 220, 0.9);
    width: 100%;
  }
  .header .header-menu.show {
    display: block;
  }
  .header .header-menu .nav {
    padding: 16px 0;
  }
  .header .header-menu .nav .nav-item {
    display: block;
    width: 100%;
    margin-bottom: 8px;
  }
  .header .header-menu .nav .nav-item:last-child {
    margin-bottom: 0;
  }
  .header .mobile-nav-toggle {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 26px;
    height: 26px;
  }
  .header .mobile-nav-toggle span {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    height: 10px;
  }
  .header .mobile-nav-toggle span:before, .header .mobile-nav-toggle span:after {
    content: '';
    position: absolute;
    left: 0;
    background: black;
    width: 100%;
    height: 2px;
    -webkit-transition: linear 0.1s;
    transition: linear 0.1s;
  }
  .header .mobile-nav-toggle span:before {
    top: 0;
  }
  .header .mobile-nav-toggle span:after {
    bottom: 0;
    -webkit-transform: scaleX(0.7);
    transform: scaleX(0.7);
  }
  .header .mobile-nav-toggle:hover span:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  .header .mobile-nav-toggle.active span:before, .header .mobile-nav-toggle.active span:after {
    top: 50%;
  }
  .header .mobile-nav-toggle.active span:before {
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
  }
  .header .mobile-nav-toggle.active span:after {
    -webkit-transform: translateY(-50%) rotate(-45deg) scaleX(1);
    transform: translateY(-50%) rotate(-45deg) scaleX(1);
  }
}

/*------------------------------------------------
  10. Portfolio
-------------------------------------------------*/
.custom-spacing {
  margin: -30px;
}

.custom-spacing .portfolio-item, .custom-spacing .custom-col {
  padding: 30px;
}

@media (min-width: 1600px) {
  .custom-spacing {
    margin: -35px;
  }
  .custom-spacing .portfolio-item, .custom-spacing .custom-col {
    padding: 35px;
  }
}

@media (max-width: 1199.98px) {
  .custom-spacing {
    margin: -25px;
  }
  .custom-spacing .portfolio-item, .custom-spacing .custom-col {
    padding: 25px;
  }
}

@media (max-width: 991.98px) {
  .custom-spacing {
    margin: -20px;
  }
  .custom-spacing .portfolio-item, .custom-spacing .custom-col {
    padding: 20px;
  }
}

@media (max-width: 767.98px) {
  .custom-spacing {
    margin: -15px;
  }
  .custom-spacing .portfolio-item, .custom-spacing .custom-col {
    padding: 15px;
  }
}

.filter ul {
  margin: 0;
  padding: 0;
}

.filter ul li {
  position: relative;
  display: inline-block;
  border: 1px dashed black;
  border-radius: 2em;
  margin: 0 7px 10px 0;
  padding: 0.5em 1em;
  font-family: "Lora", serif;
  font-weight: 500;
  color: black;
  cursor: pointer;
  -webkit-transition: linear 0.1s;
  transition: linear 0.1s;
}

.filter ul li:hover, .filter ul li.mixitup-control-active {
  background: black;
  color: white;
}

.portfolio-box {
  position: relative;
}

.portfolio-box a {
  display: block;
}

.portfolio-box .portfolio-img {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.portfolio-box .portfolio-img img {
  -webkit-transform: scale(1);
  transform: scale(1);
  width: 100%;
  -webkit-transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-box:hover .portfolio-img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.portfolio-box .portfolio-mobile-caption {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
}

.portfolio-box .portfolio-mobile-caption * {
  margin: 0;
}

@media (min-width: 992px) {
  .portfolio-box .portfolio-mobile-caption {
    display: none;
  }
}

/*------------------------------------------------
  11. Preloader
-------------------------------------------------*/
body:after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background: #EBE5DC;
  width: 100%;
  height: 100%;
}

body.loaded:after {
  display: none;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  visibility: visible;
  opacity: 1;
  background: #EBE5DC;
  width: 100%;
  height: 100%;
  text-align: center;
}

.preloader div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
}

.preloader div span {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 1px solid;
  border-radius: 50%;
  border-color: black rgba(0, 0, 0, 0.2) black rgba(0, 0, 0, 0.2);
  -webkit-animation: loader-spin 650ms infinite linear;
  animation: loader-spin 650ms infinite linear;
}

.loaded .preloader {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

@keyframes loader-spin {
  100% {
    transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes loader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*------------------------------------------------
  12. Utilities
-------------------------------------------------*/
.bg-theme {
  background: #EBE5DC;
}

.font-family-primary {
  font-family: "Open Sans", sans-serif;
}

.font-family-secondary {
  font-family: "Poppins", sans-serif;
}

.font-family-tertiary {
  font-family: "Lora", serif;
}

.fw-medium {
  font-weight: 500;
}

.fw-semi-bold {
  font-weight: 600;
}

.letter-spacing-05 {
  letter-spacing: 0.5px;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

.letter-spacing-3 {
  letter-spacing: 3px;
}

.letter-spacing-4 {
  letter-spacing: 4px;
}

.line-height-100 {
  line-height: 1;
}

.line-height-110 {
  line-height: 1.1;
}

.line-height-120 {
  line-height: 1.2;
}

.line-height-130 {
  line-height: 1.3;
}

.line-height-140 {
  line-height: 1.4;
}

*.text-white-09 {
  color: rgba(255, 255, 255, 0.9);
}

*.text-white-08 {
  color: rgba(255, 255, 255, 0.8);
}

*.text-white-07 {
  color: rgba(255, 255, 255, 0.7);
}

*.text-white-06 {
  color: rgba(255, 255, 255, 0.6);
}

*.text-white-05 {
  color: rgba(255, 255, 255, 0.5);
}

*.text-white-04 {
  color: rgba(255, 255, 255, 0.4);
}

*.text-white-03 {
  color: rgba(255, 255, 255, 0.3);
}

*.text-white-02 {
  color: rgba(255, 255, 255, 0.2);
}

*.text-white-01 {
  color: rgba(255, 255, 255, 0.1);
}

*.text-black {
  color: black;
}

*.text-black-09 {
  color: rgba(0, 0, 0, 0.9);
}

*.text-black-08 {
  color: rgba(0, 0, 0, 0.8);
}

*.text-black-07 {
  color: rgba(0, 0, 0, 0.7);
}

*.text-black-06 {
  color: rgba(0, 0, 0, 0.6);
}

*.text-black-05 {
  color: rgba(0, 0, 0, 0.5);
}

*.text-black-04 {
  color: rgba(0, 0, 0, 0.4);
}

*.text-black-03 {
  color: rgba(0, 0, 0, 0.3);
}

*.text-black-02 {
  color: rgba(0, 0, 0, 0.2);
}

*.text-black-01 {
  color: rgba(0, 0, 0, 0.1);
}

*.text-primary {
  color: #525456;
}

@media (min-width: 992px) {
  .link-hover {
    z-index: 1;
    position: relative;
  }
  .link-hover:before {
    content: '';
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    background: black;
    height: 1px;
    -webkit-animation: line-out 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation: line-out 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) both;
  }
  .link-hover:hover {
    color: black;
  }
  .link-hover:hover:before {
    width: 100%;
    -webkit-animation: line-in 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) both;
    animation: line-in 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) both;
  }
}

@-webkit-keyframes line-out {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
  }
  100% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
  }
}

@keyframes line-out {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
  }
  100% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
  }
}

@-webkit-keyframes line-in {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
  }
}

@keyframes line-in {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
  }
}



h2.background {
  position: relative;
  z-index: 1;

  &:before {
    border-top: 2px solid #dfdfdf;
    content: "";
    margin: 0 auto; /* this centers the line to the full width specified */
    position: absolute; /* positioning must be absolute here, and relative positioning must be applied to the parent */
    top: 50%;
    left: 0;
    right: 0;
    bottom: 0;
    width: 95%;
    z-index: -1;
  }

  span {
    /* to hide the lines from behind the text, you have to set the background color the same as the container */
    background: #fff;
    padding: 0 15px;
  }
}

h2.double:before {
  /* this is just to undo the :before styling from above */
  border-top: none;
}

h2.double:after {
  border-bottom: 1px solid blue;
  -webkit-box-shadow: 0 1px 0 0 red;
  -moz-box-shadow: 0 1px 0 0 red;
  box-shadow: 0 1px 0 0 red;
  content: "";
  margin: 0 auto; /* this centers the line to the full width specified */
  position: absolute;
  top: 46%;
  left: 0;
  right: 0;
  width: 95%;
  z-index: -1;
}

h2.no-background {
  position: relative;
  overflow: hidden;

  span {
    display: inline-block;
    vertical-align: baseline;
    zoom: 1;
    *display: inline;
    *vertical-align: auto;
    position: relative;
    padding: 0 20px;

    &:before,
    &:after {
      content: "";
      display: block;
      width: 1000px;
      position: absolute;
      top: 0.73em;
      border-top: 1px solid red;
    }

    &:before {
      right: 100%;
    }
    &:after {
      left: 100%;
    }
  }
}

h2.no-span {
  display: table;
  white-space: nowrap;
  &:before,
  &:after {
    border-top: 1px solid green;
    content: "";
    display: table-cell;
    position: relative;
    top: 0.5em;
    width: 46%;
  }
  /* &:before {
    right: 1.5%;
  }
  &:after {
    left: 1.5%;
  }*/
}

h2.no-span2 {
  color: whitesmoke;
  display: table;
  white-space: nowrap;
  &:before{
    border-top: 1px solid #fff6d1;
    content: "";
    display: table-cell;
    position: relative;
    top: 0.5em;
    width: 46%;
  }
  /* &:before {
    right: 1.5%;
  }
  &:after {
    left: 1.5%;
  }*/
}

.logo {
    padding: 5px 25px;
    margin: 3px 5px 0 0; /* um pequeno espaçamento lateral entre as tags */
    background-color: #131313;
    border-radius: 25px;
    display: inline-block; /* garante que cada tag se comporte como uma “bolha” independente */
    font-size: 10px;
    color: #fff; /* deixa o texto visível sobre o fundo escuro */
    text-transform: uppercase; /* opcional, para deixar as tags em maiúsculas */
}


.section-logo{
padding: 5%;
    display: flex;
    justify-content: center;
    background: #ffffff;
    align-items: center;
}




/* Aparência dos botões */
.button {
  border: 2px solid #000;
  padding: 10px 24px;
  border-radius: 6px;
  transition: 0.3s;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.button:hover {
  background-color: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* Efeito sutil na imagem */
img.rounded.shadow {
  transition: transform 0.4s ease;
}

img.rounded.shadow:hover {
  transform: scale(1.05);
}

/* Ajustes para telas pequenas */
@media (max-width: 576px) {
  .display-5 {
    font-size: 1.8rem;
  }
  .h4 {
    font-size: 1.1rem;
  }
  .button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}


/* --- Hero Section (Header Inicial) --- */
.hero-section {
    background: url('../../assets/images/IMG_6464.JPG') no-repeat center center;
    background-size: cover;
    position: relative;
    height: 100vh; /* Ocupa 100% da altura da viewport */
    min-height: 600px; /* Garante altura mínima em celulares muito pequenos virados */
    width: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Controle a escuridão aqui */
    z-index: 0;
}

/* Imagem de Perfil */
.hero-profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hero-profile-img:hover {
    transform: scale(1.05); /* Leve zoom ao passar o mouse */
}

/* Títulos */
.hero-title {
    font-size: 4.5rem; /* Grande em Desktop */
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    max-width: 700px;
}

/* --- Responsividade (Ajustes para Celular) --- */
@media (max-width: 768px) {
    .hero-profile-img {
        width: 140px; /* Menor no celular */
        height: 140px;
    }

    .hero-title {
        font-size: 2.8rem; /* Reduz drasticamente para caber na tela */
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 15px; /* Margem lateral para não colar na borda */
    }
    
    /* Botões empilhados ocupam largura total no celular para facilitar o toque */
    .hero-section .btn {
        width: 100%; 
    }
}

/* --- Animação da Seta (Bounce) --- */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

.hero-scroll-btn {
    animation: bounce 2s infinite;
    z-index: 2; /* Garante que fique acima do overlay */
}
















/* ===============================
   AESTHETIC ABOUT — ISOLADO
================================ */

.aesthetic-about {
  position: relative;
  min-height: 100vh;
  padding: 140px 0;
  color: #eaeaea;
  background: radial-gradient(circle at top, #1a1a1f, #0b0b0e);
  overflow: hidden;
}

/* FUNDO VIVO */
.aesthetic-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent, rgba(255,255,255,0.03), transparent),
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.04), transparent 45%);
  animation: bgMove 14s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes bgMove {
  from { transform: translate(0, 0); }
  to   { transform: translate(40px, -40px); }
}

/* HERO */
.about-hero {
  margin-bottom: 80px;
}

.about-avatar {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.06);
  filter: grayscale(20%) contrast(1.1);
  transition: transform .6s ease;
}

.about-avatar:hover {
  transform: scale(1.05) rotate(-1deg);
}

.about-name {
  margin-top: 28px;
  font-size: 42px;
  font-family: "Playfair Display", serif;
  background: linear-gradient(90deg, #fff, #999);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-subtitle {
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* CARD */
.about-card {
  position: relative;
  height: 100%;
  padding: 36px;
  text-align: left;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(16px);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);

  transition: transform .5s ease, box-shadow .5s ease;
  overflow: hidden;
}

/* brilho interno */
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255,255,255,0.14),
    transparent 45%
  );
  opacity: 0;
  transition: opacity .6s ease;
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.6),
    0 0 50px rgba(255,255,255,0.08);
}

/* TITULO DO CARD */
.about-card h4 {
  position: relative;
  font-family: "Playfair Display", serif;
  margin-bottom: 18px;
}

.about-card h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40%;
  height: 2px;
  background: linear-gradient(90deg, #fff, transparent);
}

/* TEXTO */
.about-card p {
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.82;
}

/* SKILLS */
.about-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.about-skills li {
  list-style: none;
  font-size: 13px;
  padding: 6px 16px;
}

.about-card h4{
  color: white
}






/* ===== SCROLL REVEAL ===== */

.reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    filter: blur(6px);
    transition: 
        opacity .8s ease,
        transform .8s cubic-bezier(.22,1,.36,1),
        filter .8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* delay automático estilo Behance */
.portfolio-card {
    transition-delay: var(--delay, 0s);
}





/* ===== PORTFOLIO BEHANCE ===== */

.portfolio-section {
    max-width: 1600px;
    margin: auto;
}

/* FILTROS */
.portfolio-filters .filter-btn {
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    background: #f1f1f1;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
}

.portfolio-filters .filter-btn.active,
.portfolio-filters .filter-btn:hover {
    background: #000;
    color: #fff;
}

/* GRID MASONRY */
.portfolio-masonry {
    column-count: 3;
    column-gap: 24px;
}

@media (max-width: 992px) {
    .portfolio-masonry { column-count: 2; }
}

@media (max-width: 576px) {
    .portfolio-masonry { column-count: 1; }
}

/* CARD */
.portfolio-card {
    break-inside: avoid;
    margin-bottom: 24px;
}

/* THUMB */
.portfolio-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.portfolio-thumb img {
    width: 100%;
    display: block;
    transition: transform .6s ease;
}

/* OVERLAY */
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.1)
    );
    color: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: all .5s ease;
}

.portfolio-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
}

.portfolio-overlay p {
    opacity: .8;
    margin-bottom: 12px;
}

/* TAGS */
.portfolio-tags span {
    font-size: .75rem;
    background: rgba(255,255,255,.15);
    padding: 4px 10px;
    border-radius: 20px;
    margin-right: 6px;
}

/* HOVER */
.portfolio-link:hover img {
    transform: scale(1.08);
}

.portfolio-link:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.mobile{
  display: none;
}

/* ===== MOBILE EDITORIAL ===== */
@media (max-width: 576px) {

  .mobile{
  display: flex;
}

    .portfolio-masonry {
        column-count: 1;
    }

    .portfolio-thumb {
        border-radius: 12px;
        box-shadow: none;
    }

    /* desativa hover exagerado no mobile */
    .portfolio-link:hover img {
        transform: none;
    }

    .portfolio-overlay {
        position: relative;
        opacity: 1;
        transform: none;
        background: none;
        color: #000;
        padding: 14px 4px 0;
    }

    .portfolio-overlay h3 {
        font-size: 1.1rem;
        font-weight: 600;
    }

    .portfolio-overlay p {
        font-size: .9rem;
        opacity: .7;
    }

    .portfolio-tags {
        margin-top: 8px;
    }

    .portfolio-tags span {
        background: #f1f1f1;
        color: #333;
    }
}


.portfolio-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.05);
    opacity: 0;
    transition: opacity .4s ease;
}

.portfolio-link:hover .portfolio-thumb::after {
    opacity: 1;
}
