@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-down {
  animation: fadeInDown 0.6s ease-out;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease-out;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

.animate-delay-5 {
  animation-delay: 0.5s;
}

.animate-delay-6 {
  animation-delay: 0.6s;
}

.animate-delay-7 {
  animation-delay: 0.7s;
}

.animate-delay-8 {
  animation-delay: 0.8s;
}

.animate-delay-9 {
  animation-delay: 0.9s;
}

.animate-delay-10 {
  animation-delay: 1s;
}

.animate-delay-11 {
  animation-delay: 1.1s;
}

.animate-delay-12 {
  animation-delay: 1.2s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #000000;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 300ms ease-in-out;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: serif;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.875rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: #C9A45C;
}

.text-black {
  color: #000000;
}

.text-white {
  color: #FFFFFF;
}

.font-serif {
  font-family: serif;
}

.font-italic {
  font-style: italic;
}

.site-header {
  z-index: 50;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  transition: all 300ms;
  padding: 16px 0;
}
.site-header.scrolled {
  background-color: #FFFFFF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.header-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .header-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-logo,
.site-logo-text {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-family: serif;
  letter-spacing: 0.05em;
}
.site-logo .logo-img,
.site-logo-text .logo-img {
  max-width: 300px;
  width: auto;
}
.site-logo .logo-text-black,
.site-logo-text .logo-text-black {
  color: #000000;
}
.site-logo .logo-text-gold,
.site-logo-text .logo-text-gold {
  color: #C9A45C;
}

.main-navigation .nav-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
  flex-direction: column;
  gap: 0.5rem;
}
.main-navigation .nav-menu.active {
  display: flex;
}
@media (min-width: 768px) {
  .main-navigation .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    border-top: none;
    padding: 0;
    background: transparent;
  }
}
.main-navigation .nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #000000;
  position: relative;
  padding: 0.5rem 0;
}
@media (min-width: 768px) {
  .main-navigation .nav-menu a {
    padding: 0;
  }
}
.main-navigation .nav-menu a:hover, .main-navigation .nav-menu a.active {
  color: #C9A45C;
}
.main-navigation .nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #C9A45C;
}
@media (min-width: 768px) {
  .main-navigation .nav-menu a.active::after {
    bottom: -8px;
  }
}

.mobile-menu-toggle {
  display: block;
}
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }
}
.mobile-menu-toggle .menu-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.site-footer {
  background-color: #000000;
  color: #FFFFFF;
  padding: 6rem 0 1rem;
}

