:root {
  --primary-dark: #081040;
  --primary-light: #262a40;
  --accent-blue: #54678c;
  --accent-purple: #3a4a6a;
  --text-primary: #f0f6fc;
  --text-secondary: #a5b1c2;
  --border-color: rgba(84, 103, 140, 0.2);
  --color-darkest: #081040;
  --color-dark: #151826;
  --color-medium-dark: #262a40;
  --color-medium: #364a73;
  --color-light: #54678c;
  --text-primary: #f0f6fc;
  --text-secondary: #a5b1c2;
  --border-color: rgba(84, 103, 140, 0.3);
}
/* Ajustes Responsivos no HTMK */
@media screen and (max-width: 1024px) {
  html {
    font-size: 95%;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 90%;
  }
}

@media screen and (max-width: 480px) {
  html {
    font-size: 85%;
  }
}
#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #364a73;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 30%;
}
body {
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*Navbar start */
nav {
  display: flex;
  box-shadow: 2px 5px 5px #333;
  background: #03588c;
  animation: gradient 10s ease infinite;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.logo-container {
  flex: 1 1 auto;
  margin: 40px;
}
.logo-container span {
  font-size: 70px;
  font-family: "Bruno Ace", sans-serif;
  font-weight: 600;
  text-shadow: 3px 6px 6px #333;
  color: lightgray;
}
.nav-container {
  flex: 1 1 auto;
  margin: 40px;
}
.nav-container ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}
.nav-container li {
  margin: 30px;
}
.nav-container li span {
  margin-right: 10px;
}
.nav-container a {
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-family: "Iceland", sans-serif;
  font-size: 30px;
  transition: opacity 0.3s;
}
.nav-item {
  transition: opacity 0.3s;
  position: relative;
}
.nav-item:hover {
  opacity: 0.8;
}
.nav-item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s;
}
.nav-item:hover::after {
  width: 100%;
}
.hamburguer-menu {
  display: none;
  cursor: pointer;
  padding: 15px;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 100;
  background: transparent;
  border: none;
}
.hamburguer-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}
/*media query for tablets */
@media screen and (max-width: 1024px) {
  nav {
    flex-direction: column;
    align-items: center;
  }
  .logo-container {
    margin: 20px;
  }
  .logo-container span {
    font-size: 50px;
  }
  .nav-container {
    width: 100%;
    margin: 0px;
  }
  .nav-container ul {
    justify-content: space-around;
    padding: 0 10px 20px 10px;
  }
  .nav-container li {
    margin: 15px;
  }
  .nav-container a {
    font-size: 25px;
  }
}
/* media query for mobile devices */
@media screen and (max-width: 767px) {
  .hamburguer-menu {
    display: block;
  }
  .hamburguer-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
  }
  .hamburguer-menu.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburguer-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
  }
  .logo-container {
    margin: 20px 0;
    text-align: center;
    width: 100%;
  }
  .logo-container span {
    font-size: 40px;
  }
  .nav-container {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
    margin: 0;
    width: 100%;
    z-index: 100;
  }
  .nav-container.active {
    height: auto;
  }
  .nav-container ul {
    flex-direction: column;
    width: 100%;
    padding: 0;
  }
  .nav-container li {
    margin: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .nav-container a {
    font-size: 22px;
    display: block;
    width: 100%;
  }
  .nav-item::after {
    display: none;
  }
}

/* media query for smaller devices */

