@charset "UTF-8";

/*=============== VARIABLES ===============*/
:root {
  --primary-color: #63c6ae;
  --primary-color-dark: #3f9f8a;
  --primary-color-light: #dff5ef;
  --title-color: #182728;
  --text-color: #657477;
  --text-color-light: #879396;
  --body-color: #ffffff;
  --section-color: #f4f8f8;
  --surface-color: #ffffff;
  --dark-color: #172526;
  --dark-color-light: #223536;
  --white-color: #ffffff;
  --border-color: #dce7e7;
  --shadow-small: 0 10px 30px rgba(23, 37, 38, 0.08);
  --shadow-medium: 0 20px 50px rgba(23, 37, 38, 0.13);
  --shadow-large: 0 30px 80px rgba(23, 37, 38, 0.18);
  --header-height: 76px;
  --container-width: 1180px;
  --radius-small: 0.55rem;
  --radius-medium: 1rem;
  --radius-large: 1.4rem;
  --transition: 0.3s ease;
}

/*=============== RESET ===============*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background-color: var(--body-color);
  color: var(--text-color);
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
  font-family: "Open Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--title-color);
  font-family: "Sintony", sans-serif;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

ul,
ol {
  margin-bottom: 0;
  padding-left: 0;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

blockquote {
  margin: 0;
}

::selection {
  background-color: var(--primary-color);
  color: var(--dark-color);
}

/*=============== ACCESSIBILITY ===============*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-small);
  background-color: var(--white-color);
  color: var(--dark-color);
  font-weight: 700;
  box-shadow: var(--shadow-medium);
  transform: translateY(-180%);
  transition: transform var(--transition);
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(99, 198, 174, 0.5);
  outline-offset: 3px;
}

/*=============== REUSABLE ===============*/
.container {
  width: min(100% - 2rem, var(--container-width));
  margin-inline: auto;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 3rem;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--primary-color-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.15rem, 4.5vw, 3.7rem);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.section-description {
  max-width: 560px;
  margin-bottom: 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.3rem;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: var(--dark-color);
  box-shadow: 0 12px 28px rgba(99, 198, 174, 0.22);
}

.button-primary:hover {
  border-color: #79d5bf;
  background-color: #79d5bf;
}

/*=============== HEADER ===============*/
.header {
  position: relative;
  z-index: 100;
  width: 100%;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(23, 37, 38, 0.08);
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 22px rgba(23, 37, 38, 0.06);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.js .header {
  position: fixed;
  top: 0;
  left: 0;
}

.header__container {
  position: relative;
  width: min(100% - 2rem, var(--container-width));
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-inline: auto;
}

.logo-text {
  min-height: var(--header-height);
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  padding-inline: 1.35rem;
  background-color: var(--primary-color);
  color: var(--dark-color);
  font-family: "Sintony", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Botão mobile sempre oculto no desktop */
.header__btnMenu {
  display: none !important;
}

.header__nav {
  max-height: none !important;
  margin-left: auto;
  overflow: visible !important;
}

.header__nav ul {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin: 0;
}

.header__nav li {
  border: 0;
  background: transparent;
}

.header__nav a {
  position: relative;
  display: inline-flex;
  padding: 1rem 0.65rem;
  color: var(--title-color);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color var(--transition);
}

.header__nav a::after {
  content: "";
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  left: 0.65rem;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.header__nav a:hover {
  color: var(--primary-color-dark);
}

.header__nav a:hover::after {
  transform: scaleX(1);
}

.header__contact {
  min-height: 42px;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-small);
  background-color: var(--dark-color);
  color: var(--white-color);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background-color var(--transition), transform var(--transition);
}

.header__contact:hover {
  background-color: var(--primary-color-dark);
  transform: translateY(-2px);
}

.js .header__nav {
  transition: max-height 0.4s ease;
}

/*=============== HERO ===============*/
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 4rem) 0 5rem;
  background: url("../img/01.jpg") center / cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(12, 29, 29, 0.97) 0%,
      rgba(18, 43, 42, 0.9) 42%,
      rgba(20, 44, 43, 0.62) 70%,
      rgba(20, 44, 43, 0.38) 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(99, 198, 174, 0.14);
  filter: blur(90px);
  pointer-events: none;
}

.hero__glow--top {
  top: -150px;
  left: 20%;
  width: 360px;
  height: 360px;
}