.footer-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .footer-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column .footer-title {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.footer-brand .footer-logo-text {
  font-size: 1.5rem;
  font-family: serif;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}
.footer-brand .footer-logo-text .logo-text-white {
  color: #FFFFFF;
}
.footer-brand .footer-logo-text .logo-text-gold {
  color: #C9A45C;
}
.footer-brand .footer-tagline {
  font-size: 0.875rem;
  font-style: italic;
  font-family: serif;
  color: #C9A45C;
  margin-bottom: 0.5rem;
}
.footer-brand .footer-description {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-menu a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}
.footer-menu a:hover {
  color: #C9A45C;
}

.footer-contact-list .contact-item {
  margin-bottom: 1rem;
  padding: 0;
}
.footer-contact-list .contact-item .contact-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-contact-list .contact-item a.contact-text:hover {
  color: #C9A45C;
}

.footer-social-links {
  display: flex;
  gap: 1rem;
}
.footer-social-links .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A45C;
  transition: all 300ms ease-in-out;
  overflow: hidden;
}
.footer-social-links .social-link:hover {
  background-color: #C9A45C;
  color: #000000;
  transform: translateY(-2px);
}
.footer-social-links .social-link .social-icon-image {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-social-links .social-link svg {
  width: 20px;
  height: 20px;
}

.footer-bottom-bar {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom-bar .footer-bottom-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (min-width: 1024px) {
  .footer-bottom-bar .footer-bottom-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.footer-bottom-bar .footer-bottom-container .footer-bottom-logo {
  flex-shrink: 0;
}
.footer-bottom-bar .footer-bottom-container .footer-bottom-logo img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}
.footer-bottom-bar .footer-bottom-container .footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.footer-bottom-bar .footer-bottom-container .footer-bottom-links .footer-bottom-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 300ms ease-in-out;
}
.footer-bottom-bar .footer-bottom-container .footer-bottom-links .footer-bottom-link:hover {
  color: #C9A45C;
}
@media (min-width: 768px) {
  .footer-bottom-bar .footer-bottom-container {
    flex-wrap: nowrap;
  }
}

.footer-bottom {
  padding-top: 2rem;
}
.footer-bottom .footer-copyright {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  text-align: center;
}
.btn.btn-primary {
  background-color: #C9A45C;
  color: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn.btn-primary:hover {
  background-color: rgb(181.7788018433, 140.5161290323, 60.2211981567);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.btn.btn-secondary {
  border: 2px solid #C9A45C;
  color: #C9A45C;
}
.btn.btn-secondary:hover {
  background-color: #C9A45C;
  color: #FFFFFF;
}
.btn.btn-black {
  background-color: #000000;
  color: #FFFFFF;
}
.btn.btn-black:hover {
  background-color: black;
}
.btn.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.card {
  background-color: #FFFFFF;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-in-out;
}
.card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.card-service .card-icon {
  color: #C9A45C;
  margin-bottom: 1.5rem;
  width: 32px;
  height: 32px;
}
.card-service .card-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 1rem;
}
.card-service .card-description {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
}

.card-project {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.card-project .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}
.card-project:hover .card-image {
  transform: scale(1.1);
}
.card-project .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
.card-project .card-overlay:hover {
  opacity: 1;
}
.card-project .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #FFFFFF;
}
.card-project .card-content .card-button {
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 300ms ease-in-out;
  opacity: 0;
  transform: translateY(10px);
}
.card-project .card-content .card-button:hover {
  background-color: #FFFFFF;
  color: #000000;
  transform: translateY(0);
}
.card-project:hover .card-content .card-button {
  opacity: 1;
  transform: translateY(0);
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0.5rem;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  background-color: #FFFFFF;
  transition: all 300ms ease-in-out;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=tel]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #C9A45C;
  box-shadow: 0 0 0 2px rgba(201, 164, 92, 0.2);
}
.form-group input[type=text]::placeholder,
.form-group input[type=email]::placeholder,
.form-group input[type=tel]::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background-color: #C9A45C;
  color: #FFFFFF;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: none;
}
.form-submit:hover {
  background-color: rgb(181.7788018433, 140.5161290323, 60.2211981567);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.form-submit .submit-icon {
  width: 18px;
  height: 18px;
}

.contact-form-wrapper .wpcf7-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form-wrapper .wpcf7-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 0.5rem;
}
.contact-form-wrapper .wpcf7-form input[type=text],
.contact-form-wrapper .wpcf7-form input[type=email],
.contact-form-wrapper .wpcf7-form input[type=tel],
.contact-form-wrapper .wpcf7-form textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  background-color: #FFFFFF;
  transition: all 300ms ease-in-out;
}
.contact-form-wrapper .wpcf7-form input[type=text]:focus,
.contact-form-wrapper .wpcf7-form input[type=email]:focus,
.contact-form-wrapper .wpcf7-form input[type=tel]:focus,
.contact-form-wrapper .wpcf7-form textarea:focus {
  outline: none;
  border-color: #C9A45C;
  box-shadow: 0 0 0 2px rgba(201, 164, 92, 0.2);
}
.contact-form-wrapper .wpcf7-form input[type=text]::placeholder,
.contact-form-wrapper .wpcf7-form input[type=email]::placeholder,
.contact-form-wrapper .wpcf7-form input[type=tel]::placeholder,
.contact-form-wrapper .wpcf7-form textarea::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.contact-form-wrapper .wpcf7-form textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form-wrapper .wpcf7-form input[type=submit],
.contact-form-wrapper .wpcf7-form .wpcf7-submit {
  width: 100%;
  padding: 1rem;
  background-color: #C9A45C;
  color: #FFFFFF;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: none;
}
.contact-form-wrapper .wpcf7-form input[type=submit]:hover,
.contact-form-wrapper .wpcf7-form .wpcf7-submit:hover {
  background-color: rgb(181.7788018433, 140.5161290323, 60.2211981567);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.contact-form-wrapper .wpcf7-form .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-form .wpcf7-mail-sent-ok,
.contact-form-wrapper .wpcf7-form .wpcf7-mail-sent-ng,
.contact-form-wrapper .wpcf7-form .wpcf7-spam {
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}
.contact-form-wrapper .wpcf7-form .wpcf7-mail-sent-ok {
  background-color: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}
.contact-form-wrapper .wpcf7-form .wpcf7-validation-errors,
.contact-form-wrapper .wpcf7-form .wpcf7-mail-sent-ng {
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}
.contact-form-wrapper .wpcf7-form .wpcf7-not-valid-tip {
  color: #991b1b;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.contact-form-wrapper .wpcf7-form .wpcf7-not-valid {
  border-color: #fca5a5 !important;
}
.contact-form-wrapper .wpcf7-form .ajax-loader {
  display: none;
}

.page-home {
  padding-top: 0;
}

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom right, #F5F5F5, #FFFFFF);
  padding: 5rem 0;
}
.hero-section .hero-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .hero-section .hero-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.hero-section .hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-section .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-section .hero-text .hero-title {
  font-size: 3rem;
  font-family: serif;
  font-style: italic;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) {
  .hero-section .hero-text .hero-title {
    font-size: 3.75rem;
  }
}
.hero-section .hero-text .hero-title .text-gold {
  color: #C9A45C;
}
.hero-section .hero-text .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 300;
  margin-bottom: 1rem;
}
.hero-section .hero-text .hero-description {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
  max-width: 36rem;
  margin-bottom: 2rem;
}
.hero-section .hero-text .hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}
@media (min-width: 640px) {
  .hero-section .hero-text .hero-buttons {
    flex-direction: row;
  }
}
.hero-section .hero-text .hero-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 300ms ease-in-out;
}
.hero-section .hero-text .hero-buttons .btn.btn-primary {
  background-color: #C9A45C;
  color: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.hero-section .hero-text .hero-buttons .btn.btn-primary:hover {
  background-color: rgb(181.7788018433, 140.5161290323, 60.2211981567);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.hero-section .hero-text .hero-buttons .btn.btn-secondary {
  border: 2px solid #C9A45C;
  color: #C9A45C;
}
.hero-section .hero-text .hero-buttons .btn.btn-secondary:hover {
  background-color: #C9A45C;
  color: #FFFFFF;
}
.hero-section .hero-image {
  position: relative;
}
.hero-section .hero-image .hero-image-wrapper {
  aspect-ratio: 4/5;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  cursor: zoom-in;
}
.hero-section .hero-image .hero-image-wrapper .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
  transform-origin: center center;
}
.hero-section .hero-image .hero-image-wrapper:hover .hero-img {
  transform: scale(1.1);
}
.hero-section .hero-image::after {
  content: "";
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 16rem;
  height: 16rem;
  background-color: #E6D3A3;
  border-radius: 50%;
  z-index: -1;
  filter: blur(3rem);
  opacity: 0.3;
}

.manifesto-section {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.manifesto-section .manifesto-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 56rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .manifesto-section .manifesto-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.manifesto-section .manifesto-container .manifesto-title {
  font-size: 2.25rem;
  font-family: serif;
  font-style: italic;
  color: #000000;
  margin-bottom: 2rem;
}
.manifesto-section .manifesto-container .manifesto-divider {
  width: 6rem;
  height: 1px;
  background-color: #C9A45C;
  margin: 0 auto 2rem;
}
.manifesto-section .manifesto-container .manifesto-text {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}

.services-section {
  padding: 6rem 0;
  background-color: #F5F5F5;
}
.services-section .services-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .services-section .services-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.services-section .services-container .services-header {
  text-align: center;
  margin-bottom: 4rem;
}
.services-section .services-container .services-header .services-title {
  font-size: 2.25rem;
  font-family: serif;
  color: #000000;
  margin-bottom: 1rem;
}
.services-section .services-container .services-header .services-subtitle {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.6);
  max-width: 32rem;
  margin: 0 auto;
}
.services-section .services-container .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .services-section .services-container .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-section .services-container .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.services-section .services-container .services-grid .card-service:nth-child(1) {
  animation-delay: 0.1s;
}
.services-section .services-container .services-grid .card-service:nth-child(2) {
  animation-delay: 0.2s;
}
.services-section .services-container .services-grid .card-service:nth-child(3) {
  animation-delay: 0.3s;
}
.services-section .services-container .services-grid .card-service:nth-child(4) {
  animation-delay: 0.4s;
}
.services-section .services-container .services-grid .card-service:nth-child(5) {
  animation-delay: 0.5s;
}
.services-section .services-container .services-grid .card-service:nth-child(6) {
  animation-delay: 0.6s;
}
.services-section .services-container .services-grid .card-service:nth-child(7) {
  animation-delay: 0.7s;
}
.services-section .services-container .services-grid .card-service:nth-child(8) {
  animation-delay: 0.8s;
}

.card-service {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out;
}
.card-service::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 164, 92, 0.1), transparent);
  transition: left 0.5s ease;
}
.card-service:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px) scale(1.02);
}
.card-service:hover::before {
  left: 100%;
}
.card-service .card-icon {
  color: #C9A45C;
  margin-bottom: 1.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  transition: transform 500ms ease-in-out;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.card-service .card-icon .icon-image {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 500ms ease-in-out;
}
.card-service .card-icon svg {
  width: 32px;
  height: 32px;
  transition: transform 500ms ease-in-out;
}
.card-service:hover .card-icon {
  transform: scale(1.15) rotate(5deg);
}
.card-service:hover .card-icon .icon-image,
.card-service:hover .card-icon svg {
  transform: scale(1.1);
}
.card-service .card-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.75rem;
  transition: color 300ms ease-in-out;
  position: relative;
  z-index: 1;
}
.card-service:hover .card-title {
  color: #C9A45C;
}
.card-service .card-description {
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
  line-height: 1.6;
  flex-grow: 1;
  transition: color 300ms ease-in-out;
  position: relative;
  z-index: 1;
}
.card-service:hover .card-description {
  color: rgba(0, 0, 0, 0.8);
}
.card-service .service-link {
  display: inline-flex;
  align-items: center;
  color: #C9A45C;
  font-weight: 500;
  gap: 0.25rem;
  transition: all 300ms ease-in-out;
  margin-top: auto;
  position: relative;
  z-index: 1;
}
.card-service .service-link:hover {
  gap: 0.75rem;
  transform: translateX(4px);
}
.card-service .service-link .link-icon {
  width: 16px;
  height: 16px;
  transition: transform 300ms ease-in-out;
}
.card-service .service-link:hover .link-icon {
  transform: translateX(4px);
}