@media screen and (max-width: 480px) {
  .logo-container span {
    font-size: 30px;
  }
  .hamburguer-menu {
    top: 15px;
    right: 15px;
  }
}
/* Header Start */
.header-container {
  width: 100%;
  height: 500px;
  background: linear-gradient(45deg, #151826, #023859, #0455bf, #0487d9);
  background-size: 300% 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  animation: gradient 10s ease infinite;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
.header-container > h2 {
  font-family: "Bruno Ace", sans-serif;
  font-size: 3.5rem;
  text-shadow: 3px 5px 5px #000;
}
/* === HEADER RESPONSIVENESS === */
@media screen and (max-width: 1024px) {
  .header-container {
    height: 400px;
  }

  .header-container > h2 {
    font-size: 2.8rem;
    padding: 0 20px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .header-container {
    height: 350px;
  }

  .header-container > h2 {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 480px) {
  .header-container {
    height: 300px;
  }

  .header-container > h2 {
    font-size: 1.8rem;
  }
}
/*Header End */

/*Opções de Serviços Start*/

.section-container {
  max-width: 1800px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.section-header h1 {
  font-size: 2.9rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  position: relative;
  font-family: "Bruno Ace", sans-serif;
}
.section-header p {
  color: var(--text-secondary);
  font-size: 1.7rem;
  max-width: 700px;
  margin: 0 auto;
  font-family: "Bruno Ace", sans-serif;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.service-card {
  background-color: var(--primary-light);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  border-color: var(--accent-blue);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
}

ul {
  font-weight: 500;
  font-family: "Bruno Ace", sans-serif;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    var(--accent-blue) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  opacity: 0.1;
  right: -75px;
  bottom: -75px;
  border-radius: 50%;
  z-index: 0;
}
.card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  font-family: "Bruno Ace", sans-serif;
  color: #fff;
  text-shadow: 3px 5px 5px #000;
}

.card-description {
  margin-bottom: 25px;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
  font-family: "Bruno Ace", sans-serif;
}

.price-container {
  display: flex;
  flex-direction: column;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.price {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
  font-family: "Bruno Ace", sans-serif;
  color: #fff;
}

.price-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-family: "Bruno Ace", sans-serif;
}

.tech-decoration {
  position: absolute;
  opacity: 0.05;
  pointer-events: none;
}

.circuit-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(
      circle at 25px 25px,
      var(--accent-blue) 2px,
      transparent 0
    ),
    linear-gradient(
      to right,
      transparent 24px,
      var(--accent-blue) 1px,
      transparent 0
    ),
    linear-gradient(
      to bottom,
      transparent 24px,
      var(--accent-blue) 1px,
      transparent 0
    );
  background-size: 50px 50px;
  opacity: 0.03;
  z-index: 0;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 25px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  font-family: "Iceland", sans-serif;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(88, 166, 255, 0.4);
}

/* === SERVICES SECTION RESPONSIVENESS === */
@media screen and (max-width: 1024px) {
  .section-container {
    padding: 0 20px;
  }

  .section-header h1 {
    font-size: 2.5rem;
  }

  .section-header p {
    font-size: 1.5rem;
  }

  .grid-container {
    gap: 25px;
  }

  .service-card {
    padding: 25px;
    min-height: 450px;
  }
}

@media screen and (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }

  .section-header h1 {
    font-size: 2.2rem;
  }

  .section-header p {
    font-size: 1.3rem;
    padding: 0 15px;
  }

  .grid-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .service-card {
    padding: 20px;
    min-height: 420px;
  }

  .card-title {
    font-size: 1.3rem;
  }

  .card-description {
    font-size: 0.9rem;
  }

  .price {
    font-size: 1.6rem;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 480px) {
  .section-header h1 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1.1rem;
  }

  .grid-container {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 15px;
    min-height: auto;
  }

  .card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .service-card ul {
    margin-left: 15px;
  }

  .price {
    font-size: 1.5rem;
  }

  .price-note {
    font-size: 0.8rem;
  }
}
/*Opções de Serviços End */

/* Formas de Pagamento Start */
.payment-container {
  max-width: 1400px;
  margin: 0 auto;
}
.payment-section {
  background-color: var(--accent-purple);
  border-radius: 12px;
  padding: 50px 40px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.section-title {
  font-size: 2.2rem;
  margin-bottom: 15px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  background-clip: text;
  position: relative;
  color: #fff;
  font-family: sans-serif;
  text-shadow: 3px 5px 5px #000;
}
.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}
.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}
.payment-card {
  background-color: var(--primary-light);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}
.payment-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
}
.payment-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.payment-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--text-primary);
}
.payment-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  font-family: sans-serif;
  color: #fff;
}
.payment-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-family: sans-serif;
}
.circuit-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(
      circle at 25px 25px,
      var(--accent-blue) 1px,
      transparent 0
    ),
    linear-gradient(
      to right,
      transparent 24px,
      var(--accent-blue) 0.5px,
      transparent 0
    ),
    linear-gradient(
      to bottom,
      transparent 24px,
      var(--accent-blue) 0.5px,
      transparent 0
    );
  background-size: 50px 50px;
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}
.cta-container {
  text-align: center;
  margin-top: 40px;
}

