/*
Theme Name: New Web Automação
Text Domain: New Web Automação
Version: 0.1
Requires at least: 4.7
Requires PHP: 5.2.4
Description: New Web Automação
Author: Metricaz.
Author URI: https://metricaz.com/
*/

:root {
  --color-primary-light: #3B82F6;
  --color-primary-base: #1E3A8A;
  --color-primary-dark: #1E2F6F;
  --color-secondary-light: #FDE68A;
  --color-secondary-base: #FACC15;
  --color-secondary-dark: #EAB308;
  --color-text-primary: #0F172A;
  --color-text-secondary: #334155;
  --color-text-muted: #64748B;
  --color-background-base: #FFFFFF;
  --color-background-soft: #F8FAFC;
  --color-background-dark: #0F1F4B;
  --color-error-light: #FEE2E2;
  --color-error-base: #DC2626;
  --color-error-dark: #7F1D1D;
  --color-success-light: #DCFCE7;
  --color-success-base: #16A34A;
  --color-success-dark: #166534;
  --color-gereric-dark: #000;
  --neutral-color-600: #D2D5E3;
  --neutral-color-400: #F1F3FA;
  --neutral-color-900: #8A8FA6;
  --neutral-color-text-gray: #2C2E36;
  --neutral-color-headings-black: #232636;

  --font-family-base: "DM Sans", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

main {
  margin: 0 auto;
}

h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

h3 {
  font-size: 28px;
  font-weight: 600;
}

h4 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.35;
}

h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

.destaque {
  font-size: 16px;
  font-weight: 700;
}

.paragrafo-small {
  font-size: 12px;
  line-height: 1.4;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family-base);
}