.projects-section {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.projects-section .projects-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .projects-section .projects-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.projects-section .projects-container .projects-header {
  text-align: center;
  margin-bottom: 4rem;
}
.projects-section .projects-container .projects-header .projects-title {
  font-size: 2.25rem;
  font-family: serif;
  color: #000000;
  margin-bottom: 1rem;
}
.projects-section .projects-container .projects-header .projects-subtitle {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.6);
}
.projects-section .projects-container .projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .projects-section .projects-container .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .projects-section .projects-container .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.projects-section .projects-container .projects-footer {
  text-align: center;
}

.card-project {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease-in-out;
  cursor: pointer;
  animation: fadeInUp 0.6s ease-out;
}
.card-project:hover {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(-8px);
}
.card-project .card-image-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.card-project .card-image-wrapper .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
  transform-origin: center center;
}
.card-project:hover .card-image {
  transform: scale(1.15);
}
.card-project .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3), transparent);
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  display: flex;
  align-items: flex-end;
  z-index: 1;
}
.card-project:hover .card-overlay {
  opacity: 1;
}
.card-project .card-content {
  padding: 1.5rem;
  color: #FFFFFF;
  width: 100%;
  transform: translateY(20px);
  transition: transform 300ms ease-in-out;
  position: relative;
  z-index: 2;
}
.card-project .card-content .card-category {
  font-size: 0.875rem;
  color: #E6D3A3;
  margin-bottom: 0.25rem;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  transition-delay: 0.1s;
}
.card-project .card-content .card-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #FFFFFF;
  transform: translateY(10px);
  transition: transform 300ms ease-in-out;
  transition-delay: 0.05s;
}
.card-project:hover .card-content {
  transform: translateY(0);
}
.card-project:hover .card-content .card-category {
  opacity: 1;
}
.card-project:hover .card-content .card-title {
  transform: translateY(0);
}