.contact-button {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-blue), var(--primary-dark));
  color: white;
  padding: 14px 35px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: sans-serif;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(84, 103, 140, 0.8);
}

/* === PAYMENT SECTION RESPONSIVENESS === */
@media screen and (max-width: 1024px) {
  .payment-container {
    padding: 0 20px;
  }

  .payment-section {
    padding: 40px 30px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .payment-options {
    gap: 25px;
  }
}

@media screen and (max-width: 768px) {
  .payment-section {
    padding: 30px 20px;
    margin-top: 40px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .payment-options {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

  .payment-card {
    padding: 20px;
  }

  .payment-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .payment-icon svg {
    width: 25px;
    height: 25px;
  }

  .payment-title {
    font-size: 1.2rem;
  }

  .contact-button {
    padding: 12px 25px;
  }
}

@media screen and (max-width: 480px) {
  .payment-section {
    padding: 25px 15px;
    margin-top: 30px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .payment-options {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .payment-card {
    padding: 15px;
  }

  .payment-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .payment-description {
    font-size: 0.9rem;
  }

  .cta-container {
    margin-top: 25px;
  }

  .contact-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/*Formas de Pagamento End */

/* Process Start */

.carousel-title {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.9);
  padding: 30px;
  color: #fff;
  border-radius: 10px;
  background-color: #023859;
  font-family: "Bruno Ace", sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-top: 50px;
  text-shadow: 3px 5px 5px #333;
  text-align: center;
}
.carousel-inner {
  margin-top: 100px;
  border-radius: 30px;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.9);
}
.carousel-item {
  background: linear-gradient(45deg, var(--accent-blue), var(--accent-purple));
  height: 800px;
  position: relative;
}
.carousel-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 15%;
}
.carousel-content-h3 {
  font-size: 2.5rem;
  color: #fff;
  font-family: "Bruno Ace", sans-serif;
  font-weight: 600;
  text-shadow: 3px 5px 5px #333;
  margin-bottom: 20px;
}
.carousel-content-p {
  color: var(--text-secondary);
  font-size: 1.5rem;
  margin-top: 20px;
  font-family: "Bruno Ace", sans-serif;
  font-weight: 800;
}
.cta-button2 {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 25px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  font-family: "Iceland", sans-serif;
  padding: 40px;
}
.cta-button2:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(88, 166, 255, 0.4);
}
.cta-button2 a {
  color: #fff;
  text-decoration: none;
  font-size: 1.9rem;
}
/* === PROCESS CAROUSEL RESPONSIVENESS === */
@media screen and (max-width: 1024px) {
  .carousel-title {
    font-size: 3rem;
    padding: 25px;
    margin-top: 40px;
  }

  .carousel-inner {
    margin-top: 70px;
  }

  .carousel-item {
    height: 700px;
  }

  .carousel-content-h3 {
    font-size: 2.2rem;
  }

  .carousel-content-p {
    font-size: 1.3rem;
  }

  .carousel-content img {
    width: 250px;
    height: 250px;
  }
}

@media screen and (max-width: 768px) {
  .carousel-title {
    font-size: 2.5rem;
    padding: 20px;
    margin-top: 30px;
  }

  .carousel-inner {
    margin-top: 50px;
  }

  .carousel-item {
    height: 600px;
  }

  .carousel-content {
    padding: 0 10%;
  }

  .carousel-content-h3 {
    font-size: 1.8rem;
  }

  .carousel-content-p {
    font-size: 1.1rem;
  }

  .carousel-content img {
    width: 200px;
    height: 200px;
  }

  .cta-button2 {
    padding: 30px;
  }

  .cta-button2 a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 480px) {
  .carousel-title {
    font-size: 2rem;
    padding: 15px;
    margin-top: 25px;
  }

  .carousel-inner {
    margin-top: 30px;
  }

  .carousel-item {
    height: 550px;
  }

  .carousel-content {
    padding: 0 5%;
  }

  .carousel-content-h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .carousel-content-p {
    font-size: 1rem;
    margin-top: 15px;
  }

  .carousel-content img {
    width: 150px;
    height: 150px;
  }

  .cta-button2 {
    padding: 20px;
    margin-top: 15px;
  }

  .cta-button2 a {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 375px) {
  .carousel-item {
    height: 600px;
  }

  .carousel-content-h3 {
    font-size: 1.3rem;
  }

  .carousel-content-p {
    font-size: 0.9rem;
  }

  .carousel-content img {
    width: 120px;
    height: 120px;
  }
}
/*FOoter Start */

.footer {
  margin-top: 60px;
  background: linear-gradient(
    180deg,
    var(--color-medium-dark) 0%,
    var(--color-darkest) 100%
  );
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  font-family: sans-serif;
}
.footer-top {
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}
.footer-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}
.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 10px;
  font-family: sans-serif;
}
.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: linear-gradient(
    90deg,
    var(--color-medium),
    var(--color-light)
  );
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s esae, transform 0.3s ease;
  display: inline-block;
  position: relative;
  padding-left: 18px;
  font-family: sans-serif;
}
.footer-links a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--color-light);
  transform: translateY(-50%);
  transition: width 0.3s ease;
}
.footer-links a:hover {
  color: var(--text-primary);
  transform: translateX(5px);
}
.footer-links a:hover::before {
  width: 12px;
  background-color: var(--text-primary);
}
.contact-info {
  list-style: none;
}
.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}
.contact-info li svg {
  margin-right: 10px;
  min-width: 20px;
  fill: var(--color-light);
}
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-medium-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}
.social-link:hover {
  background-color: var(--color-medium);
  transform: translateY(-3px);
}
.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--text-secondary);
}
.footer-bottom {
  background-color: rgba(8, 16, 64, 0.8);
  padding: 20px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(84, 103, 140, 0.1);
}
.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.copyright {
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.powered-by {
  display: flex;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.powered-by span {
  font-weight: 600;
  background: linear-gradient(90deg, var(--color-medium), var(--color-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 5px;
}
.circuit-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(
      circle at 25px 25px,
      var(--color-light) 1px,
      transparent 0
    ),
    linear-gradient(
      to right,
      transparent 24px,
      var(--color-light) 0.5px,
      transparent 0
    ),
    linear-gradient(
      to bottom,
      transparent 24px,
      var(--color-light) 0.5px,
      transparent 0
    );
  background-size: 50px 50px;
  opacity: 0.03;
  z-index: 1;
  pointer-events: none;
}
.footer-brand {
  margin-bottom: 20px;
}

.footer-brand img {
  max-width: 150px;
  height: auto;
}

.footer-description {
  color: var(--text-secondary);
  margin-bottom: 25px;
  font-size: 0.95rem;
  max-width: 90%;
}

/* Tech pulse animation for the powered by text */
@keyframes techPulse {
  0% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

.tech-pulse {
  animation: techPulse 2s infinite;
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--color-light);
  border-radius: 50%;
  margin-right: 10px;
}

@media screen and (max-width: 1024px) {
  .footer-top {
    padding: 50px 0 30px;
  }

  .footer-grid {
    gap: 30px;
  }
}

@media screen and (max-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .footer-description {
    max-width: 100%;
  }

  .social-link {
    width: 32px;
    height: 32px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 480px) {
  .footer-top {
    padding: 40px 0 25px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand h3 {
    text-align: center;
  }

  .footer-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .social-links {
    justify-content: center;
  }

  .footer-column h4 {
    text-align: center;
  }

  .footer-links {
    text-align: center;
  }

  .contact-info {
    max-width: 280px;
    margin: 0 auto;
  }

  .footer-bottom {
    padding: 15px 0;
  }

  .copyright,
  .powered-by {
    font-size: 0.8rem;
  }
}
/* Footer End */
/* Process End */
/* === GO TO TOP BUTTON RESPONSIVENESS === */
@media screen and (max-width: 480px) {
  #myBtn {
    bottom: 15px;
    right: 15px;
    font-size: 16px;
    padding: 10px;
  }
}