.hero__glow--bottom {
  right: 10%;
  bottom: -180px;
  width: 420px;
  height: 420px;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 6rem);
}

.hero__content {
  max-width: 680px;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  color: var(--primary-color);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__label::before {
  content: "";
  width: 42px;
  height: 1px;
  background-color: currentColor;
}

.hero__title {
  margin-bottom: 1.3rem;
  color: var(--white-color);
  font-size: clamp(3rem, 5.1vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.hero__title span {
  display: block;
  color: var(--primary-color);
}

.hero__text {
  max-width: 620px;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.hero__btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--primary-color);
  border-radius: var(--radius-small);
  background-color: var(--primary-color);
  color: var(--dark-color);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.hero__btn i {
  font-size: 0.7rem;
  transition: transform var(--transition);
}

.hero__btn:hover {
  border-color: #7bd8c2;
  background-color: #7bd8c2;
  box-shadow: 0 14px 32px rgba(99, 198, 174, 0.25);
  transform: translateY(-3px);
}

.hero__btn:hover i {
  transform: translateX(4px);
}

.hero__btn--secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background-color: rgba(255, 255, 255, 0.04);
  color: var(--white-color);
  box-shadow: none;
}

.hero__btn--secondary:hover {
  border-color: var(--white-color);
  background-color: var(--white-color);
  color: var(--dark-color);
  box-shadow: none;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
}

.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 600;
}

.hero__trust i {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: rgba(99, 198, 174, 0.16);
  color: var(--primary-color);
  font-size: 0.55rem;
}

/*=============== HERO PANEL ===============*/
.hero__panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 1.4rem;
  background:
    linear-gradient(145deg,
      rgba(255, 255, 255, 0.11),
      rgba(255, 255, 255, 0.045));
  box-shadow: 0 30px 70px rgba(4, 18, 18, 0.3);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hero__panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.hero__panel-label {
  margin-bottom: 0.35rem;
  color: var(--primary-color);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__panel-header h2 {
  max-width: 300px;
  margin-bottom: 0;
  color: var(--white-color);
  font-size: 1.25rem;
  line-height: 1.4;
}

.hero__panel-number {
  color: rgba(255, 255, 255, 0.18);
  font-family: "Sintony", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}

.hero__features {
  display: grid;
  margin: 0;
  padding: 0;
}

.hero__feature {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.25rem 1.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition:
    background-color var(--transition),
    padding-left var(--transition);
}

.hero__feature:last-child {
  border-bottom: 0;
}

.hero__feature::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background-color: var(--primary-color);
  transform: scaleY(0);
  transition: transform var(--transition);
}

.hero__feature:hover {
  padding-left: 1.85rem;
  background-color: rgba(99, 198, 174, 0.08);
}

.hero__feature:hover::before {
  transform: scaleY(1);
}

.hero__feature-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(99, 198, 174, 0.25);
  border-radius: 0.9rem;
  background-color: rgba(99, 198, 174, 0.1);
  color: var(--primary-color);
  font-size: 1rem;
}

.hero__feature-content {
  min-width: 0;
}

.hero__feature-number {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--primary-color);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hero__feature h3 {
  margin-bottom: 0.35rem;
  color: var(--white-color);
  font-size: 0.95rem;
}

.hero__feature p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  line-height: 1.6;
}

.hero__panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  background-color: rgba(8, 25, 25, 0.2);
}

.hero__panel-footer>span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.66rem;
}

.hero__panel-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-size: 0.66rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero__panel-footer a i {
  font-size: 0.6rem;
  transition: transform var(--transition);
}

.hero__panel-footer a:hover i {
  transform: translateX(4px);
}

