@charset "UTF-8";

/* =================================================================== */
/* TIPOGRAFIA                                                          */
/* =================================================================== */

/* Sofia Pro - Black */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro Black Az.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

/* Sofia Pro - Black Italic */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro Black Italic Az.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
}

/* Sofia Pro - Bold */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro Bold Az.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Sofia Pro - Bold Italic */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro Bold Italic Az.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

/* Sofia Pro - ExtraLight */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro ExtraLight Az.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
}

/* Sofia Pro - ExtraLight Italic */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro ExtraLight Italic Az.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
}

/* Sofia Pro - Light */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro Light Az.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Sofia Pro - Light Italic */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro Light Italic Az.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

/* Sofia Pro - Medium */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro Medium Az.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* Sofia Pro - Medium Italic */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro Medium Italic Az.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}

/* Sofia Pro - Regular */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro Regular Az.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Sofia Pro - Regular Italic */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro Regular Italic Az.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

/* Sofia Pro - SemiBold */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro Semi Bold Az.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}

/* Sofia Pro - SemiBold Italic */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro Semi Bold Italic Az.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}

/* Sofia Pro - UltraLight */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro UltraLight Az.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
}

/* Sofia Pro - UltraLight Italic */
@font-face {
    font-family: 'Sofia Pro';
    src: url('../fonts/Sofia Pro UltraLight Italic Az.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}


/* Kepler Std - Regular Scn Disp */
@font-face {
    font-family: 'Kepler';
    src: url('../fonts/KeplerStd-RegularScnDisp.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Kepler Std - Bold Scn Disp */
@font-face {
    font-family: 'Kepler';
    src: url('../fonts/KeplerStd-BoldScnDisp.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Kepler Std - Bold Scn Italic Disp */
@font-face {
    font-family: 'Kepler';
    src: url('../fonts/KeplerStd-BoldScnItDisp.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
}

/* Tan Mon Cheri - Regular? */
@font-face {
    font-family: 'Tan Mon Cheri';
    src: url('../fonts/tan-mon-cheri.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Segoe Ui - Light */
@font-face {
    font-family: 'Segoe Ui';
    src: url('../fonts/Segoe Ui Light.ttf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* =================================================================== */
/* ESTILOS GERAIS                                                      */
/* =================================================================== */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

body *, body *::before, body *::after {
  box-sizing: inherit;
}

.section-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.flex-4 { flex: 4; }
.flex-6 { flex: 6; }
.flex-8 { flex: 8; }

.main {
  margin-top: 20px;
  width: 100%;
}

.main-section {
  width: 100%;
  scroll-margin-top: 120px;
}

@media (max-width: 991px) {
  .section-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* =================================================================== */
/* NAVBAR                                                            */
/* =================================================================== */

.navbar {
  background-color: rgb(155, 84, 90);
  padding: 20px 50px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-logo-link {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50px; 
  transform: translateY(-50%);
  z-index: 1000;
  transition: left 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.navbar-logo-img {
  height: 50px;
  width: auto;
}

.navbar-nav {
  width: auto;
  max-height: none;
  overflow: visible;
}

.navbar-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 35px;
}

.navbar-menu-list a {
  color: white;
  text-decoration: none;
  font-family: "Segoe UI Light", "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  padding: 5px 0;
}

/* Animação do botão */
.hamburglar {
  display: none; 
  position: relative;
  width: 68px;
  height: 37px;
  transform: scale(0.6);
  transform-origin: center;
  z-index: 1001;
  margin-left: auto; 
  background: transparent;
  user-select: none;
  cursor: pointer;
  bottom: 8px;
}

.path-burger { position: absolute; top: 0; left: 0; height: 68px; width: 68px; mask: url(#mask); -webkit-mask-box-image: url(https://raygun.io/upload/mask.svg); }
.animate-path { position: absolute; top: 0; left: 0; width: 68px; height: 68px; }
.path-rotation { height: 34px; width: 34px; margin: 34px 34px 0 0; transform: rotate(0deg); transform-origin: 100% 0; }
.path-rotation::before { content: ''; display: block; width: 30px; height: 34px; margin: 0 4px 0 0; background: #fff; }
.burger-icon { position: absolute; padding: 20px 16px; height: 68px; width: 68px; }
.burger-container { position: relative; height: 28px; width: 36px; }
.burger-bun-top, .burger-bun-bot, .burger-filling { position: absolute; display: block; height: 4px; width: 36px; border-radius: 2px; background: #fff; }
.burger-bun-top { top: 0; transform-origin: 34px 2px; }
.burger-bun-bot { bottom: 0; transform-origin: 34px 2px; }
.burger-filling { top: 12px; }
.burger-ring { position: absolute; top: 0; left: 0; width: 68px; height: 68px; }
.svg-ring { width: 68px; height: 68px; }
.path { stroke-dasharray: 240; stroke-dashoffset: 240; stroke-linejoin: round; }
.hamburglar.is-open .path { animation: dash-in 0.6s linear normal forwards; }
.hamburglar.is-open .animate-path { animation: rotate-in 0.6s linear normal forwards; }
.hamburglar.is-closed .path { animation: dash-out 0.6s linear normal forwards; }
.hamburglar.is-closed .animate-path { animation: rotate-out 0.6s linear normal forwards; }
.hamburglar.is-open .burger-bun-top { animation: bun-top-out 0.6s linear normal forwards; }
.hamburglar.is-open .burger-bun-bot { animation: bun-bot-out 0.6s linear normal forwards; }
.hamburglar.is-closed .burger-bun-top { animation: bun-top-in 0.6s linear normal forwards; }
.hamburglar.is-closed .burger-bun-bot { animation: bun-bot-in 0.6s linear normal forwards; }
.hamburglar.is-open .burger-filling { animation: burger-fill-out 0.6s linear normal forwards; }
.hamburglar.is-closed .burger-filling { animation: burger-fill-in 0.6s linear normal forwards; }
@keyframes rotate-out { 0% { transform: rotate(0deg); } 40% { transform: rotate(180deg); } 100% { transform: rotate(360deg); } }
@keyframes rotate-in { 0% { transform: rotate(360deg); } 40% { transform: rotate(180deg); } 100% { transform: rotate(0deg); } }
@keyframes dash-in { 0% { stroke-dashoffset: 240; } 40% { stroke-dashoffset: 240; } 100% { stroke-dashoffset: 0; } }
@keyframes dash-out { 0% { stroke-dashoffset: 0; } 40% { stroke-dashoffset: 240; } 100% { stroke-dashoffset: 240; } }
@keyframes bun-top-out { 0% { left: 0; top: 0; transform: rotate(0deg); } 20% { left: 0; top: 0; transform: rotate(15deg); } 80% { left: -5px; top: 0; transform: rotate(-60deg); } 100% { left: -5px; top: 1px; transform: rotate(-45deg); } }
@keyframes bun-bot-out { 0% { left: 0; transform: rotate(0deg); } 20% { left: 0; transform: rotate(-15deg); } 80% { left: -5px; transform: rotate(60deg); } 100% { left: -5px; transform: rotate(45deg); } }
@keyframes bun-top-in { 0% { left: -5px; top: 1px; transform: rotate(-45deg); } 20% { left: -5px; top: 1px; transform: rotate(-60deg); } 80% { left: 0; top: 0; transform: rotate(15deg); } 100% { left: 0; top: 0; transform: rotate(0deg); } }
@keyframes bun-bot-in { 0% { left: -5px; transform: rotate(45deg); } 20% { left: -5px; transform: rotate(60deg); } 80% { left: 0; transform: rotate(-15deg); } 100% { left: 0; transform: rotate(0deg); } }
@keyframes burger-fill-in { 0% { width: 0; left: 36px; } 40% { width: 0; left: 40px; } 80% { width: 36px; left: -6px; } 100% { width: 36px; left: 0px; } }
@keyframes burger-fill-out { 0% { width: 36px; left: 0px; } 20% { width: 42px; left: -6px; } 40% { width: 0; left: 40px; } 100% { width: 0; left: 36px; } }

@media (max-width: 1024px) {
  .navbar {
    padding: 15px 20px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .navbar-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }
  .navbar-nav.is-open {
    max-height: 500px;
  }
  .navbar-menu-list {
    flex-direction: column;
    padding: 20px 0 10px;
    gap: 15px;
  }
  .navbar-menu-list a {
    font-size: 18px;
  }
  .hamburglar {
    display: block;
  }
  .navbar-logo-link {
    top: 35px;
    left: 20px;
    transform: translateY(-50%);
  }
  .navbar.menu-is-open .navbar-logo-link {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* =================================================================== */
/* BANNER                                                            */
/* =================================================================== */

.banner {
  width: 100%;
  background-color: #5A6E59;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  padding-top: 200px;
  padding-left: 15px;
  padding-right: 15px;
  transition: background-color 0.2s ease-out, color 0.2s ease-out;
  position: relative;
  --animation-base-delay: 0s;
}

.banner-subtitle {
  font-size: 80px;
  color: #E5CDC0;
  font-family: "Tan Mon Cheri";
  font-weight: 400;
  margin-top: 0px;
  margin-bottom: 60px;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.banner-text {
  font-size: 50px;
  color: #E5CDC0;
  font-family: "Sofia Pro";
  font-weight: 100;
  margin-top: 20px;
  margin-bottom: 150px;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.2s;
}

.banner-corner-img {
  position: absolute;
  height: auto;
  max-width: 400px; 
  pointer-events: none; 
  z-index: 1; 
}

.banner-top-left { top: 0; left: 0; }
.banner-top-right { top: 0; right: 0; }
.banner-bottom-left { bottom: 0; left: 0; }
.banner-bottom-right { bottom: 0; right: 0; }

.banner-button {
  display: inline-block;
  position: relative;
  padding: 15px 36px;
  margin-bottom: 100px;
  font-family: "Sofia Pro", sans-serif;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  color: #E5CDC0;
  background-color: transparent;
  z-index: 2;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, background-color 0.4s ease-in-out, color 0.4s ease-in-out;
  transition-delay: 0.4s;
}

.banner-button:hover {
  color: #5A6E59 !important;
  background-color: #E5CDC0 !important;
  transition: background-color 0.35s ease, color 0.35s ease;
}

.banner-button span[class^=border-] {
  position: absolute;
  background-color: #E5CDC0;
  pointer-events: none;
}

.border-top    { top: -8px; left: -8px; width: calc(100% + 16px); height: 3px; transform: scaleX(0); }
.border-right  { top: -8px; right: -8px; width: 3px; height: calc(100% + 16px); transform: scaleY(0); }
.border-bottom { bottom: -8px; right: -8px; width: calc(100% + 16px); height: 3px; transform: scaleX(0); }
.border-left   { bottom: -8px; left: -8px; width: 3px; height: calc(100% + 16px); transform: scaleY(0); }

@keyframes border-top-flow {
  0%   { transform: scaleX(0); transform-origin: left; }
  50%  { transform: scaleX(1); transform-origin: left; }
  50.1% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

@keyframes border-right-flow {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes border-bottom-flow {
  0%   { transform: scaleX(0); transform-origin: right; }
  50%  { transform: scaleX(1); transform-origin: right; }
  50.1% { transform: scaleX(1); transform-origin: left; }
  100% { transform: scaleX(0); transform-origin: left; }
}

@keyframes border-left-flow {
  0%   { transform: scaleY(0); transform-origin: bottom; }
  50%  { transform: scaleY(1); transform-origin: bottom; }
  50.1% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: top; }
}

.banner-button.border-active .border-top    { animation: border-top-flow 0.8s ease forwards; }
.banner-button.border-active .border-right  { animation: border-right-flow 0.8s ease 0.4s forwards; }
.banner-button.border-active .border-bottom { animation: border-bottom-flow 0.8s ease 0.8s forwards; }
.banner-button.border-active .border-left   { animation: border-left-flow 0.8s ease 1.2s forwards; }

.slide-animation {
  opacity: 0;
  transform: translateY(20px); 
}

.slide-animation.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsividade Mediana (Tablets e Laptops Pequenos) */
@media (max-width: 992px) {
  .banner { padding-top: 160px; padding-left: 10px; padding-right: 10px; }
  .banner-subtitle { font-size: 56px; margin-bottom: 45px; }
  .banner-text { font-size: 36px; margin-bottom: 100px; }
  .banner-button { font-size: 26px; padding: 14px 30px; margin-bottom: 80px; }
  .banner-corner-img { max-width: 280px; }
}

/* Responsividade Pequena (Mobile) */
@media (max-width: 576px) {
  .banner { padding-top: 130px; }
  .banner-subtitle { font-size: 38px; margin-bottom: 30px; }
  .banner-text { font-size: 24px; margin-bottom: 70px; }
  .banner-button { font-size: 20px; padding: 12px 24px; margin-bottom: 70px; }
  .banner-corner-img { max-width: 160px; }
}

/* =================================================================== */
/* SOBRE MIM                                                         */
/* =================================================================== */

.sobre-mim {
  width: 100%;
  background-color: #F8F0E3;
  color: #5A6E59;
  display: flex;
  align-items: flex-start;
  padding: 60px 0;
}

.sobre-mim .section-container {
  display: flex;
  gap: 70px;
  align-items: center;
}

.sobre-mim-content-1 {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 500ms;
}

.sobre-mim-content-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.sobre-mim-img {
  max-height: 600px;
  border: 2px solid black;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.sobre-mim-title {
  font-size: 50px;
  font-family: "Tan Mon Cheri";
  font-weight: 400;
  margin: 0;
  margin-bottom: 10px;
}

.sobre-mim-subtitle {
  font-size: 30px;
  font-family: "Sofia Pro";
  font-weight: 300;
  margin: 10px 0;
}

.sobre-mim-text {
  font-size: 22px;
  font-family: "Sofia Pro";
  font-weight: 300;
  text-align: justify;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .sobre-mim { padding: 40px 0; }
  .sobre-mim .section-container { flex-direction: column; align-items: center; gap: 40px; }
  .sobre-mim-img { max-width: 100%; height: auto; max-height: 400px; }
  .sobre-mim-content-2 { align-items: center; text-align: center; }
  .sobre-mim-title { font-size: 36px; }
  .sobre-mim-subtitle { font-size: 22px; }
  .sobre-mim-text, .sobre-mim-text p { font-size: 18px; text-align: justify; }
}

/* =================================================================== */
/* PERCURSO                                                            */
/* =================================================================== */

.percurso {
  width: 100%;
  background-color: white; 
  color: #5A6E59;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.percurso .section-container {
  display: flex;
  gap: 70px; 
  align-items: center;
  flex-direction: row; 
}

.percurso-content-img {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 500ms;
}

.percurso-content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.percurso-img {
  max-height: 600px;
  width: 100%;
  object-fit: cover;
  border: 2px solid black;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.percurso-title {
  font-size: 50px;
  font-family: "Tan Mon Cheri";
  font-weight: 400;
  margin: 0;
  margin-bottom: 10px;
}

.percurso-text {
  font-size: 22px;
  font-family: "Sofia Pro";
  font-weight: 300;
  text-align: justify;
}

@media (max-width: 991px) {
  .percurso { padding: 40px 0; }
  .percurso .section-container { flex-direction: column-reverse; gap: 40px; }
  .percurso-img { max-height: 400px; }
  .percurso-content-text { align-items: center; text-align: center; }
  .percurso-title { font-size: 32px; }
  .percurso-text { font-size: 18px; }
}

/* =================================================================== */
/* SERVIÇOS                                                          */
/* =================================================================== */

.servico {
  width: 100%;
  background-color: #5A6E59;
  display: flex;
  align-items: flex-start;
  padding: 60px 0;
}

.servico .section-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.servico-title {
  font-size: clamp(32px, 5vw, 50px);
  font-family: "Tan Mon Cheri";
  font-weight: 400;
  margin: 0;
  text-align: center;
  color: #F8F0E3;
}

.servicos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  width: 100%;
  --base-delay: 500ms; 
  --stagger-delay: 200ms;
}

.servico-card {
  background-color: white;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(90, 110, 89, 0.3);
  /*border: 1px solid #000000;*/
  transition: opacity 1s ease-out, transform 1s ease-out, box-shadow 0.6s ease-in-out;
  flex: 1 1 300px;
  max-width: 400px;
}

.servico-card.slide-animation {
  transition-delay: var(--base-delay);
}

.servico-card.slide-animation:nth-child(2) {
  transition-delay: calc(var(--base-delay) + var(--stagger-delay) * 1);
}

.servico-card.slide-animation:nth-child(3) {
  transition-delay: calc(var(--base-delay) + var(--stagger-delay) * 2);
}

.servico-icon i {
  font-size: 45px;
  color: #9B545A;
  margin-bottom: 25px;
  display: inline-block;
}

.servico-card-title {
  font-family: "Sofia Pro";
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 600;
  color: #5A6E59;
  margin-top: 0;
  margin-bottom: 15px;
}

.servico-card-text {
  font-family: "Sofia Pro";
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 300;
  color: #5A6E59;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1336px) {
  .servico-card {
    max-width: 350px;
  }
}

@media (max-width: 991px) {
  .servico {
    padding: 60px 0;
  }
  .servico .section-container {
    gap: 40px;
  }
  .servico-card {
    flex: 1 1 100%;
    max-width: 300px;
    padding: 30px 20px;
  }
  .servico-icon i {
    font-size: 30px;
  }
}

/* =================================================================== */
/* DEPOIMENTOS (FEEDBACK)                                            */
/* =================================================================== */

.feedback {
  min-height: 400px;
  width: 100%;
  background-color: #F8F0E3;
  padding: 60px 0;
  color: #5A6E59;
  display: flex;
  align-items: flex-start;
}

.feedback .section-container {
    text-align: center;
    width: 100%;           
    max-width: 1280px;      
    margin: 0 auto;
    padding: 0 20px;       
    overflow: hidden;      
}

.feedback-title {
  font-size: 50px;
  font-family: "Tan Mon Cheri";
  font-weight: 400;
  margin: 0 0 40px 0;
  text-align: center;
}

/* --- ESTILO DEPOIMENTOS MANUAIS --- */
.depoimentos-manuais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.depoimento-item {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.depoimento-item::before {
    content: '“';
    font-family: 'Kepler', serif;
    font-size: 80px;
    color: #A3B899;
    position: absolute;
    top: 10px;
    left: 20px;
    opacity: 0.3;
}

.depoimento-item p {
    font-family: "Sofia Pro", sans-serif;
    font-style: italic;
    font-size: 18px;
    color: #5A6E59;
    line-height: 1.6;
    margin-bottom: 20px;
    z-index: 1;
}

.depoimento-item span {
    font-family: "Sofia Pro", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #5A6E59;
    display: block;
    margin-top: auto;
}

/* --- Carrossel Infinito Manual --- */
.manual-carousel-wrapper {
    display: flex !important;
    transition: transform 0.5s ease-in-out;
    gap: 0;
    overflow: visible !important;
    width: 100%;
}

.ti-reviews-container {
    overflow: hidden !important; 
    position: relative;
    padding: 20px 0;
}

.manual-carousel-wrapper .ti-review-item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
}

.is-manual-carousel .ti-controls {
    display: flex !important;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    transform: translateY(-50%);
    z-index: 100;
    pointer-events: none; 
}

.manual-next, .manual-prev {
    pointer-events: auto;
    width: 40px !important;
    height: 40px !important;
    background-color: white !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.is-manual-carousel .manual-next, 
.is-manual-carousel .manual-prev {
    pointer-events: auto;
    width: 35px !important;
    height: 35px !important;
    background-color: white !important;
    border: 1px solid #d9d9d9 !important;
    border-radius: 50% !important;
    cursor: pointer;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.is-manual-carousel .manual-next:hover, 
.is-manual-carousel .manual-prev:hover {
    background-color: #969696 !important;
    border-color: #5E5E5E !important;
}

.is-manual-carousel .manual-next::before, 
.is-manual-carousel .manual-prev::before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 0 0 2px 2px;
    border-color: #5E5E5E;
}

.is-manual-carousel .manual-prev::before { transform: rotate(45deg); margin-left: 3px; }
.is-manual-carousel .manual-next::before { transform: rotate(-135deg); margin-right: 3px; }

@media (max-width: 1024px) {
    .is-manual-carousel .ti-review-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 991px) {
    .feedback { padding: 40px 0; }
    .feedback-title { font-size: 36px; }
}

@media (max-width: 768px) {
    .depoimentos-manuais-grid { grid-template-columns: 1fr; }
    .is-manual-carousel .ti-review-item {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .is-manual-carousel .ti-controls {
        width: 100%;
        padding: 0 2px;
    }
}

/* =================================================================== */
/* DÚVIDAS FREQUENTES                                                */
/* =================================================================== */

.duvidas {
  min-height: 500px;
  width: 100%;
  background-color: rgb(232, 177, 177);
  padding: 60px 0;
  display: flex;
  align-items: flex-start;
}

.duvidas .section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.duvidas-title {
  font-family: "Tan Mon Cheri";
  font-size: 50px;
  font-weight: 400;
  color: white;
  margin: 0 0 40px 0;
  text-align: center;
}

.duvidas-accordion {
  background-color: white;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 900px;
  padding: 10px 40px;
}

.duvidas-item {
  padding: 25px 0;
  border-bottom: 1px solid #eee;
}

/* Animação de entrada dos itens */
.duvidas-item.slide-animation {
    transition: opacity 1.2s ease-out, transform 1.8s ease-out;
}

.duvidas-item:last-child {
  border-bottom: none;
}

.duvidas-item.active .duvidas-question::after {
  transform: rotate(45deg);
}

.duvidas-item.active .duvidas-answer {
  max-height: 600px;
  padding-top: 20px;
}

.duvidas-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Sofia Pro";
  font-weight: 600;
  font-size: 20px;
  color: rgb(155, 84, 90);
  cursor: pointer;
}

.duvidas-question span { transition: color 0.4s ease-in-out; }
.duvidas-question:hover span { color: rgb(232, 177, 177); }

.duvidas-question::after {
  content: "+";
  font-size: 32px;
  font-weight: 300;
  color: rgb(155, 84, 90);
  margin-left: 20px;
  transition: transform 0.4s ease-in-out;
}

.duvidas-answer {
  max-height: 0;
  overflow: hidden;
  color: #333333;
  font-family: "Sofia Pro";
  font-weight: 300;
  font-size: 18px;
  text-align: justify;
  line-height: 1.6;
  padding-right: 40px;
  transition: max-height 0.4s ease-in-out, padding-top 0.4s ease-in-out;
}

@media (max-width: 991px) {
  .duvidas { padding: 40px 0; }
  .duvidas-accordion { padding-left: 20px; padding-right: 20px; }
  .duvidas-title { font-size: 36px; }
  .duvidas-question { font-size: 18px; }
  .duvidas-answer { font-size: 16px; padding-right: 15px; }
  .duvidas .duvidas-item .duvidas-question:hover span { color: rgb(155, 84, 90); }
}

/* =================================================================== */
/* CONTATO                                                           */
/* =================================================================== */

.contato {
  min-height: 400px;
  width: 100%;
  background-color: white;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.contato-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1280px;
}

.contato-coluna { flex: 1; display: flex; justify-content: center; }

.contato-box {
  background-color: #F8F0E3;
  border-radius: 50px;
  padding: 50px;
  margin: 50px 20px;
  text-align: center;
  width: 100%;
}

.contato-title {
  text-align: center;
  font-family: "Tan Mon Cheri";
  font-size: 45px;
  font-weight: 400;
  margin: 0 0 20px 0;
  color: #5A6E59;
}

.contato-text {
  font-family: "Sofia Pro";
  font-size: 22px;
  margin-bottom: 30px;
  color: #5A6E59;
  max-width: 100%;
}

.instagram-button {
    background-color: #5A6E59;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-family: "Sofia Pro";
    font-weight: 600;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.instagram-button:hover { background-color: #4a5b49; transform: scale(1.05); color: white; }
.instagram-button i { font-size: 24px; }

.contato .social-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #5A6E59;
  font-family: "Sofia Pro";
  font-weight: 600;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.contato .social-link:hover { transform: scale(1.05); }
.contato .social-icon { font-size: 40px; }

.contato-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: auto;
  margin: 80px 0;
}

.contato .whatsapp-button {
  background-color: #A3B899;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-family: "Sofia Pro";
  font-weight: 600;
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contato .whatsapp-button:hover { background-color: rgb(135, 163, 122); transform: scale(1.05); }

@media (max-width: 991px) {
  .contato-wrapper { flex-direction: column; gap: 20px; }
  .contato-box { padding: 30px 25px; margin: 20px; }
  .contato-cta { margin: 0 20px 40px 20px; }
  .contato-title { font-size: 36px; }
  .contato-text { font-size: 18px; }
  .social-link { font-size: 18px; }
  .social-icon { font-size: 30px; }
  .whatsapp-button { font-size: 18px; padding: 12px 30px; }
}

/* =================================================================== */
/* FOOTER                                                            */
/* =================================================================== */

.footer {
  width: 100%;
  background-color: #5A6E59;
  color: #E5CDC0;
  padding: 40px 15px;
  text-align: center;
  font-family: "Sofia Pro";
}

.footer p { margin: 5px 0; font-weight: 300; font-size: 15px; }
.footer p:first-child { font-weight: 600; }

.footer-privacy { margin-top: 15px; opacity: 0.7; transition: opacity 0.3s ease; }
.footer-privacy a { color: inherit; font-size: 13px; text-decoration: underline; font-weight: 300; transition: opacity 0.3s; }
.footer-privacy a:hover { opacity: 1; }

@media (max-width: 991px) {
    .footer { padding: 15px 15px; }
    .footer-privacy { margin-top: 10px; }
}

/* =================================================================== */
/* MODAL LEGAL                                                       */
/* =================================================================== */

.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.is-active { opacity: 1; visibility: visible; }

.modal-content {
    background: #F8F0E3;
    color: #5A6E59;
    padding: 40px;
    border-radius: 20px;
    max-width: 700px;
    width: 100%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    font-family: "Sofia Pro", sans-serif;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transition-delay: 0.1s;
}

.modal-overlay.is-active .modal-content { opacity: 1; transform: translateY(0); }

.modal-title {
    font-family: "Tan Mon Cheri", serif;
    font-size: 28px;
    margin-top: 0; margin-bottom: 20px;
    border-bottom: 1px solid rgba(90, 110, 89, 0.2);
    padding-bottom: 10px;
}

.modal-body { font-size: 16px; line-height: 1.6; text-align: justify; }

.modal-close {
    position: absolute;
    top: 15px; right: 20px;
    background: none; border: none;
    font-size: 30px; cursor: pointer;
    color: #5A6E59;
    transition: transform 0.3s ease;
}

.modal-close:hover { transform: rotate(90deg); }

/* =================================================================== */
/* BOTÃO FLUTUANTE WHATSAPP                                          */
/* =================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 50px;
  right: 50px;
  background-color: #A3B899;
  color: #E5CDC0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float:hover { transform: scale(1.1); background-color: rgb(149, 173, 137); }

@media (max-width: 991px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 34px; }
}