.diferenciais-section {
  padding: 6rem 0;
  background-color: #F5F5F5;
}
.diferenciais-section .diferenciais-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .diferenciais-section .diferenciais-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.diferenciais-section .diferenciais-container .diferenciais-title {
  font-size: 2.25rem;
  font-family: serif;
  color: #000000;
  text-align: center;
  margin-bottom: 4rem;
}
.diferenciais-section .diferenciais-container .diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .diferenciais-section .diferenciais-container .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .diferenciais-section .diferenciais-container .diferenciais-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.diferenciais-section .diferenciais-container .diferenciais-grid .diferencial-item:nth-child(1) {
  animation-delay: 0.1s;
}
.diferenciais-section .diferenciais-container .diferenciais-grid .diferencial-item:nth-child(2) {
  animation-delay: 0.2s;
}
.diferenciais-section .diferenciais-container .diferenciais-grid .diferencial-item:nth-child(3) {
  animation-delay: 0.3s;
}
.diferenciais-section .diferenciais-container .diferenciais-grid .diferencial-item:nth-child(4) {
  animation-delay: 0.4s;
}
.diferenciais-section .diferenciais-container .diferenciais-grid .diferencial-item:nth-child(5) {
  animation-delay: 0.5s;
}
.diferenciais-section .diferenciais-container .diferenciais-grid .diferencial-item:nth-child(6) {
  animation-delay: 0.6s;
}
.diferenciais-section .diferenciais-container .diferenciais-grid .diferencial-item:nth-child(7) {
  animation-delay: 0.7s;
}
.diferenciais-section .diferenciais-container .diferenciais-grid .diferencial-item:nth-child(8) {
  animation-delay: 0.8s;
}

.diferencial-item {
  text-align: center;
  transition: all 300ms ease-in-out;
  animation: fadeInUp 0.6s ease-out;
  padding: 1.5rem;
  border-radius: 0.75rem;
}
.diferencial-item:hover {
  transform: translateY(-5px);
  background-color: rgba(201, 164, 92, 0.05);
}
.diferencial-item .diferencial-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #C9A45C;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease-in-out;
  position: relative;
}
.diferencial-item .diferencial-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #C9A45C;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
.diferencial-item .diferencial-icon .icon-image {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 300ms ease-in-out;
  position: relative;
  z-index: 1;
}
.diferencial-item .diferencial-icon svg {
  width: 24px;
  height: 24px;
  transition: transform 300ms ease-in-out;
  position: relative;
  z-index: 1;
}
.diferencial-item:hover .diferencial-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.diferencial-item:hover .diferencial-icon::before {
  opacity: 0.3;
}
.diferencial-item:hover .diferencial-icon .icon-image,
.diferencial-item:hover .diferencial-icon svg {
  transform: scale(1.15) rotate(5deg);
}
.diferencial-item .diferencial-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.5rem;
  transition: color 300ms ease-in-out;
}
.diferencial-item:hover .diferencial-title {
  color: #C9A45C;
}
.diferencial-item .diferencial-description {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  transition: color 300ms ease-in-out;
}
.diferencial-item:hover .diferencial-description {
  color: rgba(0, 0, 0, 0.8);
}

.cta-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom right, #E6D3A3, #C9A45C);
}
.cta-section .cta-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 56rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .cta-section .cta-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cta-section .cta-container .cta-title {
  font-size: 2.25rem;
  font-family: serif;
  color: #000000;
  margin-bottom: 2rem;
}
.cta-section .cta-container .btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.page-quem-somos {
  padding-top: 0;
}

.page-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero .hero-background {
  position: absolute;
  inset: 0;
}
.page-hero .hero-background .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero .hero-background .hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.4);
}
.page-hero .hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 1.5rem;
}
.page-hero .hero-content .hero-title {
  font-size: 3rem;
  font-family: serif;
  font-style: italic;
  color: #000000;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .page-hero .hero-content .hero-title {
    font-size: 3.75rem;
  }
}
.page-hero .hero-content .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 300;
  max-width: 32rem;
  margin: 0 auto;
}

.historia-section {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.historia-section .historia-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .historia-section .historia-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.historia-section .historia-container .historia-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .historia-section .historia-container .historia-content {
    grid-template-columns: 1fr 1fr;
  }
}
.historia-section .historia-container .historia-text .historia-title {
  font-size: 1.875rem;
  font-family: serif;
  color: #000000;
  margin-bottom: 1.5rem;
}
.historia-section .historia-container .historia-text .historia-divider {
  width: 4rem;
  height: 1px;
  background-color: #C9A45C;
  margin-bottom: 2rem;
}
.historia-section .historia-container .historia-text .historia-text-content {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}
.historia-section .historia-container .historia-text .historia-text-content p {
  margin-bottom: 1.5rem;
}
.historia-section .historia-container .historia-image .historia-image-wrapper {
  aspect-ratio: 1/1;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  cursor: zoom-in;
}
.historia-section .historia-container .historia-image .historia-image-wrapper .historia-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
  transform-origin: center center;
}
.historia-section .historia-container .historia-image .historia-image-wrapper:hover .historia-img {
  transform: scale(1.1);
}

.filosofia-section {
  padding: 6rem 0;
  background-color: #F5F5F5;
}
.filosofia-section .filosofia-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 56rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .filosofia-section .filosofia-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.filosofia-section .filosofia-container .filosofia-title {
  font-size: 2.25rem;
  font-family: serif;
  font-style: italic;
  color: #000000;
  margin-bottom: 2rem;
}
.filosofia-section .filosofia-container .filosofia-divider {
  width: 6rem;
  height: 1px;
  background-color: #C9A45C;
  margin: 0 auto 2rem;
}
.filosofia-section .filosofia-container .filosofia-text {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}

.daniela-section {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.daniela-section .daniela-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .daniela-section .daniela-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.daniela-section .daniela-container .daniela-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .daniela-section .daniela-container .daniela-content {
    grid-template-columns: 1fr 1fr;
  }
}
.daniela-section .daniela-container .daniela-content .daniela-image {
  order: 2;
}
@media (min-width: 1024px) {
  .daniela-section .daniela-container .daniela-content .daniela-image {
    order: 1;
  }
}
.daniela-section .daniela-container .daniela-content .daniela-image .daniela-image-wrapper {
  aspect-ratio: 3/4;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  cursor: zoom-in;
}
.daniela-section .daniela-container .daniela-content .daniela-image .daniela-image-wrapper .daniela-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
  transform-origin: center center;
}
.daniela-section .daniela-container .daniela-content .daniela-image .daniela-image-wrapper:hover .daniela-img {
  transform: scale(1.1);
}
.daniela-section .daniela-container .daniela-content .daniela-text {
  order: 1;
}
@media (min-width: 1024px) {
  .daniela-section .daniela-container .daniela-content .daniela-text {
    order: 2;
  }
}
.daniela-section .daniela-container .daniela-content .daniela-text .daniela-title {
  font-size: 1.875rem;
  font-family: serif;
  color: #000000;
  margin-bottom: 1.5rem;
}
.daniela-section .daniela-container .daniela-content .daniela-text .daniela-divider {
  width: 4rem;
  height: 1px;
  background-color: #C9A45C;
  margin-bottom: 2rem;
}
.daniela-section .daniela-container .daniela-content .daniela-text .daniela-text-content {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}
.daniela-section .daniela-container .daniela-content .daniela-text .daniela-text-content p {
  margin-bottom: 1.5rem;
}

.valores-section {
  padding: 6rem 0;
  background-color: #FFFFFF;
}
.valores-section .valores-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .valores-section .valores-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.valores-section .valores-container .valores-title {
  font-size: 2.25rem;
  font-family: serif;
  color: #000000;
  text-align: center;
  margin-bottom: 4rem;
}
.valores-section .valores-container .valores-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .valores-section .valores-container .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .valores-section .valores-container .valores-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.valores-section .valores-container .valores-grid .valor-item:nth-child(1) {
  animation-delay: 0.1s;
}
.valores-section .valores-container .valores-grid .valor-item:nth-child(2) {
  animation-delay: 0.2s;
}
.valores-section .valores-container .valores-grid .valor-item:nth-child(3) {
  animation-delay: 0.3s;
}
.valores-section .valores-container .valores-grid .valor-item:nth-child(4) {
  animation-delay: 0.4s;
}
.valores-section .valores-container .valores-grid .valor-item:nth-child(5) {
  animation-delay: 0.5s;
}
.valores-section .valores-container .valores-grid .valor-item:nth-child(6) {
  animation-delay: 0.6s;
}

.valor-item {
  text-align: center;
  background-color: #F5F5F5;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 300ms ease-in-out;
  animation: fadeInUp 0.6s ease-out;
  position: relative;
  overflow: hidden;
}
.valor-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  border: 2px solid #C9A45C;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  pointer-events: none;
}
.valor-item:hover {
  transform: translateY(-8px) scale(1.02);
  background-color: #FFFFFF;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.valor-item:hover::after {
  opacity: 0.3;
}
.valor-item .valor-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #C9A45C;
  color: #C9A45C;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease-in-out;
  position: relative;
}
.valor-item .valor-icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.2), transparent);
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
.valor-item .valor-icon .icon-image {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 300ms ease-in-out;
  position: relative;
  z-index: 1;
}
.valor-item .valor-icon svg {
  width: 24px;
  height: 24px;
  transition: transform 300ms ease-in-out;
  position: relative;
  z-index: 1;
}
.valor-item:hover .valor-icon {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.valor-item:hover .valor-icon::before {
  opacity: 1;
}
.valor-item:hover .valor-icon .icon-image,
.valor-item:hover .valor-icon svg {
  transform: scale(1.2);
}
.valor-item .valor-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.75rem;
  transition: color 300ms ease-in-out;
}
.valor-item:hover .valor-title {
  color: #C9A45C;
}
.valor-item .valor-description {
  color: rgba(0, 0, 0, 0.6);
  transition: color 300ms ease-in-out;
}
.valor-item:hover .valor-description {
  color: rgba(0, 0, 0, 0.8);
}

.areas-section {
  padding: 6rem 0;
  background-color: #F5F5F5;
}
.areas-section .areas-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 56rem;
}
@media (min-width: 1024px) {
  .areas-section .areas-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.areas-section .areas-container .areas-title {
  font-size: 1.875rem;
  font-family: serif;
  color: #000000;
  text-align: center;
  margin-bottom: 3rem;
}
.areas-section .areas-container .areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .areas-section .areas-container .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.area-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-in-out;
}
.area-item:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.area-item .area-bullet {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #C9A45C;
  flex-shrink: 0;
}
.area-item .area-name {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.8);
}

.page-servicos {
  padding-top: 0;
}

.introducao-section {
  padding: 4rem 0;
  background-color: #FFFFFF;
}
.introducao-section .introducao-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 56rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .introducao-section .introducao-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.introducao-section .introducao-container .introducao-text {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}

