@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

.header {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}

.navbar {
  position: fixed;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35), inset 0 0 0 0px rgba(255, 255, 255, 0.08);
}

.nav-menu {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
  letter-spacing: 1px;
}
.nav-menu a {
  position: relative;
  color: #d6d9e0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.8;
  white-space: nowrap;
  padding: 10px 16px;
  display: inline-block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0);
  transition: all 0.1s ease;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}
.nav-menu a:hover {
  opacity: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}
.nav-menu a:hover::after {
  width: 15px;
}
.nav-menu a.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.15);
}

.cta-btn {
  white-space: nowrap;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f6f1d1;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(120deg, #91273A, #af5a6f, #ffba0a);
  background-size: 400% 400%;
  text-decoration: none;
  animation: gradient-move 6s linear infinite;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.cta-btn:hover {
  transform: translateY(-2px);
  animation-duration: 3s;
}

@keyframes scaleButton {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
.hamburger {
  display: none;
  position: relative;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  opacity: 0.9;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  top: 9px;
}
.hamburger span:nth-child(3) {
  bottom: 0;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 9px;
}

@media (max-width: 900px) {
  .navbar {
    width: -moz-fit-content;
    width: fit-content;
    max-width: 95vw;
    padding: 10px 14px;
    gap: 16px;
  }
  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.96);
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    width: -moz-max-content;
    width: max-content;
    border-radius: 20px;
    background: rgba(20, 20, 30, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
  }
  .cta-btn {
    display: none;
  }
  .hamburger {
    display: block;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: none;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 120px;
}

.background-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  --sx: 50%;
  --sy: 50%;
  --dx: 0px;
  --dy: 0px;
  background: radial-gradient(420px circle at var(--sx) var(--sy), rgba(255, 255, 255, 0.08), transparent 70%), radial-gradient(480px circle at calc(50% + var(--dx)) calc(50% + var(--dy)), #162c46, transparent 65%), linear-gradient(160deg, #151E3F, #34304b);
  will-change: transform;
  transition: none !important;
}

html, body {
  cursor: none;
}

a,
button,
[role=button],
*[onclick] {
  cursor: none !important;
}
a:hover, a:active, a:focus,
button:hover,
button:active,
button:focus,
[role=button]:hover,
[role=button]:active,
[role=button]:focus,
*[onclick]:hover,
*[onclick]:active,
*[onclick]:focus {
  cursor: none !important;
}

.background-layer::before {
  content: "";
  position: fixed;
  inset: -10%;
  pointer-events: none;
  mix-blend-mode: overlay;
  animation: silkFlow 18s linear infinite;
}

@keyframes silkFlow {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-2%, -2%);
  }
}
a, button {
  cursor: none;
}

.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
  transform: translate(-50%, -50%);
  transition: none !important;
  will-change: transform;
}

/* containers de estado */
.cursor-default,
.cursor-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: opacity 0.1s ease;
}

/* SVGs */
.cursor-default svg,
.cursor-link svg {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0 0 10px rgba(224, 161, 0, 0.45));
}

/* estado normal */
.cursor-default {
  opacity: 1;
}
.cursor-default svg {
  transform: rotate(-12deg);
}

/* estado link */
.custom-cursor.is-link .cursor-default {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
}
.custom-cursor.is-link .cursor-link {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* clique */
.custom-cursor.is-click {
  transform: translate(-50%, -50%) scale(0.9);
}

.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 10px;
  text-align: center;
}

.about-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 30px;
}
.about-content h1 {
  font-size: 18px;
  color: #f6f1d1;
  margin-bottom: -20px;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 800;
}
.about-content h2 {
  font-family: "Unna", serif;
  font-weight: 700;
  font-style: italic;
  font-size: 40px;
  color: #CE4760;
  margin-bottom: 0;
}
.about-content p {
  max-width: 370px;
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
  margin-top: -10px;
}
.about-content p b {
  color: #D3D0CB;
}
.about-content img {
  width: 150px;
  height: 150px;
  margin-top: -5px auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.about-content img:hover {
  filter: grayscale(0%);
}
.about-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 5px;
  color: #34304b;
  background-color: #f6f1d1;
  background-size: 20px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid #f6f1d1;
}
.about-content a:hover {
  border: 2px solid #f6f1d1;
  background-color: transparent;
  color: #f6f1d1;
}

.button-contact {
  margin-top: 5px;
}

@media (pointer: coarse) {
  html,
  body {
    cursor: auto;
  }
  a,
  button {
    cursor: pointer;
  }
  .custom-cursor {
    display: none;
  }
}
@media (max-width: 768px) {
  .about {
    flex-direction: column;
    text-align: center;
  }
  .about img {
    width: 60%;
    height: 60%;
  }
  .about .about-content h1 {
    font-size: 20px;
  }
  .about .about-content h2 {
    font-size: 25px;
  }
  .about .about-content p {
    max-width: 200px;
    text-align: justify;
  }
}
@media (max-width: 480px) {
  .about-content h1 {
    font-size: 20px;
  }
  .about-content h2 {
    font-size: 25px;
  }
  .about-content p {
    font-size: 12px;
    text-align: justify;
  }
}
.education h1 {
  font-size: 20px;
  color: #f6f1d1;
  margin: 20px 0;
  padding-top: 20px;
}
.education p {
  max-width: 500px;
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
  margin-top: -10px;
}
.education p b {
  color: #D3D0CB;
}