/*=============== HERO RESPONSIVE ===============*/
@media screen and (max-width: 1024px) {
  .hero {
    min-height: auto;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__panel {
    max-width: 760px;
  }
}

@media screen and (max-width: 680px) {
  .hero {
    padding: calc(var(--header-height) + 3rem) 0 4rem;
    background-position: 62% center;
  }

  .hero__title {
    font-size: clamp(2.7rem, 13vw, 3.8rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__btn {
    width: 100%;
  }

  .hero__trust {
    display: grid;
    gap: 0.65rem;
  }

  .hero__panel-header {
    padding: 1.25rem;
  }

  .hero__panel-number {
    font-size: 2rem;
  }

  .hero__feature {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 1.1rem 1.25rem;
  }

  .hero__feature:hover {
    padding-left: 1.45rem;
  }

  .hero__feature-icon {
    width: 44px;
    height: 44px;
  }

  .hero__panel-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem;
  }
}

/*=============== SERVICES ===============*/
.services-section {
  padding: 5.5rem 0;
  background-color: var(--body-color);
}

.people-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.people-cards__card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-large);
  background-color: var(--surface-color);
  box-shadow: var(--shadow-small);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.people-cards__card:hover {
  border-color: rgba(99, 198, 174, 0.65);
  transform: translateY(-7px);
  box-shadow: var(--shadow-medium);
}

.people-cards__image-wrapper {
  overflow: hidden;
  aspect-ratio: 16 / 11;
}

.people-cards__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.people-cards__card:hover .people-cards__image {
  transform: scale(1.05);
  filter: brightness(1.04);
}

.people-cards__avatar {
  position: relative;
  z-index: 2;
  width: 74px;
  height: 74px;
  margin: -37px auto 0;
  overflow: hidden;
  border: 5px solid var(--white-color);
  border-radius: 50%;
  background-color: var(--white-color);
  box-shadow: var(--shadow-small);
}

.people-cards__avatar img {
  width: 100%;
  height: auto;
  transition: transform var(--transition);
}

.people-cards__card:hover .people-cards__avatar img {
  transform: translateY(-50%);
}

.people-cards__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.1rem 1.25rem 1.35rem;
  text-align: center;
}

.people-cards__number {
  margin-bottom: 0.35rem;
  color: var(--primary-color-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.people-cards__title {
  margin-bottom: 0.65rem;
  font-size: 1.05rem;
}

.people-cards__text {
  margin-bottom: 1.1rem;
  font-size: 0.82rem;
}

.people-cards__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: auto;
  color: var(--primary-color-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.people-cards__link span {
  transition: transform var(--transition);
}

.people-cards__link:hover span {
  transform: translateX(5px);
}

/*=============== ABOUT ===============*/
.content {
  padding: 5.5rem 0;
  border-block: 1px solid var(--border-color);
  background-color: var(--section-color);
}

.content__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 6vw, 5rem);
}

.content h2 {
  margin-bottom: 1.15rem;
  font-size: clamp(2rem, 3.8vw, 3rem);
  letter-spacing: -0.03em;
}

.content__intro>p,
.content__process>p {
  max-width: 620px;
}

.process-list {
  display: grid;
  gap: 0.85rem;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-medium);
  background-color: var(--white-color);
  box-shadow: var(--shadow-small);
}

.process-list>li>span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--primary-color-light);
  color: var(--primary-color-dark);
  font-family: "Sintony", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

.process-list h3 {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.process-list p {
  margin-bottom: 0;
  font-size: 0.8rem;
}

/*=============== PROJECTS ===============*/
.last-articles {
  padding-bottom: 5rem;
  background-color: var(--dark-color);
}

.last-articles__title {
  padding: 4.5rem 0 2.5rem;
}

.last-articles__title .section-header {
  margin-bottom: 0;
}

.last-articles__title .section-label {
  color: var(--primary-color);
}

.last-articles__title h2 {
  margin-bottom: 0;
  color: var(--white-color);
  font-size: clamp(2.15rem, 4.5vw, 3.7rem);
}

.last-articles__title .section-description {
  color: rgba(255, 255, 255, 0.63);
}

.last-articles__thumbs {
  width: min(100% - 2rem, 1380px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-inline: auto;
}

.last-articles__thumbs a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-medium);
  aspect-ratio: 16 / 11;
}

.last-articles__thumbs a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 30, 31, 0.9), transparent 58%);
  opacity: 0.58;
  transition: opacity var(--transition);
}

.last-articles__thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.last-articles__thumbs span {
  position: absolute;
  right: 0.85rem;
  bottom: 0.75rem;
  left: 0.85rem;
  z-index: 2;
  color: var(--white-color);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.last-articles__thumbs a:hover::after {
  opacity: 0.78;
}

.last-articles__thumbs a:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.last-articles__thumbs a:hover span {
  color: var(--primary-color);
}

/*=============== SHOWCASE ===============*/
.showcase-section {
  padding-top: 5.5rem;
  background-color: var(--white-color);
}

.laptop-slider {
  width: 100%;
  overflow: hidden;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--dark-color), var(--dark-color-light));
}

.slideshow {
  position: relative;
  width: min(100%, 900px);
  margin-inline: auto;
}

