/* ============================================================
   PJT CONSTRUÇÕES E REFORMAS — style.css
   Paleta: Azul #3A6BDB · Cinza #8A8FA8 · Escuro #0D0D0D · Branco #F4F6FB
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,600;0,700;0,900;1,400&family=Barlow+Condensed:wght@700;900&display=swap");

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue: #3a6bdb;
  --blue-dark: #2550b0;
  --blue-glow: rgba(58, 107, 219, 0.25);
  --gray: #8a8fa8;
  --gray-mid: #4a4f62;
  --dark: #0d0d0d;
  --dark-2: #141417;
  --dark-3: #1c1c22;
  --white: #f4f6fb;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}

/* --- Utilities --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
}
.section-title span {
  color: var(--blue);
}
.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 14px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(58, 107, 219, 0.15);
  transition: background 0.3s;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img {
  width: 60px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.25s;
}
.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background 0.25s !important;
}
.nav-cta:hover {
  background: var(--blue-dark) !important;
  color: var(--white) !important;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 65% 50%,
      rgba(58, 107, 219, 0.18) 0%,
      transparent 70%
    ),
    linear-gradient(160deg, #0d0d0d 0%, #141417 100%);
  z-index: 0;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(58, 107, 219, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 107, 219, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(58, 107, 219, 0.12);
  border: 1px solid rgba(58, 107, 219, 0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 0.98;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title .accent {
  color: var(--blue);
}
.hero-title .stroke {
  -webkit-text-stroke: 2px var(--blue);
  color: transparent;
}

.hero-desc {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 4px;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition:
    background 0.25s,
    transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 4px;
  border: 2px solid var(--gray-mid);
  cursor: pointer;
  transition:
    border-color 0.25s,
    transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  border-color: var(--white);
  transform: translateY(-2px);
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-num span {
  color: var(--blue);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-logo-wrap {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(58, 107, 219, 0.2);
  animation: ring-rotate 18s linear infinite;
}
.hero-logo-ring::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}
@keyframes ring-rotate {
  to {
    transform: rotate(360deg);
  }
}
.hero-logo-ring-2 {
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px dashed rgba(58, 107, 219, 0.12);
  animation: ring-rotate 30s linear infinite reverse;
}
.hero-logo-img {
  width: 300px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 32px rgba(58, 107, 219, 0.35));
}

/* ============================================================
   DIVIDER / CLIENTS
   ============================================================ */
.trust-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--dark-2);
  padding: 24px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gray-mid);
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-badges {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.badge {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.badge:hover {
  opacity: 1;
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
#servicos {
  padding: 100px 0;
}
.services-header {
  margin-bottom: 56px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 32px 28px;
  transition:
    border-color 0.3s,
    transform 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.service-card:hover {
  border-color: rgba(58, 107, 219, 0.35);
  transform: translateY(-4px);
}
.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(58, 107, 219, 0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.service-desc {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================================
   POR QUE NÓS
   ============================================================ */
#diferenciais {
  padding: 100px 0;
  background: var(--dark-2);
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 56px;
}
.diff-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.diff-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  background: var(--dark-3);
  border-left: 3px solid var(--blue);
  border-radius: 0 8px 8px 0;
}
.diff-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.diff-item-title {
  font-weight: 700;
  margin-bottom: 4px;
}
.diff-item-text {
  font-size: 0.9rem;
  color: var(--gray);
}

.diff-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.metric-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
}
.metric-card:first-child {
  grid-column: span 2;
  background: rgba(58, 107, 219, 0.08);
  border-color: rgba(58, 107, 219, 0.25);
}
.metric-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.metric-label {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   PROCESSO
   ============================================================ */
#processo {
  padding: 100px 0;
}
.process-header {
  margin-bottom: 60px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), rgba(58, 107, 219, 0.2));
  z-index: 0;
}
.step {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--blue);
  box-shadow: 0 0 16px var(--blue-glow);
}
.step-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ============================================================
   PROJETOS / GALERIA
   ============================================================ */
#projetos {
  padding: 100px 0;
  background: var(--dark-2);
}

.project-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0d0d0d;
}

.project-card video {
  border-radius: 8px;
}

/* .project-card video::-webkit-media-controls-panel {
  background: rgba(13, 13, 13, 0.9);
} */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
  margin-top: 48px;
}
.project-card {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}
.project-card:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.project-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: linear-gradient(
    135deg,
    var(--dark-3) 0%,
    rgba(58, 107, 219, 0.1) 100%
  );
  transition: transform 0.4s;
}
/* .project-card:hover .project-img-placeholder {
  transform: scale(1.04);
} */
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 13, 13, 0.92) 0%, transparent 60%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: opacity 0.35s;
}
.project-card:hover .project-overlay {
  opacity: 1;
}
.project-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  margin-bottom: 4px;
}
.project-name {
  font-weight: 700;
  font-size: 1.05rem;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
#depoimentos {
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 28px;
}
.stars {
  color: #f4b942;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(58, 107, 219, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  color: var(--blue);
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.9rem;
}
.author-loc {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================================
   CONTATO / CTA
   ============================================================ */
#contato {
  padding: 100px 0;
  background: var(--dark-2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 56px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(58, 107, 219, 0.12);
  border: 1px solid rgba(58, 107, 219, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-label {
  font-size: 0.78rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.contact-item-value {
  font-weight: 700;
  font-size: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}
.form-group select option {
  background: var(--dark-3);
}
.form-submit {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img {
  height: 52px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--gray);
  max-width: 280px;
  line-height: 1.7;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.9rem;
  color: var(--gray);
  transition: color 0.25s;
}
.footer-links a:hover {
  color: var(--blue);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.82rem;
  color: var(--gray-mid);
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition:
    background 0.25s,
    border-color 0.25s;
}
.social-btn:hover {
  background: rgba(58, 107, 219, 0.2);
  border-color: rgba(58, 107, 219, 0.4);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  background: #25d366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.hidden {
  opacity: 0;
  transform: translateY(28px);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}
.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .process-steps::before {
    display: none;
  }
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .diff-visual {
    order: -1;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-visual {
    display: none;
  }
  .hero-desc {
    max-width: 100%;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark-2);
    padding: 28px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 20px;
    z-index: 99;
  }
  .hamburger {
    display: flex;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .project-card:first-child {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .diff-visual {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding-bottom: 24px;
}
.footer-logo {
  height: 60px;
  margin-bottom: 12px;
}
.footer-simple p,
.footer-contact a {
  color: var(--gray);
  font-size: 0.95rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}
.footer-contact a:hover {
  color: var(--blue);
}
@media (max-width: 768px) {
  .footer-simple {
    flex-direction: column;
    text-align: center;
  }
  .footer-contact {
    text-align: center;
  }
}