.header-home {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background: linear-gradient(to bottom, #33415594, #33415500);
}

.header-home.no-shadow {
  background: transparent;
}

.header-container {
  max-width: 1220px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 38px;
  display: block;
}

.main-menu {
  flex: 1;
  display: flex;
  justify-content: center;
  transition: right 0.3s ease-in-out;
}

.menu-list ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list ul li a {
  color: var(--color-background-base);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: opacity 0.3s ease;
}

.menu-list ul li a:hover {
  opacity: 0.8;
}

.menu-list-dark ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list-dark ul li a {
  color: var(--color-text-primary);
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  transition: opacity 0.3s ease;
}

.menu-list-dark ul li a:hover {
  opacity: 0.8;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  border-radius: 10px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-radius: 30px;
  border: none;
}

.btn-blue {
  background-color: var(--color-primary-base);
  color: var(--color-background-base);
}

.btn-blue-menu {
  background-color: var(--color-primary-base);
  color: var(--color-background-base);
}

.btn-white {
  background-color: var(--color-background-base);
  color: var(--color-text-primary);
}

.btn-shadow {
  box-shadow: -2px 12px 20px #0000006b;
}

.btn-outline {
  border: 1px solid var(--color-background-base);
  background-color: transparent;
  color: #fff;
  font-weight: bold;
  padding: 15px 20px;
}

.btn-outline-login {
  background-color: var(--color-background-base) !important;
  color: var(--color-gereric-dark) !important;
}

.btn-outline-dark-login {
  background-color: var(--color-gereric-dark) !important;
  color: var(--color-background-base) !important;
}


.btn-outline-dark {
  border: 1px solid var(--color-gereric-dark);
  background-color: transparent;
  color: var(--color-gereric-dark);
  font-weight: bold;
  padding: 15px 20px;
}

.header-home .menu-list ul li a {
  color: #FFFFFF;
}

.header-home .btn-outline {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.round {
  border-radius: 30px;
  padding: 10px;
  /* width: 100%; */
}

.btn-primary {
  background-color: var(--color-secondary-base);
  color: var(--color-gereric-dark);
}

.btn-primary:hover {
  background-color: var(--color-secondary-dark);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  border: none;
  padding: 10px 14px;
  border-radius: 4px;
  cursor: pointer;
  background-color: var(--color-background-base);
}

.menu-toggle .arrow {
  width: 6px;
  height: 6px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
  transition: 0.3s;
  margin-top: -2px;
}

.header-show-fixed {
  background: var(--color-background-base);
  box-shadow: none !important;
  padding: 0 !important;
  position: fixed !important;
  transition: 1s;
}

/* animação */
.menu-toggle.active .arrow {
  transform: rotate(-135deg);
  margin-top: 2px;
}

.form {
  padding-top: 60px;
  position: relative;
}

.form-background {
  background-color: var(--color-background-dark);
}

.content-form {
  background-color: var(--color-primary-base);
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 80px 110px;
  position: relative;
  margin: 152px 24px 0 0;
  color: #fff;
  width: 68%;
}

.content-form>h2 {
  padding-bottom: 8px;
}

.content-form>form {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}

.content-input {
  margin-bottom: 24px;
}

.content-input>p {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 6px;
}

.content-input>input,
.content-input>select {
  height: 50px;
  border-radius: 8px;
  width: 100%;
  border: none;
  padding: 15px;
}

.content-input>textarea {
  height: 142px;
  border-radius: 20px;
  width: 100%;
  border: none;
  padding: 15px;
}

.button-action-form {
  justify-self: right;
}

.container-card {
  padding: 24px;
  border: 1px solid var(--neutral-color-600);
  border-radius: 24px;
  margin: 24px 0;
  text-align: center;
}

.container-card h3 {
  margin-bottom: 10px;
}

.img-card-about-system {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  margin: 0px 0 20px 0;
}

.image-card-big {
  width: 100% !important;
  height: 220px !important;
}

.accordion-item {
  display: grid;
  grid-template-columns: 70px 1fr 20px;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc, #f8fafc00);
  padding: 0 30px;
  margin-bottom: 20px;
  border-radius: 30px;
  box-shadow: inset 3px 20px 20px #0000000d;
  width: 813px;
  cursor: pointer;
}

.accordion-header {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  line-height: 0.8;
  padding-top: 32px;
  padding-bottom: 20px;
  width: 99%;
}

.icon-accordion {
  width: 100%;
  padding: 13px;
}

.accordion-header-content {
  width: 60px;
  height: 60px;
  background: #1E3A8A;
  border-radius: 10px;
  transition: all .5s ease;
  transition-delay: 0.5s;
}

.accordion-body {
  margin-top: 13px;
  transition: all .5s ease;
}

.accordion-body>h4 {
  font-weight: 700;
}

.accordion-item.active {
  grid-template-columns: 1fr;
  padding: 0;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.accordion-header-content.active-icon {
  transition: all .5s ease;
}

.accordion-body.active-content {
  /* transform: translateY(75px); */
  transition: all .5s ease;
}

.accordion-tags {
  margin-top: 30px;
  padding: 10px 0;

  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.accordion-tag {
  background-color: #FDE68A;
  padding: 10px 16px;
  border-radius: 30px;

  display: inline-flex;
  align-items: center;

  line-height: 1;
  white-space: nowrap;
}

.accordion-content {
  margin-top: -5px;
  max-height: 23px;
  overflow: hidden;
  transition: max-height 0.35s ease;
  transition-delay: 0.5s;
}

.accordion-content p {
  font-weight: 400;
}

.accordion-toggle {
  font-size: 30px;
  margin-top: 12px;
  text-align: end;
}

.last-accordion {
  border-bottom: 1px solid var(--neutral-color-600);
  padding-bottom: 32px;
}

.content-card-system-modules {
  background-color: var(--neutral-color-600);
  border-radius: 20px;
  padding: 24px 24px 0 24px;
  text-align: center;
  margin-top: 24px;
}

.description-card-system-modules {
  margin-top: 14px;
  margin-bottom: 40px;
}

.img-card-system-modules {
  margin-bottom: -4.7px;
}

.container-card-video {
  background-color: var(--color-background-soft);
  border-radius: 24px;
  margin: 24px 0;
  text-align: center;
  display: flex;
  flex-direction: row;
}

.container-video {
  position: relative;
}

.content-card-video {
  text-align: left;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
}

.content-button-view-case {
  height: 100%;
  align-content: flex-end;
  margin-bottom: 24px;
}

.card-video {
  width: 190px;
  border: none;
  border-radius: 20px;
  height: 240px;
}

.description-card-video {
  font-size: 14px;
}

.company-name-card-video {
  margin-top: 24px;
  font-size: 18px;
  font-weight: bold;
}

.segment-card-video {
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: bold;
}

.share-video-icon {
  display: block;
  cursor: pointer;
}

.content-share-video {
  position: absolute;
  right: 16px;
  bottom: 12px;
  border: 0;
  padding: 0;
  background: transparent;
  display: block;
}

.content-share-video:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
  border-radius: 8px;
}

.share-feedback-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(12px);
  background-color: rgba(15, 31, 75, 0.96);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.share-feedback-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.uf-card-video {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.background-form {
  position: absolute;
  object-fit: cover;
  z-index: 0;
  right: 0;
}

.background-form-mobile {
  display: none;
}

.background-form {
  display: block;
}

.container-footer {
  background-color: var(--neutral-color-600);
}

.content-footer {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}

.content-links {
  display: flex;
  gap: 40px;
  color: var(--neutral-color-text-gray);
}

.container-social-media {
  display: flex;
  gap: 16px;
}

.content-social-media {
  width: 36px;
  height: 36px;
  background-color: var(--neutral-color-400);
  padding-top: 5px;
  place-content: center;
  text-align-last: center;
  border-radius: 8px;
}

.container-footer>hr {
  border-top: 1px solid var(--neutral-color-600);
}

.copy-right {
  color: var(--neutral-color-text-gray);
  font-weight: 400;
  text-align: center;
  margin-top: 32px;
}

.header-home-mobile {
  width: 100%;
  display: none;
  justify-content: space-between;
}

.container-card-integration {
  max-width: 388px;
  border-radius: 24px;
  padding: 24px;
  background-color: var(--color-background-soft);
  box-shadow: 3px 3px 20px #00000038;
}

.content-card-infos {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 12px;
}

.segment-card-integration {
  background-color: var(--color-primary-light);
  color: var(--color-background-base);
  width: max-content;
  border-radius: 6px;
  padding: 3px;
  font-size: 10px;
}

.description-card-integration {
  font-size: 14px;
}

.container-card-events {
  max-width: 388px;
  border-radius: 24px;
  padding: 24px;
  background-color: var(--color-background-soft);
  box-shadow: 3px 3px 20px #00000038;
}

.container-card-events .content-card-infos {
  align-items: flex-start;
}

.city-card-events {
  background-color: var(--color-primary-light);
  color: var(--color-background-base);
  width: max-content;
  border-radius: 6px;
  padding: 3px;
  font-size: 10px;
}

.content-date-card-events {
  width: 72px;
  min-width: 72px;
  height: 72px;
  min-height: 72px;
  flex-shrink: 0;
  border-radius: 20px;
  background-color: var(--color-primary-base);
  align-content: center;
  text-align: center;
  color: var(--color-background-base);
}

.content-text-card-events {
  flex: 1;
  min-width: 0;
}

.content-date-card-events>span {
  font-size: 21px;
  font-weight: bold;
}

.content-date-card-events>p {
  font-size: 10px;
  margin-top: -6px;
}

.description-card-events {
  font-size: 14px;
}

.accordion-about-container {
  width: 100%;
  max-width: 1220px;
  margin: auto;
}

.accordion-about-item {
  border-bottom: 1px solid var(--neutral-color-600);
}

.accordion-about-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  outline: none;
}

.accordion-about-title {
  font-weight: 700;
  color: var(--color-text-primary);
}

.accordion-about-icon {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--neutral-color-900);
  font-size: 60px;
  font-weight: 100;
  transition: transform 0.3s ease;
}

.accordion-about-icon::before {
  content: '+';
  position: absolute;
}

.accordion-about-item.active .accordion-about-icon {
  transform: rotate(45deg);
}

.accordion-about-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.accordion-about-content p {
  margin: 0;
  padding-bottom: 30px;
  color: var(--color-text-primary);
}

.accordion-about-item.active .accordion-about-content {
  max-height: 200px;
}

.color-text-menu-fixed ul li a {
  color: #000 !important;
}

.color-text-menu-fixed-dark ul li a {
  color: #fff !important;
}

@media (max-width: 768px) {
  .header-container {
    padding: 0;
  }

  .menu-toggle {
    display: flex;
    background-color: transparent;
  }

  .logo-desktop {
    display: none !important;
  }

  .logo-desktop-menu-fixed {
    display: none !important;
  }

  .logo>img {
    width: 120px;
    height: 30px;
  }

  .header-home {
    box-shadow: inset 6px 62px 20px 0px #3341554f;
  }

  .header-home-mobile {
    display: flex;
    align-items: center;
  }

  .main-menu {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto !important;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #0F172A;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    padding: 100px 32px 40px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    overflow-y: auto;
    display: block !important;
    flex: none;
    justify-content: flex-start;
  }

  .main-menu.active {
    right: 0;
  }

  .menu-list {
    flex-direction: column;
    padding: 0;
  }

  .menu-list ul,
  .menu-list-dark ul {
    flex-direction: column;
    gap: 0;
    margin: 0 0 40px;
  }

  .menu-list ul li,
  .menu-list-dark ul li {
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-list ul li a,
  .menu-list-dark ul li a {
    display: block;
    padding: 16px 0;
    color: #FFFFFF !important;
    font-size: 18px;
  }

  .header-actions {
    display: none;
  }

  .background-form-mobile {
    display: block;
    width: 100%;
    position: absolute;
  }

  .background-form {
    display: none;
  }

  .content-form {
    margin: 0;
    border-radius: 40px;
    width: 100%;
    padding: 80px 32px;
  }

  .content-form>form {
    grid-template-columns: 1fr;
  }

  .button-action-form {
    width: stretch;
  }

  .form {
    padding: 360px 24px 0 24px;
    background-color: transparent !important;
  }

  .container-footer {
    margin-top: -44px;
    padding: 630px 24px 44px 24px;
  }

  .content-footer {
    flex-direction: column;
    padding-bottom: 32px;
  }

  .content-footer>img {
    display: none;
  }

  .content-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .container-social-media {
    margin-top: 32px;
    justify-content: center;
  }

  .form-background {
    background-color: transparent;
  }

  .card-video {
    width: 160px;
  }

  .header-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .header-actions-mobile .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .header-actions-mobile .btn-outline {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
  }

  .header-actions-mobile .btn-outline-dark {
    background: transparent;
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
  }

  .header-actions-mobile .btn-primary {
    background: #FACC15;
    color: #0F172A;
    border: none;
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }
}

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

.header-text {
  text-align: center;
  margin-bottom: 40px;
  z-index: 10;
}

.header-text h1 {
  color: #212529;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px 0;
  letter-spacing: -0.5px;
}

.header-text p {
  color: #6c757d;
  font-size: 15px;
  margin: 0 auto;
  max-width: 400px;
  line-height: 1.5;
}

.alert-success {
  display: flex;
  align-items: center;
  background-color: #EBFFF3;
  border-left: 4px solid #367A51;
  border-radius: 4px;
  padding: 14px 20px;
  width: 100%;
  max-width: 800px;
  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 26px;
}

.alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.alert-icon svg {
  width: 22px;
  height: 22px;
  color: #000;
}

.alert-message {
  color: #000;
  font-size: 15px;
}

.whatsapp-flutuante {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-flutuante svg {
  width: 35px;
  height: 35px;
  fill: currentColor;
}

.whatsapp-flutuante:hover {
  transform: scale(1.1);
  color: white;
}

.whatsapp-icon {
  width: 50px;
  margin-left: 3px;
}

.center-carousel {
  display: flex;
  justify-content: center;
}

@media (max-width: 768px) {
  .logo-desktop {
    display: none;
  }

  .header-container .main-menu,
  .header-container .header-actions {
    display: none;
  }

  .header-home-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 24px;
    position: relative;
    z-index: 1001;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
  }

  .menu-toggle img {
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 769px) {
  .header-home-mobile {
    display: none;
  }

  .menu-toggle {
    display: none;
  }
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

.site-footer {
  background: #d2d5e3;
  color: #94A3B8;
  padding-top: 20px;
  display: flex;
  justify-content: center;
}

/* Regra padrão (desktop) */
.container-footer {
  max-width: 1200px;
  padding: 24px 20px;
}

@media (min-width: 1600px) {
  .container-footer {
    margin: auto;
  }
}

@media (max-width: 768px) {
  .container-footer {
    margin-top: -44px;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  width: 140px;
  height: auto;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

.footer-title {
  color: #161616;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #2C2E36;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #0a0a0a;
  padding-left: 5px;
}

.footer-divider {
  border: none;
  height: 1px;
  background: #1E293B;
  margin: 30px 0 20px;
}

.copy-right {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #64748B;
  margin: 0;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .footer-col-brand {
    grid-column: span 1;
  }
}

.btn-mobile-only {
    display: none !important;
 }


@media (max-width: 768px) {
  .btn-mobile-only {
    display: block !important;
  }
	
  .site-footer {
    padding: 40px 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 30px;
  }

  .footer-col-brand {
    text-align: center;
    align-items: center;
  }

  .footer-title {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .footer-links a:hover {
    padding-left: 0;
  }

  .copy-right {
    font-size: 12px;
  }
}
