/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4rem;

  /*========== Colors ==========*/
  /* Color mode HSL(hue, saturation, lightness) */
  --primary-color: #00A651;
  --secondary-color: #0054A6;
  --gradient-color: linear-gradient(135deg, #00A651 0%, #0054A6 100%);
  --title-color: #1B2B3A;
  --text-color: #4A5568;
  --text-color-light: #69707A;
  --body-color: #FFFFFF;
  --container-color: #F4F6FB;
  --border-color: #E2E8F0;
  --white-color: #FFFFFF;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);

  /*========== Font and typography ==========*/
  --body-font: 'Inter', sans-serif;
  --title-font: 'Poppins', sans-serif;
  --biggest-font-size: 3rem;
  --h1-font-size: 2.25rem;
  --h2-font-size: 1.75rem;
  --h3-font-size: 1.25rem;
  --normal-font-size: 1rem;
  --small-font-size: 0.875rem;
  --smaller-font-size: 0.813rem;

  /*========== Font weight ==========*/
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
  --z-modal: 1000;
}

/* Responsive typography */
@media screen and (max-width: 1024px) {
  :root {
    --biggest-font-size: 2.25rem;
    --h1-font-size: 1.75rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: 0.938rem;
    --small-font-size: 0.813rem;
    --smaller-font-size: 0.75rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--text-color);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: var(--font-semi-bold);
  line-height: 1.2;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: var(--body-font);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.grid {
  display: grid;
  gap: 2rem;
}

.section {
  padding: 5rem 0 4rem;
}

.section--gray {
  background-color: var(--container-color);
}

.section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.section__title {
  font-size: var(--h1-font-size);
  margin-bottom: 0.75rem;
  color: var(--title-color);
}

.section__subtitle {
  font-size: var(--h3-font-size);
  color: var(--text-color-light);
  font-weight: var(--font-regular);
  max-width: 600px;
  margin: 0 auto;
}

/*=============== BUTTONS ===============*/
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-align: center;
  font-family: var(--title-font);
}

.button--primary {
  background: var(--gradient-color);
  color: var(--white-color);
  box-shadow: 0 4px 15px rgba(0, 166, 81, 0.3);
}

.button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 166, 81, 0.4);
}

.button--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.button--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
  transform: translateY(-3px);
}

.button--block {
  width: 100%;
}

/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
  background-color: var(--white-color);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 40px;
  width: auto;
}

.nav__list {
  display: flex;
  align-items: center;
  column-gap: 2rem;
}

.nav__link {
  color: var(--text-color);
  font-weight: var(--font-medium);
  font-size: var(--normal-font-size);
  transition: color 0.3s;
}

.nav__link:hover {
  color: var(--primary-color);
}

.nav__cta {
  background: var(--gradient-color);
  color: var(--white-color);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: var(--font-semi-bold);
}

.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.nav__toggle,
.nav__close {
  display: none;
  font-size: 1.5rem;
  color: var(--title-color);
  cursor: pointer;
}

/* Active link */
.active-link {
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
}

/*=============== WHATSAPP FLUTUANTE ===============*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: var(--z-tooltip);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/*=============== HERO ===============*/
.hero {
  padding-top: calc(var(--header-height) + 3rem);
  padding-bottom: 4rem;
}

.hero__container {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 4rem;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__title {
  font-size: var(--biggest-font-size);
  color: var(--title-color);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero__subtitle {
  font-size: var(--h3-font-size);
  color: var(--text-color);
  font-weight: var(--font-medium);
  line-height: 1.5;
}

.hero__description {
  font-size: var(--normal-font-size);
  color: var(--text-color-light);
  line-height: 1.6;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background-color: var(--container-color);
  border-radius: 0.5rem;
  margin-top: 1rem;
}

.hero__trust svg {
  color: var(--primary-color);
  flex-shrink: 0;
}

.hero__trust span {
  font-size: var(--small-font-size);
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__image img {
  border-radius: 1rem;
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 550px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

/*=============== ABOUT / QUEM SOMOS ===============*/
.about__content {
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__description {
  font-size: var(--normal-font-size);
  line-height: 1.7;
  color: var(--text-color);
}

.about__image img {
  border-radius: 1rem;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.about__features {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.feature__card {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.feature__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-color);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
}

.feature__title {
  font-size: var(--h3-font-size);
  margin-bottom: 0.75rem;
  color: var(--title-color);
}

.feature__description {
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.6;
}

/*=============== SOLUTIONS / SOLUÇÕES ===============*/
.solutions__grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.solution__card {
  background-color: var(--white-color);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.solution__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.solution__icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(0, 166, 81, 0.1) 0%, rgba(0, 84, 166, 0.1) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.solution__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 0.5rem;
}

.solution__description {
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.6;
  flex-grow: 1;
}

.solution__link {
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
  font-size: var(--small-font-size);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.solution__link:hover {
  gap: 0.75rem;
  color: var(--secondary-color);
}

.other-services {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.other-services__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 1rem;
  text-align: center;
}

.other-services__list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.other-services__list li {
  padding: 0.75rem 1.5rem;
  background-color: var(--container-color);
  border-radius: 0.5rem;
  font-size: var(--small-font-size);
  color: var(--text-color);
  font-weight: var(--font-medium);
}

/*=============== ERP ===============*/
.erp__content {
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.erp__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.erp__description {
  font-size: var(--normal-font-size);
  line-height: 1.7;
  color: var(--text-color);
}

.erp__image img {
  border-radius: 1rem;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}

.erp__segments {
  background-color: var(--white-color);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.erp__segments-title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
  text-align: center;
  margin-bottom: 2rem;
}

.erp__segments-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.segment__item {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(0, 166, 81, 0.05) 0%, rgba(0, 84, 166, 0.05) 100%);
  border-radius: 0.5rem;
  text-align: center;
  font-size: var(--small-font-size);
  color: var(--text-color);
  font-weight: var(--font-medium);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.segment__item:hover {
  background: var(--gradient-color);
  color: var(--white-color);
  border-color: transparent;
  transform: translateY(-3px);
}

/*=============== PROCESS / COMO FUNCIONA ===============*/
.process__steps {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

.step__number {
  width: 70px;
  height: 70px;
  background: var(--gradient-color);
  color: var(--white-color);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--h2-font-size);
  font-weight: var(--font-bold);
  font-family: var(--title-font);
}

.step__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 0.25rem;
}

.step__description {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.6;
}

/*=============== STATS / NÚMEROS ===============*/
.stats__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat__card {
  background-color: var(--white-color);
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.stat__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.stat__number {
  font-size: 3rem;
  font-weight: var(--font-bold);
  background: var(--gradient-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-family: var(--title-font);
}

.stat__label {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  margin-bottom: 0.5rem;
}

.stat__detail {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
}

/*=============== CERTIFICATE / CERTIFICADO DIGITAL ===============*/
.certificate__container {
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.certificate__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.certificate__title {
  font-size: var(--h2-font-size);
  color: var(--title-color);
}

.certificate__description {
  font-size: var(--normal-font-size);
  line-height: 1.7;
  color: var(--text-color);
}

.certificate__image img {
  border-radius: 1rem;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}

/*=============== COVERAGE / REGIÃO DE ATENDIMENTO ===============*/
.coverage__content {
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.coverage__description {
  font-size: var(--normal-font-size);
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.coverage__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.coverage__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: var(--normal-font-size);
  color: var(--text-color);
  font-weight: var(--font-medium);
}

.coverage__list li::before {
  content: "&#10003;";
  width: 24px;
  height: 24px;
  background: var(--gradient-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-bold);
  flex-shrink: 0;
}

.coverage__note {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  font-style: italic;
  padding: 1rem;
  background-color: var(--container-color);
  border-radius: 0.5rem;
}

.coverage__map {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 400px;
}

.coverage__map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
}

/*=============== FAQ ===============*/
.faq__list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  background-color: var(--white-color);
  border-radius: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq__question {
  width: 100%;
  padding: 1.5rem 2rem;
  background-color: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: var(--normal-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
  text-align: left;
  transition: all 0.3s ease;
}

.faq__question:hover {
  color: var(--primary-color);
}

.faq__icon {
  flex-shrink: 0;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 500px;
  padding: 0 2rem 1.5rem;
}

.faq__answer p {
  font-size: var(--normal-font-size);
  line-height: 1.7;
  color: var(--text-color);
}

/*=============== FORM SECTION / FORMULÁRIO ===============*/
.form-section__note {
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white-color);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form__group--full {
  grid-column: 1 / -1;
}

.form__label {
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.form__input,
.form__textarea {
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: var(--normal-font-size);
  font-family: var(--body-font);
  color: var(--text-color);
  transition: all 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
}

.form__textarea {
  resize: vertical;
  min-height: 120px;
}

.form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--small-font-size);
  color: var(--text-color);
  cursor: pointer;
}

.form__checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary-color);
}

.form__checkbox a {
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
  text-decoration: underline;
}

.form__checkbox a:hover {
  color: var(--secondary-color);
}

.form__message {
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: var(--small-font-size);
  text-align: center;
  margin-top: 1rem;
  display: none;
}

.form__message.success {
  background-color: #D1FAE5;
  color: #065F46;
  border: 1px solid #10B981;
  display: block;
}

.form__message.error {
  background-color: #FEE2E2;
  color: #991B1B;
  border: 1px solid #EF4444;
  display: block;
}

/*=============== CONTACT / CONTATO ===============*/
.contact__grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact__card {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.3s ease;
}

.contact__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.contact__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(0, 166, 81, 0.1) 0%, rgba(0, 84, 166, 0.1) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.contact__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 0.75rem;
}

.contact__detail {
  font-size: var(--small-font-size);
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact__link {
  color: var(--primary-color);
  font-weight: var(--font-semi-bold);
  font-size: var(--small-font-size);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact__link:hover {
  color: var(--secondary-color);
  gap: 0.75rem;
}

.social {
  text-align: center;
  padding: 2rem;
  background-color: var(--white-color);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.social__title {
  font-size: var(--h3-font-size);
  color: var(--title-color);
  margin-bottom: 1.5rem;
}

.social__links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.social__link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(0, 166, 81, 0.1) 0%, rgba(0, 84, 166, 0.1) 100%);
  border-radius: 0.5rem;
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: all 0.3s ease;
}

.social__link:hover {
  background: var(--gradient-color);
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.social__link svg {
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.social__link:hover svg {
  color: var(--white-color);
}

/*=============== FOOTER ===============*/
.footer {
  background-color: var(--title-color);
  color: var(--white-color);
  padding: 3rem 0 1.5rem;
}

.footer__content {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo {
  width: 200px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer__description {
  font-size: var(--small-font-size);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer__title {
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
  color: var(--white-color);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__links li a {
  font-size: var(--small-font-size);
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer__links li a:hover {
  color: var(--primary-color);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer__copy {
  font-size: var(--smaller-font-size);
  color: rgba(255, 255, 255, 0.6);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: 0.6rem;
  background-color: var(--container-color);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-color);
  border-radius: 0.5rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--secondary-color);
}

/*=============== RESPONSIVE ===============*/
/* For large devices */
@media screen and (max-width: 1024px) {
  .hero__container,
  .about__content,
  .erp__content,
  .certificate__container,
  .coverage__content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__image,
  .about__image,
  .erp__image,
  .certificate__image {
    order: -1;
  }

  .about__features {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
  }

  .step__number {
    width: 60px;
    height: 60px;
    font-size: var(--h3-font-size);
  }
}

/* For medium devices */
@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: var(--white-color);
    box-shadow: -2px 0 24px rgba(0, 0, 0, 0.15);
    padding: 5rem 2rem 3rem;
    transition: right 0.4s;
  }

  .nav__menu.show-menu {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    row-gap: 2rem;
    align-items: flex-start;
  }

  .nav__toggle,
  .nav__close {
    display: block;
  }

  .nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
  }

  .hero__buttons {
    flex-direction: column;
  }

  .about__features,
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .solutions__grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .erp__segments-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

/* For small devices */
@media screen and (max-width: 350px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .button {
    padding: 0.875rem 1.5rem;
    font-size: var(--small-font-size);
  }

  .contact-form {
    padding: 1.5rem 1rem;
  }
}