.servico-section {
  padding: 4rem 0;
}
.servico-section.servico-1 {
  background-color: #F5F5F5;
}
.servico-section.servico-2 {
  background-color: #FFFFFF;
}
.servico-section.servico-3 {
  background: linear-gradient(to bottom right, #E6D3A3, #F5F5F5);
}
.servico-section.servico-4 {
  background-color: #FFFFFF;
}
.servico-section .servico-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .servico-section .servico-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.servico-section .servico-container .servico-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .servico-section .servico-container .servico-content {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .servico-section .servico-container .servico-content.servico-reverse .servico-image {
    order: 1;
  }
  .servico-section .servico-container .servico-content.servico-reverse .servico-text {
    order: 2;
  }
}
.servico-section .servico-container .servico-text .servico-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #C9A45C;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.servico-section .servico-container .servico-text .servico-icon .icon-image {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.servico-section .servico-container .servico-text .servico-icon svg {
  width: 32px;
  height: 32px;
}
.servico-section .servico-container .servico-text .servico-title {
  font-size: 1.875rem;
  font-family: serif;
  color: #000000;
  margin-bottom: 1.5rem;
}
.servico-section .servico-container .servico-text .servico-text-content {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.servico-section .servico-container .servico-text .servico-text-content p {
  margin-bottom: 1rem;
}
.servico-section .servico-container .servico-text .servico-list .servico-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.servico-section .servico-container .servico-text .servico-list .servico-list-item .list-bullet {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #C9A45C;
  flex-shrink: 0;
}
.servico-section .servico-container .servico-text .servico-list .servico-list-item span {
  color: rgba(0, 0, 0, 0.7);
}
.servico-section .servico-container .servico-text .servico-list-box {
  background-color: #FFFFFF;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}
.servico-section .servico-container .servico-text .servico-list-box .list-box-title {
  font-weight: 500;
  color: #000000;
  margin-bottom: 1rem;
}
.servico-section .servico-container .servico-image .servico-image-wrapper {
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  cursor: zoom-in;
}
.servico-section .servico-container .servico-image .servico-image-wrapper .servico-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
  transform-origin: center center;
}
.servico-section .servico-container .servico-image .servico-image-wrapper:hover .servico-img {
  transform: scale(1.1);
}

.diferenciais-section {
  padding: 6rem 0;
  background-color: #F5F5F5;
}
.diferenciais-section .diferenciais-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .diferenciais-section .diferenciais-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.diferenciais-section .diferenciais-container .diferenciais-title {
  font-size: 2.25rem;
  font-family: serif;
  color: #000000;
  text-align: center;
  margin-bottom: 4rem;
}
.diferenciais-section .diferenciais-container .diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .diferenciais-section .diferenciais-container .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .diferenciais-section .diferenciais-container .diferenciais-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.diferenciais-section .diferenciais-container .diferenciais-grid .diferencial-item:nth-child(1) {
  animation-delay: 0.1s;
}
.diferenciais-section .diferenciais-container .diferenciais-grid .diferencial-item:nth-child(2) {
  animation-delay: 0.2s;
}
.diferenciais-section .diferenciais-container .diferenciais-grid .diferencial-item:nth-child(3) {
  animation-delay: 0.3s;
}
.diferenciais-section .diferenciais-container .diferenciais-grid .diferencial-item:nth-child(4) {
  animation-delay: 0.4s;
}
.diferenciais-section .diferenciais-container .diferenciais-grid .diferencial-item:nth-child(5) {
  animation-delay: 0.5s;
}
.diferenciais-section .diferenciais-container .diferenciais-grid .diferencial-item:nth-child(6) {
  animation-delay: 0.6s;
}

.diferencial-item {
  text-align: center;
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-in-out;
  animation: fadeInUp 0.6s ease-out;
  position: relative;
  overflow: hidden;
}
.diferencial-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #E6D3A3, #C9A45C);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 300ms ease-in-out;
}
.diferencial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.diferencial-item:hover::before {
  transform: scaleX(1);
}
.diferencial-item .diferencial-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #E6D3A3;
  color: #C9A45C;
  margin-bottom: 1.5rem;
  transition: all 300ms ease-in-out;
  position: relative;
}
.diferencial-item .diferencial-icon::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid #C9A45C;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
.diferencial-item .diferencial-icon .icon-image {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 300ms ease-in-out;
  position: relative;
  z-index: 1;
}
.diferencial-item .diferencial-icon svg {
  width: 24px;
  height: 24px;
  transition: transform 300ms ease-in-out;
  position: relative;
  z-index: 1;
}
.diferencial-item:hover .diferencial-icon {
  transform: scale(1.15);
  background-color: #C9A45C;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.diferencial-item:hover .diferencial-icon::after {
  opacity: 0.5;
}
.diferencial-item:hover .diferencial-icon .icon-image,
.diferencial-item:hover .diferencial-icon svg {
  transform: scale(1.2) rotate(-5deg);
  filter: brightness(0) invert(1);
}
.diferencial-item .diferencial-title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.75rem;
  transition: color 300ms ease-in-out;
}
.diferencial-item:hover .diferencial-title {
  color: #C9A45C;
}
.diferencial-item .diferencial-description {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  transition: color 300ms ease-in-out;
}
.diferencial-item:hover .diferencial-description {
  color: rgba(0, 0, 0, 0.8);
}

.cta-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom right, #E6D3A3, #C9A45C);
}
.cta-section .cta-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 56rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .cta-section .cta-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cta-section .cta-container .cta-title {
  font-size: 2.25rem;
  font-family: serif;
  color: #000000;
  margin-bottom: 2rem;
}
.cta-section .cta-container .btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.page-projetos {
  padding-top: 0;
}

.archive-projeto {
  padding-top: 0;
}

.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.page-hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}
.page-hero .hero-content {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  max-width: 56rem;
  padding: 0 2rem;
}
.page-hero .hero-content .hero-title {
  font-size: 3rem;
  font-family: serif;
  color: #FFFFFF;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .page-hero .hero-content .hero-title {
    font-size: 3.75rem;
  }
}
.page-hero .hero-content .hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
}

.introducao-section {
  padding: 4rem 0;
  background-color: #FFFFFF;
}
.introducao-section .introducao-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 56rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .introducao-section .introducao-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.introducao-section .introducao-container .introducao-text {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}

