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

@keyframes showTopText {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  40%, 60% {
    transform: translate3d(0, 50%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes showBottomText {
  0% {
    transform: translate3d(0, -100%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
    transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
    transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
    transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 5px rgba(50, 205, 50, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(50, 205, 50, 0.9);
  }
  100% {
    box-shadow: 0 0 5px rgba(50, 205, 50, 0.5);
  }
}
@keyframes glow {
  from {
    text-shadow: 0px 0px 5px #1e1e1e, 0px 0px 5px #d97706;
  }
  to {
    text-shadow: 0px 0px 35px #1e1e1e, 0px 0px 35px #d97706;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
    filter: blur(0px);
    opacity: 1;
  }
}
.text-glow {
  animation: glow 1s ease-in-out infinite alternate;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #1a1a1a;
  color: #fefce8;
  line-height: 1.6;
  position: relative;
}
body .modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
body .modal .modal-content {
  background: #0a0b0e;
  margin: 15% auto;
  padding: 40px;
  border-radius: 8px;
  max-width: 500px;
  text-align: center;
  position: relative;
  animation: modalFadeIn 0.3s ease-in-out;
  border: 3px solid #d97706;
}
body .modal .modal-content > div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
body .modal .modal-content > div.contain-logo-modal > img {
  display: block;
  width: 100%;
  max-width: 60px;
  object-fit: contain;
}
body .modal .modal-content > div.contain-sucesso-img > img {
  display: block;
  width: 100%;
  max-width: 40px;
  object-fit: contain;
}
body .modal .modal-content > p.modal-message {
  font-size: 15px;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.4;
}
body .modal .modal-content > p.modal-timer {
  font-size: 13px;
  color: #6b6a6a;
}
body .modal .modal-content > p.modal-timer #countdown {
  font-weight: bold;
  color: #6b6a6a;
}
body .contain-logo-minha-casa-vida {
  display: inline-block;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 1001;
  border-radius: 50%;
  background: #fff;
  animation: heartbeat 1.5s ease-in-out infinite both, pulse-glow 1.5s infinite alternate;
}
body .contain-logo-minha-casa-vida > img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 100px;
  object-fit: contain;
}
@media (min-width: 768px) {
  body .contain-logo-minha-casa-vida > img {
    max-width: 120px;
  }
}
body .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
body .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
body .section-title.center {
  text-align: center;
}
@media (max-width: 768px) {
  body .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  body .section-title {
    font-size: 1.75rem;
  }
}
body .text-primary {
  color: #d97706;
}
body .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
body .btn-primary {
  background-color: #d97706;
  color: #ffffff;
}
body .btn-primary:hover {
  background-color: #b45309;
}
body .btn-outline {
  background-color: transparent;
  color: #d97706;
  border: 1px solid #d97706;
}
body .btn-outline:hover {
  background-color: #d97706;
  color: #ffffff;
}
body .btn-ghost {
  background-color: transparent;
  color: #fefce8;
}
body .btn-ghost:hover {
  color: #d97706;
}
body .btn-icon {
  width: 1rem;
  height: 1rem;
}
body header.header {
  border-bottom: 1px solid #4b5563;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
}
body header.header .container .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}
body header.header .container .header-content .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
body header.header .container .header-content .logo .logo-icon {
  display: block;
  max-width: 50px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
body header.header .container .header-content .nav {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  body header.header .container .header-content .nav {
    display: none;
  }
}
body header.header .container .header-content .nav .nav-link {
  color: #fefce8;
  text-decoration: none;
  transition: color 0.3s ease;
}
body header.header .container .header-content .nav .nav-link:hover {
  color: #d97706;
}
body header.header .container .header-content .mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  body header.header .container .header-content .mobile-menu-btn {
    display: flex;
  }
}
body header.header .container .header-content .mobile-menu-btn span {
  width: 1.5rem;
  height: 2px;
  background-color: #fefce8;
  transition: all 0.3s ease;
}
body section.hero {
  position: relative;
  height: auto;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: visible;
  margin-top: 83px;
}
body section.hero .hero-bg {
  position: absolute;
  inset: 0;
}
body section.hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body section.hero .hero-bg .hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
body section.hero .container .hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: none;
}
body section.hero .container .hero-content .hero-text,
body section.hero .container .hero-content .hero-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body section.hero .container .hero-content .hero-text .hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  animation: text-focus-in 1.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}
@media (min-width: 664px) {
  body section.hero .container .hero-content .hero-text .hero-title {
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  body section.hero .container .hero-content .hero-text .hero-title {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  body section.hero .container .hero-content .hero-text .hero-title {
    font-size: 2.75rem;
  }
}
body section.hero .container .hero-content .hero-text .hero-description {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #d1d5db;
}
@media (min-width: 576px) {
  body section.hero .container .hero-content .hero-text .hero-description {
    font-size: 1.2rem;
  }
}
@media (min-width: 664px) {
  body section.hero .container .hero-content .hero-text .hero-description {
    font-size: 0.9rem;
  }
}
@media (min-width: 768px) {
  body section.hero .container .hero-content .hero-text .hero-description {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  body section.hero .container .hero-content .hero-text .hero-description {
    font-size: 1.25rem;
  }
}
body section.hero .container .hero-content .hero-text .btn {
  max-width: 280px;
}
body section.hero .container .hero-content .hero-form fieldset {
  margin: 0;
  padding: 40px 20px 35px;
  width: 100%;
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 10px;
}
body section.hero .container .hero-content .hero-form fieldset div.contain-text-action {
  position: relative;
  padding: 52px 0;
}
@media (min-width: 664px) {
  body section.hero .container .hero-content .hero-form fieldset div.contain-text-action {
    padding: 73px 0;
  }
}
@media (min-width: 777px) {
  body section.hero .container .hero-content .hero-form fieldset div.contain-text-action {
    padding: 52px 0;
  }
}
body section.hero .container .hero-content .hero-form fieldset div.contain-text-action .animated-title {
  color: #6c757d;
  height: 100px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-weight: 600;
}
@media (min-width: 664px) {
  body section.hero .container .hero-content .hero-form fieldset div.contain-text-action .animated-title {
    height: 145px;
  }
}
@media (min-width: 777px) {
  body section.hero .container .hero-content .hero-form fieldset div.contain-text-action .animated-title {
    height: 100px;
  }
}
body section.hero .container .hero-content .hero-form fieldset div.contain-text-action .animated-title > div {
  height: 50%;
  overflow: hidden;
  position: absolute;
  width: 100%;
}
body section.hero .container .hero-content .hero-form fieldset div.contain-text-action .animated-title > div div {
  font-size: 14px;
  padding: 0.5vmin 0;
  position: absolute;
}
body section.hero .container .hero-content .hero-form fieldset div.contain-text-action .animated-title > div div span {
  display: block;
}
body section.hero .container .hero-content .hero-form fieldset div.contain-text-action .animated-title > div.text-top {
  border-bottom: 1px solid #6c757d;
  top: 0;
  font-weight: 600;
}
body section.hero .container .hero-content .hero-form fieldset div.contain-text-action .animated-title > div.text-top div {
  animation: showTopText 1s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  bottom: 0;
  transform: translate(0, 100%);
}
body section.hero .container .hero-content .hero-form fieldset div.contain-text-action .animated-title > div.text-top div span:first-child {
  color: #6c757d;
  font-weight: 600;
}
body section.hero .container .hero-content .hero-form fieldset div.contain-text-action .animated-title > div.text-bottom {
  bottom: 0;
}
body section.hero .container .hero-content .hero-form fieldset div.contain-text-action .animated-title > div.text-bottom div {
  animation: showBottomText 0.5s;
  animation-delay: 1.75s;
  animation-fill-mode: forwards;
  top: 0;
  transform: translate(0, -100%);
}
body section.hero .container .hero-content .hero-form fieldset form#lead-form .form-input {
  background-color: rgba(26, 26, 26, 0.8);
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  color: #fefce8;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
  width: 100%;
}
body section.hero .container .hero-content .hero-form fieldset form#lead-form .form-input:focus {
  border-color: #d97706;
  outline: none;
  transform: translateY(-2px);
}
body section.hero .container .hero-content .hero-form fieldset form#lead-form .form-input::placeholder {
  color: #d1d5db;
}
body section.services {
  padding: 4rem 0;
}
body section.services .container .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
body section.services .container .services-grid .service-card {
  background-color: #1a1a1a;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  padding: 1.5rem;
  transition: border-color 0.3s ease;
}
body section.services .container .services-grid .service-card:hover {
  border-color: #d97706;
}
body section.services .container .services-grid .service-card .service-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
body section.services .container .services-grid .service-card .service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #d97706;
  margin-bottom: 0.5rem;
}
body section.services .container .services-grid .service-card .service-description {
  color: #d1d5db;
}
body section.categories {
  padding: 2rem 0;
  border-top: 1px solid #4b5563;
  border-bottom: 1px solid #4b5563;
}
body section.categories .container .category-tags {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 576px) {
  body section.categories .container .category-tags {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  body section.categories .container .category-tags {
    grid-template-columns: repeat(4, 1fr);
  }
}
body section.categories .container .category-tags .category-tag {
  border: 1px solid #d97706;
  color: #d97706;
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  width: 100%;
}
body section.story {
  padding: 4rem 0;
}
body section.story .container .story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) {
  body section.story .container .story-grid {
    grid-template-columns: 1fr;
  }
}
body section.story .container .story-grid .story-content .story-description {
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.7;
}
body section.story .container .story-grid .story-content .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  body section.story .container .story-grid .story-content .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
body section.story .container .story-grid .story-content .stats-grid .stat {
  text-align: center;
}
body section.story .container .story-grid .story-content .stats-grid .stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d97706;
  margin-bottom: 0.5rem;
}
body section.story .container .story-grid .story-content .stats-grid .stat .stat-label {
  color: #d1d5db;
}
body section.story .container .story-grid .story-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 0.5rem;
}
body section.best-services {
  padding: 4rem 0;
  background-color: #1a1a1a;
}
body section.best-services .container .service-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
body section.best-services .container .service-list .service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  transition: border-color 0.3s ease;
}
@media (max-width: 768px) {
  body section.best-services .container .service-list .service-item {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}
body section.best-services .container .service-list .service-item:hover {
  border-color: #d97706;
}
body section.best-services .container .service-list .service-item .service-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
body section.best-services .container .service-list .service-item .service-info .service-icon {
  width: 2rem;
  height: 2rem;
  color: #d97706;
  font-size: 20px;
}
body section.best-services .container .service-list .service-item .service-info div .service-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
body section.best-services .container .service-list .service-item .service-info div .service-desc {
  color: #d1d5db;
}
body section.best-services .container .service-list .service-item button.btn-ghost {
  display: block;
  width: 100%;
  max-width: 225px;
  border: 1px solid #d97706;
  background-color: transparent;
  color: #fefce8;
}
body section.best-services .container .service-list .service-item button.btn-ghost:hover {
  color: #d97706;
}
body section.best-services .container .service-list .service-item button.btn-ghost > svg {
  position: relative;
  top: 2px;
}
body section.portfolio {
  padding: 4rem 0;
}
body section.portfolio .container .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 480px) {
  body section.portfolio .container .portfolio-grid {
    grid-template-columns: 1fr;
  }
}
body section.portfolio .container .portfolio-grid .portfolio-item {
  cursor: pointer;
  overflow: hidden;
  border-radius: 0.5rem;
}
body section.portfolio .container .portfolio-grid .portfolio-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
}
body section.portfolio .container .portfolio-grid .portfolio-item:hover img {
  transform: scale(1.05);
}
body section.team {
  padding: 4rem 0;
  background-color: #1a1a1a;
}
body section.team div.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
body section.team div.team-grid div.team-member {
  text-align: center;
}
body section.team div.team-grid div.team-member img.member-photo {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid #d97706;
}
body section.team div.team-grid div.team-member h3.member-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #d97706;
  margin-bottom: 0.25rem;
}
body section.team div.team-grid div.team-member p.member-role {
  color: #d1d5db;
}
body {
  /* Feedback */
}
body section.feedback {
  padding: 4rem 0;
}
body section.feedback div.feedback-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 35px;
}
@media (min-width: 768px) {
  body section.feedback div.feedback-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 992px) {
  body section.feedback div.feedback-grid {
    gap: 45px;
  }
}
body section.feedback div.feedback-grid div.feedback-image {
  width: 100%;
}
@media (max-width: 767.9px) {
  body section.feedback div.feedback-grid div.feedback-image {
    display: flex;
    justify-content: center;
  }
}
body section.feedback div.feedback-grid div.feedback-image > img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
@media (max-width: 767.9px) {
  body section.feedback div.feedback-grid div.feedback-image > img {
    max-width: 550px;
  }
}
body section.feedback div.feedback-grid div.feedback-content {
  width: 100%;
}
body section.feedback div.feedback-grid div.feedback-content div.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
body section.feedback div.feedback-grid div.feedback-content div.stars svg.star {
  width: 1.25rem;
  height: 1.25rem;
  color: #d97706;
}
body section.feedback div.feedback-grid div.feedback-content p.feedback-text {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
body section.feedback div.feedback-grid div.feedback-content div.customer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}
body section.feedback div.feedback-grid div.feedback-content div.customer-info > div h4.customer-name {
  font-weight: 600;
  color: #d97706;
  margin-bottom: 0.25rem;
}
body footer.footer {
  border-top: 1px solid #4b5563;
  padding: 3rem 0 0 0;
}
body footer.footer .container .footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  body footer.footer .container .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
body footer.footer .container .footer-grid .footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  body footer.footer .container .footer-grid .footer-brand {
    align-items: flex-start;
  }
}
body footer.footer .container .footer-grid .footer-brand .logo .logo-icon {
  display: block;
  max-width: 50px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}