.carrossel {
  margin: 10px auto;
  width: 60%;
  border-radius: 10px;
  display: flex;
  overflow-x: auto;
}
.carrossel:hover .grupo {
  animation-play-state: paused;
  cursor: none;
}

.carrossel::-webkit-scrollbar {
  display: none;
}

.grupo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  animation: spin 50s linear infinite;
  padding-right: 1em;
}

.card {
  flex: 0 0 5em;
  height: 5em;
  padding: 1em;
  font-size: 20px;
  border-radius: 10px;
  text-align: center;
  align-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.card img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 0px;
}
.card p {
  font-size: 12px;
  color: #f6f1d1;
}

@keyframes spin {
  from {
    translate: 0;
  }
  to {
    translate: -100%;
  }
}
.services {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 10px;
  text-align: center;
}
.services p {
  max-width: 500px;
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
  margin-top: -10px;
}
.services p b {
  color: #D3D0CB;
}
.services p i {
  color: #e0a100;
}

.services-content h1 {
  font-size: 20px;
  color: #f6f1d1;
  margin: 20px 0;
  padding-top: 20px;
}
.services-content p {
  max-width: 500px;
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
  margin-top: -10px;
}
.services-content p b {
  color: #D3D0CB;
}
.services-content p i {
  color: #e0a100;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  overflow: visible;
}

.service-card {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 25px;
  width: calc(33.333% - 20px);
  min-width: 280px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.service-card h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 14px 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  color: #f6f1d1;
  border-radius: 999px;
  background: linear-gradient(120deg, #74446e, #DD7E8F, #8981D9);
  background-size: 400% 400%;
  text-decoration: none;
  animation: gradient-move 6s linear infinite;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.service-card p {
  margin-top: 5px;
  white-space: normal;
  text-align: start;
  width: 80%;
  font-size: 13px;
  line-height: 1.6;
  color: #a0a0a0;
}
.service-card p i {
  color: #DD7E8F;
}
.service-card p b {
  color: #D3D0CB;
}

@media (max-width: 768px) {
  .service-card {
    width: 70%;
  }
}
.projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 10px;
  text-align: center;
}
.projects p {
  max-width: 500px;
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
  margin-top: -10px;
}
.projects p b {
  color: #D3D0CB;
}
.projects p i {
  color: #e0a100;
}

.projects-content h1 {
  font-size: 20px;
  color: #f6f1d1;
  margin: 20px 0;
  padding-top: 20px;
}
.projects-content p {
  max-width: 500px;
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
  margin-top: -10px;
}
.projects-content p b {
  color: #D3D0CB;
}
.projects-content p i {
  color: #e0a100;
}

.projects-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.projects-cards h2 {
  font-size: 25px;
  letter-spacing: 1px;
  text-align: start;
  text-transform: uppercase;
  background: linear-gradient(45deg, #91273A, #af5a6f, #ffba0a);
  background-size: 400% 100%;
  animation: gradient-move 6s linear infinite;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.projects-cards p {
  white-space: normal;
  font-size: 12px;
  line-height: 1.6;
  color: #a0a0a0;
}
.projects-cards p i {
  color: #DD7E8F;
}
.projects-cards p b {
  color: #D3D0CB;
}
.projects-cards h3 {
  font-size: 11px;
  letter-spacing: 1px;
  color: #f6f1d1;
  background-color: #CE4760;
  border-radius: 12px;
  padding: 6px 12px;
  text-transform: uppercase;
}
.projects-cards a {
  font-size: 12px;
  letter-spacing: 1px;
  border-color: #CE4760;
  border-width: 1px;
  border-style: solid;
  color: #f6f1d1;
  padding: 10px 10px;
}
.projects-cards a:hover {
  background-color: #CE4760;
  color: #f6f1d1;
}

.projects-card {
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 0px 0 0px 40px;
  justify-content: space-between;
  overflow: hidden;
  margin-bottom: 16px;
  width: 100%;
  max-width: 950px;
  border-width: 2px;
  border-style: solid;
  border-color: transparent;
  display: flex;
  align-items: stretch;
  gap: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.projects-card:hover {
  background: rgba(73, 67, 104, 0.4);
  transform: translateY(-5px);
  border-color: #4e47a1;
  border-width: 2px;
  border-style: solid;
}

.projects-info {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 36px 0;
  align-items: flex-start;
  gap: 5px;
}
.projects-info h2 {
  margin-bottom: 0px;
}
.projects-info p {
  width: 100%;
  margin-bottom: 5px;
  text-align: justify;
}

.projects-image {
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  margin: 0;
  overflow: hidden;
}
.projects-image img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.45, 0.45, 0.95);
}
.projects-image:hover img {
  transform: scale(1.1);
}

.projects-actions {
  display: flex;
  gap: 14px;
  margin: 0 0 5px;
}
.projects-actions a {
  height: -moz-fit-content;
  height: fit-content;
  align-self: flex-start;
  white-space: nowrap;
}

.projects-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 768px) {
  .projects-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    gap: 0;
  }
  .projects-info {
    align-items: center;
    flex: 0 0 100%;
    padding: 20px 0;
  }
  .projects-image {
    justify-content: center;
    margin-top: 24px;
    width: 100%;
    height: 250px;
  }
  .projects-image img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .projects-info p, a {
    text-align: justify;
  }
}
.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 10px;
  text-align: center;
}
.faq p {
  max-width: 500px;
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
  margin-top: -10px;
}
.faq p b {
  color: #D3D0CB;
}
.faq p i {
  color: #e0a100;
}