.filters-section {
  padding: 2rem 0;
  background-color: #F5F5F5;
}
.filters-section .filters-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .filters-section .filters-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.filters-section .filters-container .filters-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.filter-btn {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: fadeInDown 0.5s ease-out;
}
.filter-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(201, 164, 92, 0.2), rgba(201, 164, 92, 0.1));
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
.filter-btn.active {
  background-color: #C9A45C;
  color: #FFFFFF;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}
.filter-btn.active::before {
  opacity: 0;
}
.filter-btn.active:hover {
  transform: scale(1.08);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.filter-btn:not(.active) {
  background-color: #FFFFFF;
  color: rgba(0, 0, 0, 0.7);
}
.filter-btn:not(.active):hover {
  background-color: rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}
.filter-btn:not(.active):hover::before {
  opacity: 1;
}

.projects-grid-section {
  padding: 4rem 0;
  background-color: #FFFFFF;
}
.projects-grid-section .projects-grid-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .projects-grid-section .projects-grid-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.projects-grid-section .projects-grid-container .projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .projects-grid-section .projects-grid-container .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .projects-grid-section .projects-grid-container .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.projects-grid-section .projects-grid-container .projects-grid .card-project {
  animation: fadeInUp 0.6s ease-out;
}
.projects-grid-section .projects-grid-container .projects-grid .card-project:nth-child(1) {
  animation-delay: 0.1s;
}
.projects-grid-section .projects-grid-container .projects-grid .card-project:nth-child(2) {
  animation-delay: 0.2s;
}
.projects-grid-section .projects-grid-container .projects-grid .card-project:nth-child(3) {
  animation-delay: 0.3s;
}
.projects-grid-section .projects-grid-container .projects-grid .card-project:nth-child(4) {
  animation-delay: 0.4s;
}
.projects-grid-section .projects-grid-container .projects-grid .card-project:nth-child(5) {
  animation-delay: 0.5s;
}
.projects-grid-section .projects-grid-container .projects-grid .card-project:nth-child(6) {
  animation-delay: 0.6s;
}
.projects-grid-section .projects-grid-container .projects-grid .card-project:nth-child(7) {
  animation-delay: 0.7s;
}
.projects-grid-section .projects-grid-container .projects-grid .card-project:nth-child(8) {
  animation-delay: 0.8s;
}
.projects-grid-section .projects-grid-container .projects-grid .card-project:nth-child(9) {
  animation-delay: 0.9s;
}
.projects-grid-section .projects-grid-container .no-projects {
  text-align: center;
  padding: 4rem 0;
}
.projects-grid-section .projects-grid-container .no-projects .no-projects-text {
  font-size: 1.125rem;
  color: rgba(0, 0, 0, 0.5);
}

.single-projeto {
  padding-top: 0;
}

.project-hero {
  position: relative;
  margin-bottom: 4rem;
  overflow: hidden;
}
.project-hero .project-hero-image {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  cursor: zoom-in;
}
.project-hero .project-hero-image .project-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
  transform-origin: center center;
}
.project-hero .project-hero-image:hover .project-hero-img {
  transform: scale(1.1);
}
.project-hero .project-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #FFFFFF;
  z-index: 1;
  transition: opacity 300ms ease-in-out;
}
.project-hero .project-hero-content .project-category {
  font-size: 0.875rem;
  color: #E6D3A3;
  margin-bottom: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 300ms ease-in-out;
}
.project-hero .project-hero-content .project-title {
  font-size: 2.25rem;
  font-family: serif;
  color: #FFFFFF;
  transform: translateY(10px);
  transition: transform 300ms ease-in-out;
}
@media (min-width: 1024px) {
  .project-hero .project-hero-content .project-title {
    font-size: 3rem;
  }
}
.project-hero:hover .project-hero-content .project-category {
  opacity: 1;
  transform: translateY(0);
}
.project-hero:hover .project-hero-content .project-title {
  transform: translateY(0);
}

.project-content-section {
  padding: 4rem 0;
}
.project-content-section .project-content-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 56rem;
}
@media (min-width: 1024px) {
  .project-content-section .project-content-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.project-content-section .project-content-container .project-content {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.7;
}
.project-content-section .project-content-container .project-content p {
  margin-bottom: 1.5rem;
}

.project-navigation {
  padding: 4rem 0;
  background-color: #F5F5F5;
}
.project-navigation .project-nav-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .project-navigation .project-nav-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.project-navigation .project-nav-container .project-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(0, 0, 0, 0.7);
  transition: all 300ms ease-in-out;
}
.project-navigation .project-nav-container .project-nav-link:hover {
  color: #C9A45C;
}
.project-navigation .project-nav-container .project-nav-link .nav-icon {
  width: 20px;
  height: 20px;
}
.project-navigation .project-nav-container .project-nav-link .nav-icon.nav-icon-prev {
  transform: rotate(180deg);
}

.cta-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom right, #E6D3A3, #C9A45C);
}
.cta-section .cta-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 56rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .cta-section .cta-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cta-section .cta-container .cta-title {
  font-size: 2.25rem;
  font-family: serif;
  color: #000000;
  margin-bottom: 2rem;
  line-height: 1.3;
}
.cta-section .cta-container .btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.single-projeto {
  padding-top: 0;
}

.project-hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.project-hero .project-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.project-hero .project-hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
  z-index: 2;
}
.project-hero .project-hero-image .project-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms ease-in-out;
}
.project-hero .project-hero-image .project-hero-img:hover {
  transform: scale(1.05);
}
.project-hero .project-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 4rem 0;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .project-hero .project-hero-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.project-hero .project-hero-content .project-name {
  font-size: 2.25rem;
  font-family: serif;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
  .project-hero .project-hero-content .project-name {
    font-size: 3rem;
  }
}
.project-hero .project-hero-content .project-location {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.project-description-section {
  padding: 4rem 0;
  background-color: #FFFFFF;
}
.project-description-section .project-description-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .project-description-section .project-description-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.project-description-section .project-description-container .project-description {
  max-width: 56rem;
  margin: 0 auto;
}
.project-description-section .project-description-container .project-description p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
}
.project-description-section .project-description-container .project-description p:last-child {
  margin-bottom: 0;
}