body footer.footer .container .footer-grid .footer-brand .footer-description {
  color: #d1d5db;
  margin-top: 1rem;
  width: 100%;
  max-width: 400px;
  text-align: center;
}
@media (min-width: 768px) {
  body footer.footer .container .footer-grid .footer-brand .footer-description {
    text-align: left;
  }
}
body footer.footer .container .footer-grid .footer-links .footer-title {
  font-weight: 600;
  color: #d97706;
  margin-bottom: 1rem;
}
body footer.footer .container .footer-grid .footer-links .footer-list {
  list-style: none;
}
body footer.footer .container .footer-grid .footer-links .footer-list li {
  margin-bottom: 0.5rem;
}
body footer.footer .container .footer-grid .footer-links .footer-list .footer-link {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}
body footer.footer .container .footer-grid .footer-links .footer-list .footer-link:hover {
  color: #d97706;
}
body footer.footer .container .msg-imgs {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #6c757d;
}
body footer.footer .container .footer-bottom {
  border-top: 1px solid #4b5563;
  padding-top: 2rem;
  padding-bottom: 30px;
  text-align: center;
  color: #d1d5db;
}
body footer.footer .contain-mobagil {
  background: #E50C94;
  background: linear-gradient(90deg, rgb(229, 12, 148) 0%, rgb(97, 18, 151) 50%, rgb(17, 17, 17) 100%);
  display: flex;
  justify-content: center;
  padding: 5px 0 5px 0;
}
body footer.footer .contain-mobagil > div.container > img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 40px;
  object-fit: cover;
}

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