:root {
  --bg-main: #e2dddd;
  --white: #ffffff;
  --text: #2c1d47;
  --text-soft: #6c5f84;
  --border: #ece5f4;

  --purple-900: #2c0d59;
  --purple-800: #43106f;
  --purple-700: #61189c;
  --purple-600: #7a22c4;
  --purple-500: #972fee;
  --purple-400: #b555ff;

  --green-500: #1ed38c;
  --green-600: #10b874;

  --shadow-soft: 0 10px 30px rgba(48, 19, 83, 0.08);
  --shadow-strong: 0 18px 45px rgba(41, 12, 75, 0.16);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container: 1180px;
  --header-height: 78px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg-main);
  color: var(--text);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

/* HEADER */
.header {
  position: sticky;
  margin-bottom: -26px;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(110, 73, 168, 0.1);
}

.nav-wrapper {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo img {
  width: 150px;
  object-fit: contain;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--purple-800);
  transition: 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  position: absolute;
  top: calc(var(--header-height) + 8px);
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-strong);
  padding: 14px;
  display: none;
  flex-direction: column;
  gap: 8px;
}

.nav-menu.open {
  display: flex;
}

.nav-link {
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--text);
  transition: 0.25s ease;
}

.nav-link.active,
.nav-link:hover {
  color: #fff;
  background: linear-gradient(135deg, var(--purple-800), var(--purple-500));
}

/* HERO */
.hero {
  /* margin-top: -10px; */
  padding-top: 8px;
}

.hero-slider {
  position: relative;
}

.slides {
  position: relative;
  overflow: hidden;
}

.hero-slide {
  min-height: 560px;
  position: relative;
  display: none;
  border-radius: 0 0 22px 22px;
  overflow: hidden;
}