.project-gallery-section {
  padding: 4rem 0;
  background-color: #F5F5F5;
}
.project-gallery-section .project-gallery-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .project-gallery-section .project-gallery-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.project-gallery-section .project-gallery-container .project-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .project-gallery-section .project-gallery-container .project-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .project-gallery-section .project-gallery-container .project-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.project-gallery-section .project-gallery-container .project-gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 4/3;
  background-color: #FFFFFF;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease-in-out;
  animation: fadeInUp 0.6s ease-out;
}
.project-gallery-section .project-gallery-container .project-gallery-grid .gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.project-gallery-section .project-gallery-container .project-gallery-grid .gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.project-gallery-section .project-gallery-container .project-gallery-grid .gallery-item:hover .gallery-image {
  transform: scale(1.1);
}
.project-gallery-section .project-gallery-container .project-gallery-grid .gallery-item .gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.project-gallery-section .project-gallery-container .project-gallery-grid .gallery-item .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 300ms ease-in-out;
}
.project-gallery-section .project-gallery-container .project-gallery-grid .gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 300ms ease-in-out;
}
.project-gallery-section .project-gallery-container .project-gallery-grid .gallery-item .gallery-overlay .gallery-icon {
  color: #FFFFFF;
}
.project-gallery-section .project-gallery-container .project-gallery-grid .gallery-item .gallery-overlay .gallery-icon svg {
  width: 48px;
  height: 48px;
}

.project-navigation {
  padding: 4rem 0;
  background-color: #FFFFFF;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.project-navigation .project-nav-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1024px) {
  .project-navigation .project-nav-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.project-navigation .project-nav-container .project-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  background-color: #C9A45C;
  color: #FFFFFF;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease-in-out;
  text-decoration: none;
}
.project-navigation .project-nav-container .project-nav-link:hover {
  background-color: rgb(181.7788018433, 140.5161290323, 60.2211981567);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.project-navigation .project-nav-container .project-nav-link:active {
  transform: translateY(0);
}

.cta-section {
  padding: 4rem 0;
  background-color: #F5F5F5;
}
.cta-section .cta-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .cta-section .cta-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.cta-section .cta-container .cta-title {
  font-size: 1.875rem;
  font-family: serif;
  color: #000000;
  margin-bottom: 2rem;
}

.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 300ms ease-in-out;
}
.lightbox-modal.active {
  display: flex;
  opacity: 1;
}
.lightbox-modal .lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox-modal .lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.75rem;
}
.lightbox-modal .lightbox-caption {
  color: #FFFFFF;
  text-align: center;
  margin-top: 1rem;
  font-size: 1rem;
}
.lightbox-modal .lightbox-close,
.lightbox-modal .lightbox-prev,
.lightbox-modal .lightbox-next {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
  z-index: 10000;
}
.lightbox-modal .lightbox-close:hover,
.lightbox-modal .lightbox-prev:hover,
.lightbox-modal .lightbox-next:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}
.lightbox-modal .lightbox-close {
  top: 20px;
  right: 20px;
  font-size: 2.5rem;
  line-height: 1;
}
.lightbox-modal .lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox-modal .lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.project-gallery-grid .gallery-link {
  cursor: zoom-in;
}

.page-contactos {
  padding-top: 0;
}

.contact-section {
  padding: 4rem 0;
  background-color: #F5F5F5;
}
.contact-section .contact-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .contact-section .contact-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.contact-section .contact-container .contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .contact-section .contact-container .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info .contact-info-title {
  font-size: 1.875rem;
  font-family: serif;
  color: #000000;
  margin-bottom: 2rem;
}
.contact-info .contact-items {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
.contact-item .contact-item-icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #E6D3A3;
  color: #C9A45C;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
}
.contact-item .contact-item-icon svg {
  width: 24px;
  height: 24px;
  stroke: #C9A45C;
  fill: none;
}
.contact-item .contact-item-icon:hover {
  background-color: #C9A45C;
  color: #FFFFFF;
  transform: scale(1.1);
}
.contact-item .contact-item-icon:hover svg {
  stroke: #FFFFFF;
}
.contact-item .contact-item-content .contact-item-title {
  font-weight: 500;
  color: #000000;
  margin-bottom: 0.25rem;
}
.contact-item .contact-item-content .contact-item-link {
  color: rgba(0, 0, 0, 0.6);
  transition: all 300ms ease-in-out;
}
.contact-item .contact-item-content .contact-item-link:hover {
  color: #C9A45C;
}
.contact-item .contact-item-content .contact-item-text {
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

.contact-social .contact-social-title {
  font-weight: 500;
  color: #000000;
  margin-bottom: 1rem;
}
.contact-social .contact-social-links {
  display: flex;
  gap: 1rem;
}
.contact-social .contact-social-links .social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: #FFFFFF;
  color: #C9A45C;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 300ms ease-in-out;
}
.contact-social .contact-social-links .social-link:hover {
  background-color: #C9A45C;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.contact-social .contact-social-links .social-link .social-icon-image {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.contact-social .contact-social-links .social-link svg {
  width: 20px;
  height: 20px;
}

.contact-form-wrapper {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.contact-form-wrapper .contact-form-title {
  font-size: 1.5rem;
  font-family: serif;
  color: #000000;
  margin-bottom: 1.5rem;
}

.form-success {
  background-color: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
}
.form-success .form-success-title {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-success .form-success-text {
  font-size: 0.875rem;
}

.map-section {
  width: 100%;
  height: 400px;
  background-color: rgba(0, 0, 0, 0.1);
}
.map-section .map-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.map-section .map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  border: 0;
}

.site-main {
  min-height: calc(100vh - 200px);
}

.content-area {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 1024px) {
  .content-area {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/*# sourceMappingURL=main.css.map */