.laptop-slider figure {
  margin: 0;
}

.laptop-slider figure img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.js .laptop-slider figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.js .laptop-slider figure.show {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background-color: rgba(23, 37, 38, 0.72);
  color: var(--white-color);
  font-size: 1.25rem;
  transform: translateY(-50%);
  transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.prev {
  left: 1rem;
}

.next {
  right: 1rem;
}

.prev:hover,
.next:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: var(--dark-color);
}

/*=============== TESTIMONIALS ===============*/
.quote-container {
  padding: 5.5rem 0;
  border-bottom: 10px solid var(--primary-color-dark);
  background-color: var(--primary-color);
}

.quote-container__header {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.quote-container__header .section-label {
  color: var(--dark-color);
}

.quote-container__header h2 {
  margin-bottom: 0;
  color: var(--dark-color);
  font-size: clamp(2rem, 3.8vw, 3rem);
}

.quote-slideshow {
  position: relative;
  width: min(100%, 900px);
  min-height: 240px;
  margin-inline: auto;
  padding-inline: 4.5rem;
}

.quote-slideshow figure {
  margin: 0;
  text-align: center;
}

.quote-slideshow blockquote p {
  margin-bottom: 1.25rem;
  color: var(--white-color);
  font-family: "Sintony", sans-serif;
  font-size: clamp(1.35rem, 3.5vw, 2.15rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
}

.quote-slideshow figcaption strong,
.quote-slideshow figcaption span {
  display: block;
}

.quote-slideshow figcaption strong {
  color: var(--dark-color);
  font-size: 0.86rem;
}

.quote-slideshow figcaption span {
  color: rgba(23, 37, 38, 0.67);
  font-size: 0.72rem;
}

.js .quote-slideshow figure {
  position: absolute;
  top: 0;
  right: 4.5rem;
  left: 4.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.js .quote-slideshow figure.show {
  position: relative;
  right: auto;
  left: auto;
  opacity: 1;
  pointer-events: auto;
}

.quote-slideshow .prev,
.quote-slideshow .next {
  border-color: rgba(23, 37, 38, 0.18);
  background-color: rgba(23, 37, 38, 0.12);
  color: var(--dark-color);
}

.quote-slideshow .prev:hover,
.quote-slideshow .next:hover {
  border-color: var(--dark-color);
  background-color: var(--dark-color);
  color: var(--white-color);
}

.no-js .quote-slideshow figure+figure,
.no-js .laptop-slider figure+figure {
  margin-top: 3rem;
}

/*=============== CONTACT ===============*/
.contact-section {
  padding: 5.5rem 0;
  background-color: var(--section-color);
}

.contact-section__container {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.contact-section__content .section-title {
  margin-bottom: 1.1rem;
}

.contact-section__content>p {
  max-width: 580px;
}

.contact-information {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.contact-information li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
}

.contact-information i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background-color: var(--primary-color-light);
  color: var(--primary-color-dark);
}

.contact-information strong,
.contact-information span {
  display: block;
}

.contact-information strong {
  color: var(--title-color);
  font-size: 0.75rem;
}

.contact-information span {
  font-size: 0.8rem;
  overflow-wrap: anywhere;
}

.contact-form {
  min-width: 0;
  display: grid;
  gap: 1.1rem;
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-large);
  background-color: var(--white-color);
  box-shadow: var(--shadow-medium);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  min-width: 0;
  display: grid;
  gap: 0.4rem;
}

.form-field label {
  color: var(--title-color);
  font-size: 0.74rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-small);
  background-color: #fbfdfd;
  color: var(--title-color);
  transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.form-field input,
.form-field select {
  min-height: 48px;
  padding: 0.7rem 0.85rem;
}

.form-field textarea {
  min-height: 140px;
  padding: 0.8rem 0.85rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary-color);
  outline: none;
  background-color: var(--white-color);
  box-shadow: 0 0 0 4px rgba(99, 198, 174, 0.13);
}

.contact-form .button {
  justify-self: start;
}

.contact-form__notice {
  margin-bottom: 0;
  color: var(--text-color-light);
  font-size: 0.7rem;
}

/*=============== FOOTER ===============*/
.footer {
  padding-top: 4.5rem;
  background-color: var(--dark-color);
  color: rgba(255, 255, 255, 0.65);
}

.footer__container {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(3, minmax(140px, 0.6fr));
  gap: 2.5rem;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--white-color);
  font-family: "Sintony", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer__brand>p {
  max-width: 400px;
}

.footer__social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.footer__social a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  color: var(--white-color);
  transition: background-color var(--transition), border-color var(--transition), color var(--transition), transform var(--transition);
}

