/* oswald-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Oswald";
  font-style: normal;
  font-weight: 600;
  src: url("../assets/fonts/oswald-v57-latin-600.woff2") format("woff2");
}
/* prata-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Prata";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/prata-v22-latin-regular.woff2") format("woff2");
}
/* arimo-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Arimo";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/arimo-v35-latin-regular.woff2") format("woff2");
}
/* arimo-italic - latin */
@font-face {
  font-display: swap;
  font-family: "Arimo";
  font-style: italic;
  font-weight: 400;
  src: url("../assets/fonts/arimo-v35-latin-italic.woff2") format("woff2");
}
/* arimo-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Arimo";
  font-style: normal;
  font-weight: 600;
  src: url("../assets/fonts/arimo-v35-latin-600.woff2") format("woff2");
}
/* arimo-600italic - latin */
@font-face {
  font-display: swap;
  font-family: "Arimo";
  font-style: italic;
  font-weight: 600;
  src: url("../assets/fonts/arimo-v35-latin-600italic.woff2") format("woff2");
}
@keyframes slideInRight {
  from {
    transform: translateX(250px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-250px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
body {
  margin: 0;
  overflow-x: hidden;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Arimo", sans-serif;
}

h1, h2 {
  font-family: "Oswald", sans-serif;
}

h1 {
  font-size: 50px;
}
@media (max-width: 650px) {
  h1 {
    font-size: 35px;
  }
}

h2 {
  font-size: 40px;
}
@media (max-width: 650px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-family: "Prata", serif;
  font-size: 30px;
}
@media (max-width: 650px) {
  h3 {
    font-size: 25px;
  }
}

p {
  font-size: 25px;
}
@media (max-width: 650px) {
  p {
    font-size: 20px;
  }
}

h1, h2, h3, h4, p {
  cursor: default;
}

header {
  background-color: #f5f1e6;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1147px) {
  header {
    height: 60px;
    padding: 0 15px;
  }
}
header .top {
  display: flex;
  align-items: center;
}
@media (max-width: 1147px) {
  header .top {
    width: 100%;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
header .logo img {
  height: 110px;
  width: auto;
  display: block;
}
@media (max-width: 1147px) {
  header .logo img {
    height: 40px;
  }
}
header .burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
@media (max-width: 1147px) {
  header .burger {
    display: block;
  }
}
header .burger span {
  margin: 0.2rem 0;
  display: block;
  height: 3px;
  width: 100%;
  background: #3e3e3e;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
header .burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
header .burger.open span:nth-child(2) {
  opacity: 0;
}
header .burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}
header .inside {
  display: flex;
  gap: 25px;
}
@media (max-width: 1147px) {
  header .inside {
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: #f5f1e6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    align-items: center;
    padding: 0;
  }
  header .inside.open {
    max-height: 300px;
    padding: 20px 0;
  }
}
header .inside__link {
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  color: #3e3e3e;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  transition: color 0.3s;
  background: none;
  border: none;
  cursor: pointer;
}
header .inside__link:hover {
  color: #7d9c8b;
}
header .outside {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1147px) {
  header .outside {
    display: none;
  }
}
header .outside__link {
  color: #3e3e3e;
  font-size: 1.7rem;
  text-decoration: none;
  transition: color 0.3s;
}
header .outside__link:hover {
  color: #7d9c8b;
}
header .outside__link[href^=tel] {
  background-color: #e3c16f;
  padding: 8px 15px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
header .outside__link[href^=tel]:hover {
  background-color: rgb(218.6976744186, 174.6162790698, 68.3023255814);
}

.btn {
  font-family: "Oswald", sans-serif;
  padding: 12px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.btn--secondary {
  background-color: transparent;
  border: 2px solid #7d9c8b;
  color: #f5f1e6;
}
.btn--secondary:hover {
  background-color: #7d9c8b;
}
.btn--tertiary {
  background-color: #e3c16f;
  color: #3e3e3e;
}
.btn--tertiary:hover {
  background-color: rgb(218.6976744186, 174.6162790698, 68.3023255814);
  transform: translateY(-3px);
}

footer {
  background-color: #3e3e3e;
  color: #f5f1e6;
  padding: 60px 20px 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  footer {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 40px 20px;
  }
}
footer .start {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 30px;
}
@media (max-width: 768px) {
  footer .start {
    order: 1;
    align-items: center;
    padding-left: 0;
  }
}
footer .start a {
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  color: #e3c16f;
  transition: all 0.3s ease;
}
footer .start a:hover {
  color: rgb(218.6976744186, 174.6162790698, 68.3023255814);
  transform: scale(1.1);
}
footer .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  footer .center {
    order: 3;
  }
}
footer .center a {
  text-decoration: none;
  font-family: "Arimo", sans-serif;
  color: #e3c16f;
  transition: all 0.3s ease;
}
footer .center a:hover {
  color: rgb(235.3023255814, 211.3837209302, 153.6976744186);
}
footer .end {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 20px;
  padding-right: 30px;
}
@media (max-width: 768px) {
  footer .end {
    order: 2;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-right: 0;
  }
}
footer .end a {
  text-decoration: none;
  font-family: "Oswald", sans-serif;
  color: #e3c16f;
  font-size: 30px;
  transition: all 0.3s ease;
}
footer .end a:hover {
  color: rgb(218.6976744186, 174.6162790698, 68.3023255814);
  transform: translateY(-3px);
}
footer .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
footer .modal__content {
  position: relative;
  background-color: #f5f1e6;
  color: #3e3e3e;
  padding: 40px;
  border-radius: 50px;
  width: 95%;
  max-width: 600px;
}
@media (max-width: 768px) {
  footer .modal__content {
    padding: 20px;
    width: auto;
  }
}
footer .modal__content--close {
  position: absolute;
  right: 40px;
  top: 20px;
  background: none;
  background-color: transparent;
  border: none;
  color: #3e3e3e;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}
footer .modal__content--close:hover {
  color: #717171;
}
footer .modal__content--body {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
footer .modal__content--body h3 {
  margin-top: 40px;
}
footer .modal__content--body button {
  background: #e3c16f;
  border: none;
  cursor: pointer;
  color: #3e3e3e;
  margin: 10px;
  transition: all 0.3s ease;
}
footer .modal__content--body button:hover {
  background: rgb(218.6976744186, 174.6162790698, 68.3023255814);
  transform: scale(1.05);
}
footer .modal__content--body form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
footer .modal__content--body label {
  font-weight: bold;
  margin-bottom: -15px;
  font-size: 0.9rem;
}
footer .modal__content--body input[type=text] {
  padding: 12px 15px;
  border-radius: 10px;
  border: 2px solid transparent;
  background: rgb(237.7142857143, 230.8, 211.7857142857);
  color: #3e3e3e;
  outline: none;
  transition: border-color 0.3s ease;
}
footer .modal__content--body input[type=text]:focus {
  border-color: #e3c16f;
}
footer .modal__content--body input[type=file], footer .modal__content--body select {
  padding: 10px;
  background: rgba(62, 62, 62, 0.05);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8rem;
}
footer .modal__content--body input[type=file]::file-selector-button, footer .modal__content--body select::file-selector-button {
  background: #e3c16f;
  color: #3e3e3e;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  margin-right: 15px;
  cursor: pointer;
  transition: 0.3s;
}
footer .modal__content--body input[type=file]::file-selector-button:hover, footer .modal__content--body select::file-selector-button:hover {
  background: rgb(218.6976744186, 174.6162790698, 68.3023255814);
}
footer .modal.open {
  display: flex;
}

#adminTrigger {
  text-decoration: none;
  color: #fff;
  cursor: default;
}

.hero {
  position: relative;
  height: 80vh;
  min-height: 700px;
  background: url("../assets/images/hero-bg.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5f1e6;
  text-align: center;
}
@media (max-width: 492px) {
  .hero {
    height: 90vh;
  }
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.hero__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}
.hero__title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero__title .highlight {
  color: #e3c16f;
}
.hero__subtitle {
  font-family: "Prata", serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  margin-bottom: 2.5rem;
  line-height: 1.4;
}
.hero__actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 600px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
}

.services {
  padding: clamp(3rem, 8vw, 6rem) 20px;
  background-color: #ffffff;
  text-align: center;
}
.services__title {
  color: #3e3e3e;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.services__intro {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #717171;
}
.services__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
}
.services__card {
  max-width: 300px;
  padding: 40px 30px;
  background-color: #f5f1e6;
  border-bottom: 4px solid transparent;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.services__card:hover {
  transform: translateY(-10px);
  border-bottom-color: #7d9c8b;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.services__card--image {
  height: 150px;
  overflow: hidden;
}
.services__card--image img {
  width: 90%;
  height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}
.services__card--title {
  margin-bottom: 1rem;
  color: #3e3e3e;
}
.services__card p {
  line-height: 1.6;
  font-size: 0.95rem;
}

.benefits {
  background-color: #3e3e3e;
  color: #f5f1e6;
  padding: clamp(3rem, 8vw, 5rem) 20px;
}
.benefits__title {
  font-family: "Oswald", sans-serif;
  text-align: center;
  margin-bottom: 3rem;
  color: #e3c16f;
}
.benefits__content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
}
.benefits__content--item {
  flex: 1 1 300px;
  border-left: 2px solid #7d9c8b;
  padding-left: 20px;
}
.benefits__content--item h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.benefits__content--item p {
  line-height: 1.6;
  opacity: 0.9;
}
.benefits .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.benefits .container a {
  margin-top: 40px;
}

.comparison {
  padding: clamp(3rem, 8vw, 6rem) 20px;
  background-color: #e3c16f;
}
.comparison__title {
  text-align: center;
  color: #3e3e3e;
  margin-bottom: 3rem;
}
.comparison__slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.comparison__slider--after {
  width: 100%;
  height: 100%;
}
.comparison__slider--after img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comparison__slider--before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  border-right: 3px solid #e3c16f;
}
.comparison__slider--before img {
  width: 900px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.comparison__slider--range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
}
.comparison__item {
  display: none;
  width: 100%;
}
.comparison__item--active {
  display: block;
}
.comparison__item.slide-next {
  animation: slideInRight 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.comparison__item.slide-prev {
  animation: slideInLeft 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.comparison__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}
.comparison__nav--prev, .comparison__nav--next, .comparison__nav--add {
  background: #7d9c8b;
  border: none;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 20px;
  transition: 0.3s;
}
.comparison__nav--prev:hover, .comparison__nav--next:hover, .comparison__nav--add:hover {
  background: #3e3e3e;
}
.comparison__caption {
  text-align: center;
  margin-top: 1rem;
  color: #3e3e3e;
  font-style: italic;
}

.admin-tools {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  justify-content: flex-end;
  z-index: 10;
}
.admin-tools__btn-delete-project {
  background: #7d9c8b;
  color: #f5f1e6;
  border: none;
  border-radius: 5px;
  padding: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.admin-tools__btn-delete-project:hover {
  color: rgb(215.8571428571, 200.2, 157.1428571429);
  transform: scale(1.2);
}

.about-map {
  padding: clamp(3rem, 8vw, 6rem) 20px;
  background-color: #f5f1e6;
}
.about-map__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  width: 90vw;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .about-map__grid {
    grid-template-columns: 1fr;
  }
}
.about-map__text--title {
  font-family: "Oswald", sans-serif;
  color: #3e3e3e;
  margin-bottom: 1.5rem;
}
.about-map__text--highlight {
  font-family: "Prata", serif;
  font-size: 1.2rem;
  color: rgb(88.4082969432, 116.0917030568, 100.9104803493);
  margin-bottom: 1.5rem;
}
.about-map__text p {
  line-height: 1.7;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}
.about-map__text--info {
  margin: 2rem 0;
}
.about-map__text--info p {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  color: #3e3e3e;
}
.about-map__text--info svg {
  color: #7d9c8b;
  width: 30px;
  height: 20px;
}
.about-map__visual {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  line-height: 0;
}
.about-map__visual--town {
  font-size: 0.8rem;
}/*# sourceMappingURL=index.css.map */