.hero-slide.active {
  display: block;
  animation: fadeIn 0.45s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(1.01);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 3, 50, 0.9) 0%, rgba(67, 14, 117, 0.65) 50%, rgba(49, 12, 92, 0.2) 100%),
    linear-gradient(180deg, rgba(113, 36, 179, 0.15), rgba(6, 4, 15, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-text {
  width: 100%;
  max-width: 620px;
  color: #fff;
  padding: 30px 0 76px;
}

.hero-text h1,
.hero-title-alt {
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-text p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin-bottom: 26px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  transition: 0.25s ease;
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

.slider-arrow-left {
  left: 10px;
}

.slider-arrow-right {
  right: 10px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  margin-bottom: 15px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: 0.25s ease;
}

.dot.active {
  background: var(--purple-400);
  transform: scale(1.12);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-green {
  color: #fff;
  background: linear-gradient(180deg, var(--green-500), var(--green-600));
  box-shadow: 0 12px 28px rgba(30, 211, 140, 0.24);
}

.btn-purple {
  color: #fff;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  box-shadow: 0 10px 24px rgba(135, 41, 220, 0.2);
}

.btn-small {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 0.9rem;
}

/* GENERAL SECTION */
.section {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  color: var(--purple-800);
  font-size: 1.65rem;
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 28px;
  text-transform: uppercase;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-lg);
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 28%),
    radial-gradient(circle at bottom left, rgba(33, 211, 139, 0.15), transparent 18%),
    linear-gradient(135deg, #52108b 0%, #7e23cb 100%);
  box-shadow: var(--shadow-strong);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -20px -20px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.service-icon {
  min-width: 58px;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.service-content {
  position: relative;
  z-index: 2;
}

.service-content h3 {
  font-size: 1.08rem;
  margin-bottom: 8px;
}

.service-content p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.testimonial-card:hover,
.project-card:hover {
  transform: translateY(-4px);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.testimonial-top img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(150, 62, 239, 0.12);
}

.testimonial-top h3 {
  color: var(--purple-800);
  font-size: 1rem;
  margin-bottom: 4px;
}

.stars {
  color: #ffbf36;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.testimonial-card p {
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 0.94rem;
  margin-bottom: 16px;
}

/* PROJECTS */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.project-image {
  position: relative;
  overflow: hidden;
}

.project-image img {
  /* background-position: center; */
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.04);
}

.project-content {
  padding: 18px;
}

.project-content h3 {
  color: var(--purple-800);
  font-size: 1.32rem;
  margin-bottom: 8px;
}

.project-content p {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ABOUT */
.about-me {
  position: relative;
}

.about-shell {
  display: grid;
  gap: 22px;
  padding: 24px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(30, 211, 140, 0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(181, 85, 255, 0.18), transparent 22%),
    linear-gradient(135deg, var(--purple-900) 0%, var(--purple-700) 55%, #7e23cb 100%);
  box-shadow: var(--shadow-strong);
}

.about-copy {
  color: #fff;
}

.about-eyebrow {
  /* color: black; */
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-top: 15px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid white;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.about-copy h2 {
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 16px;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.97rem;
  line-height: 1.8;
}

.about-copy p + p {
  margin-top: 12px;
}

.about-highlights {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-highlight i {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(180deg, var(--green-500), var(--green-600));
  box-shadow: 0 12px 24px rgba(30, 211, 140, 0.2);
}

.about-highlight h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.about-highlight p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

.about-card {
  align-self: center;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-soft);
}

.about-card-badge {
  display: inline-flex;
  padding: 8px 14px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: var(--purple-700);
  background: rgba(151, 47, 238, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
}

.about-card h3 {
  color: var(--purple-800);
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 22px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-soft);
  line-height: 1.65;
  font-weight: 500;
}

.about-list li i {
  color: var(--green-600);
  margin-top: 4px;
}

/* WEBSITE PAGE */
.website-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
}

.website-hero-media {
  position: absolute;
  inset: 0;
  /* background:
    linear-gradient(135deg, rgba(34, 11, 68, 0.45), rgba(124, 40, 196, 0.18)),
    url("img/Desenvolvimento-de-site.png") center/cover no-repeat; */
  transform: scale(1.04);
}

.website-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(29, 4, 55, 0.92) 0%, rgba(72, 16, 121, 0.8) 55%, rgba(72, 16, 121, 0.28) 100%);
}

.website-hero-content {
  position: relative;
  z-index: 2;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.website-hero-copy {
  max-width: 680px;
  color: #fff;
  padding: 36px 0 72px;
}

.website-hero-copy h1 {
  font-size: 2.15rem;
  line-height: 1.08;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.website-hero-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
  margin-bottom: 24px;
}

.website-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.website-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.website-process-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px 18px;
  box-shadow: var(--shadow-soft);
}

.website-process-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 1.3rem;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  box-shadow: 0 12px 24px rgba(135, 41, 220, 0.2);
}

.website-process-card h3 {
  color: var(--purple-800);
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.website-process-card p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.95rem;
}

.website-explain-shell {
  display: grid;
  gap: 20px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(30, 211, 140, 0.14), transparent 22%),
    radial-gradient(circle at bottom right, rgba(181, 85, 255, 0.16), transparent 22%),
    linear-gradient(135deg, #2c0d59 0%, #5a1490 56%, #7a22c4 100%);
  box-shadow: var(--shadow-strong);
}

.website-explain-copy {
  color: #fff;
}

.website-explain-copy h2 {
  font-size: 1.85rem;
  line-height: 1.12;
  margin-bottom: 14px;
}

.website-explain-copy p {
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.8;
}

.website-explain-copy p + p {
  margin-top: 10px;
}

.website-explain-points {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.website-explain-points h3 {
  color: var(--purple-800);
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.website-projects {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
}

.website-project-card .project-image {
  background: linear-gradient(135deg, #f5f1fb, #ffffff);
}

.website-project-card .project-image img {
  object-fit: contain;
  padding: 22px;
}

.website-project-tag {
  display: inline-flex;
  padding: 7px 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(151, 47, 238, 0.12);
  color: var(--purple-700);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.website-contact-section {
  padding-top: 20px;
}

.website-contact-shell {
  display: grid;
  gap: 22px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 22%),
    radial-gradient(circle at bottom left, rgba(30, 211, 140, 0.16), transparent 18%),
    linear-gradient(135deg, #451072 0%, #7a22c4 100%);
  box-shadow: var(--shadow-strong);
}

.website-contact-copy {
  color: #fff;
}

.website-contact-copy h2 {
  font-size: 1.9rem;
  line-height: 1.14;
  margin-bottom: 14px;
}

.website-contact-copy p {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.8;
}

.website-contact-copy p + p {
  margin-top: 10px;
}

.website-contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-self: start;
}

.website-contact-card {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-soft);
  transition: 0.25s ease;
}

.website-contact-card > div {
  min-width: 0;
}

.website-contact-card:hover {
  transform: translateY(-4px);
}

.website-contact-card i {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-size: 1.25rem;
  background: linear-gradient(180deg, var(--green-500), var(--green-600));
  box-shadow: 0 12px 24px rgba(30, 211, 140, 0.2);
}

.website-contact-card h3 {
  color: var(--purple-800);
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.website-contact-card p {
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 8px;
}

.website-contact-card span {
  color: var(--purple-700);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.design-hero .website-hero-media {
  background:
    radial-gradient(circle at top right, rgba(30, 211, 140, 0.18), transparent 20%),
    radial-gradient(circle at bottom left, rgba(181, 85, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(34, 11, 68, 0.88), rgba(107, 32, 175, 0.72));
}

.design-placeholder-image {
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(151, 47, 238, 0.08), rgba(30, 211, 140, 0.08)),
    linear-gradient(180deg, #f7f3fb, #ffffff);
}

.design-placeholder-content {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  color: var(--purple-700);
}

.design-placeholder-content i {
  font-size: 2rem;
  color: var(--purple-500);
}

.design-placeholder-content span {
  font-size: 0.95rem;
  font-weight: 600;
}

.marketing-hero .website-hero-media {
  background:
    radial-gradient(circle at top right, rgba(30, 211, 140, 0.18), transparent 18%),
    radial-gradient(circle at bottom left, rgba(181, 85, 255, 0.2), transparent 24%),
    linear-gradient(135deg, rgba(25, 7, 52, 0.9), rgba(69, 16, 114, 0.76)),
    url("img/Marketing-Digital.png") center/cover no-repeat;
}

.marketing-showcase-image {
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(30, 211, 140, 0.14), transparent 22%),
    radial-gradient(circle at bottom left, rgba(151, 47, 238, 0.14), transparent 24%),
    linear-gradient(180deg, #f6f2fb, #ffffff);
}

.marketing-showcase-content {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  color: var(--purple-700);
}

.marketing-showcase-content i {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  font-size: 1.7rem;
  color: #fff;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  box-shadow: 0 12px 24px rgba(135, 41, 220, 0.2);
}

.marketing-showcase-content span {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.marketing-showcase-image-featured img {
  object-fit: contain;
  padding: 22px;
}

.formatting-hero .website-hero-media {
  background:
    radial-gradient(circle at top right, rgba(30, 211, 140, 0.16), transparent 18%),
    radial-gradient(circle at bottom left, rgba(181, 85, 255, 0.2), transparent 22%),
    linear-gradient(135deg, rgba(26, 7, 54, 0.92), rgba(74, 20, 122, 0.78));
}

.formatting-showcase-image {
  min-height: 210px;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top right, rgba(30, 211, 140, 0.14), transparent 22%),
    radial-gradient(circle at bottom left, rgba(151, 47, 238, 0.16), transparent 24%),
    linear-gradient(180deg, #f6f2fb, #ffffff);
}

.formatting-showcase-content {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
  color: var(--purple-700);
}

.formatting-showcase-content i {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  font-size: 1.7rem;
  color: #fff;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  box-shadow: 0 12px 24px rgba(135, 41, 220, 0.2);
}

.formatting-showcase-content span {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}


.direitos-da-tecnofacil{
  text-align: center;
  padding-bottom: 15px;
  font-size: 12px;
}

@media (max-width: 767px) {
  .about-me.section {
    padding: 38px 0;
  }

  .about-shell {
    gap: 18px;
    padding: 20px 16px;
    border-radius: 24px;
  }

  .about-eyebrow,
  .about-card-badge {
    font-size: 0.74rem;
    letter-spacing: 0.05em;
  }

  .about-copy h2 {
    font-size: 1.65rem;
    line-height: 1.16;
    max-width: 12ch;
  }

  .about-copy p,
  .about-list li,
  .about-highlight p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .about-highlights {
    gap: 12px;
    margin-top: 20px;
  }

  .about-highlight {
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
  }

  .about-highlight i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .about-card {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .about-card h3 {
    font-size: 1.28rem;
    margin-bottom: 16px;
  }

  .about-list {
    gap: 12px;
    margin-bottom: 20px;
  }

  .about-card .btn {
    width: 100%;
  }

  .website-hero,
  .website-hero-content {
    min-height: 500px;
  }

  .website-hero-copy {
    padding: 28px 0 56px;
  }

  .website-hero-copy h1 {
    font-size: 1.95rem;
  }

  .website-hero-actions .btn {
    width: 100%;
  }

  .website-explain-shell,
  .website-contact-shell {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .website-explain-copy h2,
  .website-contact-copy h2 {
    font-size: 1.55rem;
  }

  .website-explain-points {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .website-contact-card {
    padding: 18px 16px;
    border-radius: 18px;
  }
}

/* FOOTER */
.footer {
  background: #fff;
  border-top: 1px solid var(--border);
}

.footer-grid {
  padding: 20px 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  text-align: center;
}

.footer-brand img {
  width: 200px;
  margin: 0 auto;
}

.footer-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.footer-item i {
  color: var(--green-600);
}

.direitos-da-tecnofacil{
  text-align: center;
  padding-bottom: 15px;
  font-size: 12px;
}

/* TABLET */
@media (min-width: 768px) {
  .hero-slide,
  .hero-content {
    min-height: 640px;
  }

  .hero-text h1,
  .hero-title-alt {
    font-size: 3rem;
  }

  .section {
    padding: 72px 0;
  }

  .section-title {
    font-size: 2.15rem;
    margin-bottom: 36px;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-shell {
    padding: 34px;
  }

  .about-copy h2 {
    font-size: 2.45rem;
  }

  .about-highlights {
    grid-template-columns: repeat(2, 1fr);
  }

  .website-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .website-explain-shell,
  .website-contact-shell {
    padding: 32px;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    text-align: left;
  }

  .footer-brand img {
    margin: 0;
  }

  .footer-item {
    justify-content: flex-start;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }

  .nav-link {
    padding: 10px 16px;
    font-size: 0.95rem;
  }

  .hero-slide,
  .hero-content {
    min-height: 720px;
  }

  .hero-text h1,
  .hero-title-alt {
    font-size: 4.15rem;
  }

  .website-hero,
  .website-hero-content {
    min-height: 640px;
  }

  .website-hero-copy h1 {
    font-size: 4rem;
  }

  .hero-text p {
    font-size: 1.05rem;
  }

  .slider-arrow-left {
    left: 18px;
  }

  .slider-arrow-right {
    right: 18px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-shell {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.85fr);
    gap: 28px;
    padding: 42px;
  }

  .about-copy {
    padding-right: 20px;
  }

  .about-copy h2 {
    font-size: 3rem;
  }

  .website-explain-shell,
  .website-contact-shell {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
    padding: 40px;
  }

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

  .footer-grid {
    grid-template-columns: 1.1fr 1fr 1fr 1.35fr;
    gap: 18px;
  }
}