.footer__social a:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: var(--dark-color);
  transform: translateY(-3px);
}

.footer__column h2 {
  margin-bottom: 1rem;
  color: var(--white-color);
  font-size: 0.9rem;
}

.footer__links {
  display: grid;
  gap: 0.65rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  transition: color var(--transition), transform var(--transition);
}

.footer__links a:hover {
  color: var(--primary-color);
  transform: translateX(4px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3.5rem;
  padding-block: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__bottom p {
  margin-bottom: 0;
  font-size: 0.72rem;
}

.footer__bottom a {
  color: var(--primary-color);
  font-weight: 700;
}

/*=============== TABLET AND MOBILE MENU ===============*/
@media screen and (max-width: 1024px) {
  .header__btnMenu {
    width: 44px;
    height: 44px;
    display: grid !important;
    flex-shrink: 0;
    place-items: center;
    margin-left: auto;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-small);
    background-color: transparent;
    color: var(--title-color);
    font-size: 1.05rem;
    transition: background-color var(--transition), border-color var(--transition), color var(--transition);
  }

  .header__btnMenu:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-color-light);
    color: var(--primary-color-dark);
  }

  .header__contact {
    display: none;
  }

  .header__nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    width: 100%;
    margin-left: 0;
    overflow: hidden !important;
    background-color: var(--white-color);
    box-shadow: var(--shadow-medium);
  }

  .header__nav ul {
    display: block;
  }

  .header__nav li {
    border-bottom: 1px solid var(--border-color);
  }

  .header__nav li:last-child {
    border-bottom: 0;
  }

  .header__nav a {
    display: block;
    padding: 0.95rem 1.2rem;
  }

  .header__nav a::after {
    display: none;
  }

  .no-js .header__nav {
    position: static;
    max-height: none !important;
    overflow: visible !important;
    box-shadow: none;
  }

  .no-js .header__nav ul {
    display: flex;
    flex-wrap: wrap;
  }

  .people-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .last-articles__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer__container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/*=============== TABLETS ===============*/
@media screen and (max-width: 800px) {
  :root {
    --header-height: 70px;
  }

  .logo-text {
    min-height: var(--header-height);
  }

  .hero {
    min-height: 640px;
    padding-top: calc(var(--header-height) + 3rem);
  }

  .hero__title {
    font-size: clamp(2.8rem, 9vw, 4.2rem);
  }

  .hero__features,
  .section-header,
  .content__grid,
  .contact-section__container {
    grid-template-columns: 1fr;
  }

  .section-header {
    gap: 1rem;
  }

  .last-articles__thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-slideshow {
    padding-inline: 3.5rem;
  }

  .js .quote-slideshow figure {
    right: 3.5rem;
    left: 3.5rem;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/*=============== MOBILE ===============*/
@media screen and (max-width: 560px) {

  .container,
  .header__container {
    width: min(100% - 1.5rem, var(--container-width));
  }

  .logo-text {
    padding-inline: 1rem;
    font-size: 1rem;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 2.75rem) 0 4rem;
    background-position: 62% center;
  }

  .hero__title {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .hero__btn {
    width: 100%;
  }

  .services-section,
  .content,
  .contact-section,
  .quote-container {
    padding-block: 4.5rem;
  }

  .showcase-section {
    padding-top: 4.5rem;
  }

  .people-cards,
  .last-articles__thumbs,
  .footer__container {
    grid-template-columns: 1fr;
  }

  .last-articles {
    padding-bottom: 4rem;
  }

  .last-articles__thumbs a {
    aspect-ratio: 16 / 10;
  }

  .laptop-slider {
    padding: 3rem 0.5rem;
  }

  .prev,
  .next {
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }

  .prev {
    left: 0.35rem;
  }

  .next {
    right: 0.35rem;
  }

  .quote-slideshow {
    min-height: 310px;
    padding-inline: 2.75rem;
  }

  .js .quote-slideshow figure {
    right: 2.75rem;
    left: 2.75rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .contact-form .button {
    width: 100%;
  }

  .footer {
    padding-top: 3.75rem;
  }

  .footer__bottom {
    margin-top: 3rem;
  }
}

/*=============== REDUCED MOTION ===============*/
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}