.faq-content h1 {
  font-size: 20px;
  color: #f6f1d1;
  margin: 20px 0;
  padding-top: 20px;
}
.faq-content p {
  max-width: 500px;
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
  margin-top: -10px;
}
.faq-content p b {
  color: #D3D0CB;
}
.faq-content p i {
  color: #e0a100;
}

.faq-container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item[open] {
  background: rgba(255, 255, 255, 0.08);
  border-color: #CE4760;
}
.faq-item[open] .icon {
  transform: rotate(45deg);
  color: #CE4760;
}
.faq-item summary {
  list-style: none;
  padding: 20px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #f6f1d1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  outline: none;
  cursor: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  color: #a0a0a0;
}
.faq-item .faq-answer {
  padding: 0 25px 20px;
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
  animation: slideDown 0.4s ease-out;
}
.faq-item .faq-answer b {
  color: #f6f1d1;
}
.faq-item .faq-answer i {
  color: #DD7E8F;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-answer {
  padding: 0 25px 20px;
  color: #a0a0a0;
  font-size: 14px;
  line-height: 1.6;
  animation: slideDown 0.4s ease-out;
}
.faq-answer p {
  max-width: 100%;
  width: 100%;
  text-align: left;
  margin-top: 5px;
}
.faq-answer b {
  color: #f6f1d1;
}
.faq-answer i {
  color: #DD7E8F;
}

.social {
  padding: 80px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.social .social-container {
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 80px;
  margin-bottom: 60px;
}
.social .social-brand {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.social .social-brand .footer-logo {
  width: 180px;
  margin-bottom: 20px;
  border-radius: 10px;
}
.social .social-brand p {
  font-size: 14px;
  color: #a0a0a0;
  margin-bottom: 20px;
}
.social .social-brand .social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social .social-brand .social-links a {
  font-size: 20px;
  color: #f6f1d1;
  transition: color 0.3s ease, transform 0.3s ease;
}
.social .social-brand .social-links a:hover {
  color: #af5a6f;
  transform: translateY(-3px);
}
.social .social-nav {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.social .social-nav h3 {
  font-size: 18px;
  color: #f6f1d1;
  margin-bottom: 12px;
  font-family: "Red Hat Display", sans-serif;
}
.social .social-nav ul {
  list-style: none;
  padding: 0;
}
.social .social-nav ul li {
  margin-bottom: 8px;
}
.social .social-nav ul li a {
  color: #bebebe;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}
.social .social-nav ul li a:hover {
  color: #af5a6f;
}
.social .social-nav p {
  font-size: 14px;
  color: #a0a0a0;
  margin-top: 20px;
  margin-bottom: 5px;
  line-height: 1.6;
}
.social .button-footer {
  display: inline-block;
  font-size: 12px;
  padding: 12px 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  color: #f6f1d1;
  border-radius: 12px;
  background: linear-gradient(120deg, #74446e, #DD7E8F, #8981D9);
  background-size: 400% 400%;
  text-decoration: none;
  animation: gradient-move 6s linear infinite;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes gradient-move {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.social .button-footer:hover {
  transform: translateY(-2px);
  animation-duration: 3s;
}
@keyframes scaleButton {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}

.footer {
  width: 100%;
  padding: 30px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}
.footer p {
  font-size: 12px;
  color: #666;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .social .social-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .social .social-container .social-brand .social-links {
    justify-content: center;
  }
  .social .social-container .social-nav {
    justify-content: center;
  }
  .social .social-container .social-nav p, .social .social-container .social-nav .button-footer {
    align-items: center;
  }
  .social .social-container .social-nav h3, .social .social-container .social-nav ul {
    display: none;
  }
}
body {
  font-family: "Inter", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #37342F;
}

button {
  font-family: "Inter", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */