@charset "UTF-8";
* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #fbfdff;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  font-size: 16px;
  padding-block: 30px;
}

:focus-visible {
  outline: 3px solid rgba(232, 194, 29, 0.18);
  outline-offset: 3px;
  border-radius: 8px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem;
}
@media (min-width: 1100px) {
  .container {
    padding: 1.5rem;
  }
}

.header {
  background-color: #3A3A3A;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  align-items: center;
  padding-inline: 16px;
  z-index: 4;
}
.header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}
.header__brand {
  font-weight: 800;
  font-size: 1.125rem;
  color: #0f172a;
  text-decoration: none;
}
@media (min-width: 1100px) {
  .header__brand {
    font-size: 1.25rem;
  }
}
.header__actions {
  visibility: hidden;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav {
  display: block;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, opacity 0.18s ease;
  opacity: 0;
}
@media (min-width: 768px) {
  .nav {
    max-height: none;
    opacity: 1;
    overflow: visible;
    position: static;
  }
}
.nav--open {
  max-height: 420px;
  opacity: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 50;
  background: #ffffff;
  padding: 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
  border-radius: 0 0 12px 12px;
  width: 100%;
}
.nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .nav__list {
    flex-direction: row;
    gap: 1rem;
    align-items: center;
  }
}
.nav__link {
  color: #fbfdff;
  text-decoration: none;
  display: block;
  padding: 0.6rem;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .nav__link {
    padding: 0.25rem 0.5rem;
  }
}
.nav__link:hover {
  background: rgba(232, 194, 29, 0.06);
}

.mobile-nav {
  background-color: #ebebeb;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-block: 12px 16px;
  z-index: 4;
}
@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav__list {
  margin-block: 0;
  padding-inline: 0;
  display: grid;
  text-align: center;
  grid-template-columns: repeat(3, 1fr);
}
.mobile-nav__list-icon {
  width: 64px;
  height: 32px;
  display: grid;
  place-items: center;
  margin-inline: auto;
  margin-block-end: 4px;
  color: #0f172a;
}
.mobile-nav__list-label {
  font-size: 0.75rem;
  color: #0f172a;
}
.mobile-nav a {
  text-decoration: none;
}
.mobile-nav li {
  list-style: none;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle__icon {
  width: 20px;
  height: 2px;
  background: #0f172a;
  position: relative;
  display: block;
}
.menu-toggle__icon::before, .menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #0f172a;
}
.menu-toggle__icon::before {
  top: -6px;
}
.menu-toggle__icon::after {
  top: 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.18s ease, border-color 0.18s ease;
  color: #fff;
  background: #E8C21D;
}
.btn--primary {
  background: #E8C21D;
}
.btn--primary:hover {
  background: #3A3A3A;
}
.btn--outline {
  background: transparent;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.btn--outline:hover {
  border-color: #E8C21D;
  color: #E8C21D;
}
.btn--ghost {
  background: transparent;
  color: #0f172a;
  border: 1px solid rgba(15, 23, 42, 0.04);
}
.btn--ghost:hover {
  border-color: rgba(15, 23, 42, 0.06);
}
.btn--submit {
  width: 50%;
  height: 50px;
  border-radius: 0;
}
.btn--submit:hover {
  background: rgb(190.6024096386, 158.5542168675, 19.3975903614);
}

.hero {
  padding: 2.25rem 0;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 520px;
    gap: 2rem;
  }
}
@media (min-width: 1100px) {
  .hero__grid {
    grid-template-columns: 1fr 560px;
  }
}
.hero__superior-image {
  width: 100%;
  height: auto;
  display: block;
}
.hero__superior-image--desktop {
  display: none;
}
@media (min-width: 768px) {
  .hero__superior-image--desktop {
    display: block;
  }
}
.hero__superior-image--mobile {
  display: block;
}
@media (min-width: 768px) {
  .hero__superior-image--mobile {
    display: none;
  }
}
.hero__inferior-image {
  width: 100%;
  height: auto;
  display: block;
}
.hero__inferior-image--desktop {
  display: none;
}
@media (min-width: 768px) {
  .hero__inferior-image--desktop {
    display: block;
  }
}
.hero__inferior-image--mobile {
  display: block;
}
@media (min-width: 768px) {
  .hero__inferior-image--mobile {
    display: none;
  }
}
.hero__central-image {
  margin-inline-start: 2rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  aspect-ratio: 317/110;
}
.hero__central-video {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.hero__central-video--desktop {
  display: none;
}
@media (min-width: 768px) {
  .hero__central-video--desktop {
    display: block;
  }
}
.hero__central-video--mobile {
  display: block;
}
@media (min-width: 768px) {
  .hero__central-video--mobile {
    display: none;
  }
}
.hero__title {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  line-height: 1.05;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 2rem;
  }
}
.hero__lead {
  margin: 0 0 1rem;
  color: #6b7280;
}
.hero__ctas {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.hero__trust-list {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
  color: #6b7280;
}
.hero__media img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  display: block;
}

.section {
  padding: 2rem 0;
}
.section--alt {
  background: linear-gradient(180deg, #333 0, #3f3f3f 100%);
}
.section__title {
  margin: 0 0 0.25rem;
  font-size: 1.25rem;
}
.section__title--central {
  text-align: center;
  text-transform: uppercase;
}
.section__title--alt {
  color: white;
}
.section__subtitle {
  margin: 0 0 1rem;
  color: #6b7280;
}

.features {
  padding: 80px 20px;
  background-color: #ffffff;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.feature-card {
  text-align: end;
  position: relative;
  background-color: #3c3c3c;
  color: #ffffff;
  padding: 20px 25px 30px;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #d6d6d6;
}

.feature-card .icon {
  position: absolute;
  top: -25px;
  left: 25px;
  width: 80px;
  height: 80px;
  background-color: #d4b115;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.feature-card .icon .material-symbols-outlined {
  font-size: 36px;
}

/* Card destacada */
.feature-card.highlight {
  background: linear-gradient(134deg, #d4b115 0%, #a28812 100%);
  color: #ffffff;
}

.feature-card.highlight p {
  color: #ffffff;
}

.feature-card.highlight .icon {
  background-color: #3c3c3c;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
.speedtest__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) {
  .speedtest__content {
    flex-direction: row;
    text-align: left;
    gap: 2rem;
    padding: 2.5rem 3rem;
  }
}
.speedtest__image {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #E8C21D 0%, #3A3A3A 100%);
  border-radius: 16px;
  padding: 1rem;
}
.speedtest__image img {
  width: 100%;
  height: auto;
  filter: brightness(0) invert(1);
}
@media (min-width: 768px) {
  .speedtest__image {
    width: 90px;
    height: 90px;
  }
}
.speedtest__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}
@media (min-width: 768px) {
  .speedtest__info {
    align-items: flex-start;
  }
}
.speedtest__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}
@media (min-width: 768px) {
  .speedtest__title {
    font-size: 1.25rem;
  }
}
.speedtest__description {
  margin: 0;
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 480px;
}
.speedtest .btn {
  margin-top: 0.5rem;
}

.brands {
  background-color: #fbfdff;
  padding-block: 3rem;
}
.brands__carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  margin-top: 2rem;
}
.brands__track-wrapper {
  overflow: hidden;
  flex: 0 1 auto;
  border-radius: 10px;
}
.brands__track {
  display: flex;
  transition: transform 0.28s ease;
  will-change: transform;
}
.brands__slide {
  flex: 0 0 auto;
  min-width: 120px;
  max-width: 166px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-right: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.brands__slide:last-child {
  margin-right: 0;
}
.brands__slide:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(11, 103, 240, 0.08);
}
.brands__slide img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.18s ease, opacity 0.18s ease;
}
.brands__slide:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.brands__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: #3A3A3A;
  color: #fbfdff;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  flex-shrink: 0;
}
.brands__arrow:hover {
  background-color: #E8C21D;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(11, 103, 240, 0.08);
}
.brands__arrow:active {
  transform: scale(0.95);
}
.brands__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.brands__arrow:disabled:hover {
  background-color: #ffffff;
  color: #0f172a;
  transform: none;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.brands__arrow .material-symbols-outlined {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .brands__carousel {
    gap: 0.5rem;
  }
  .brands__arrow {
    width: 36px;
    height: 36px;
  }
  .brands__arrow .material-symbols-outlined {
    font-size: 1.25rem;
  }
  .brands__slide {
    min-width: 100px;
    padding: 0.75rem;
  }
}

.how__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .how__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.step__number {
  background: #E8C21D;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}
.step__content {
  flex: 1;
}
.step__title {
  margin: 0 0 0.25rem;
}
.step__description {
  margin: 0;
  color: #6b7280;
}

.pricing__grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.plan {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}
.plan--recommended {
  border: 2px solid #E8C21D;
  box-shadow: 0 12px 30px rgba(11, 103, 240, 0.08);
  position: relative;
  transform: scale(1.02);
}
@media (min-width: 768px) {
  .plan--recommended {
    transform: scale(1.05);
  }
}
.plan--recommended:hover {
  transform: scale(1.02) translateY(-4px);
}
@media (min-width: 768px) {
  .plan--recommended:hover {
    transform: scale(1.05) translateY(-4px);
  }
}
.plan__header {
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.03);
  position: relative;
}
.plan__badge {
  background: linear-gradient(135deg, #E8C21D, #3A3A3A);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.plan__name {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}
.plan__price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  color: #0f172a;
  line-height: 1.2;
}
.plan__period {
  font-size: 1rem;
  font-weight: 400;
  color: #6b7280;
}
.plan__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
  text-align: left;
}
.plan__features li {
  padding: 0.6rem 0;
  color: #0f172a;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}
.plan__features li:last-child {
  border-bottom: none;
}
.plan__features li::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(232, 194, 29, 0.1);
  color: #E8C21D;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.plan .btn {
  margin-top: auto;
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  padding: 1rem;
}
.testimonial__quote {
  margin: 0 0 0.5rem;
  color: #6b7280;
  font-style: italic;
}
.testimonial__author {
  font-style: normal;
  font-weight: 600;
  color: #0f172a;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 2fr;
  }
}
.contact__info {
  padding: 0;
}
.contact__map-card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  padding: 1rem;
  height: 100%;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.contact__map {
  flex: 1;
  width: 100%;
  border: 0;
  border-radius: 8px;
}
.contact__title {
  margin: 0 0 0.5rem;
}
.contact__description {
  margin: 0;
  color: #6b7280;
}
.contact__list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  color: #6b7280;
}
.contact__list li {
  padding: 0.25rem 0;
}

.contact-form {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.03);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  background: #3A3A3A;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  border: 2px solid #fbfdff;
}
@media (min-width: 768px) {
  .contact-form {
    padding: 30px;
  }
}
@media (min-width: 1100px) {
  .contact-form {
    padding: 50px;
  }
}

.contact-section-text {
  margin: 1rem 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.5;
  min-height: 1.5em;
  text-align: center;
}
.contact-section-text.success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500;
}
.contact-section-text.error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 500;
}
.contact-section-text.loading {
  color: #2196f3;
  font-style: italic;
  background-color: #f8f9fa;
  padding: 0.5rem;
  border-radius: 8px;
  font-weight: 500;
}

.input-wrapper {
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .input-wrapper {
    display: flex;
    gap: 15px;
  }
}
.input-wrapper:last-of-type {
  margin-bottom: 1.5rem;
}

.input-group {
  flex: 1;
  margin-bottom: 0.5rem;
}
@media (min-width: 576px) {
  .input-group {
    margin-bottom: 0;
  }
}

.contact-input-field {
  width: 100%;
  background-color: #fbfdff;
  color: #0f172a;
  font-size: 1rem;
  font-family: inherit;
  padding: 15px;
  border: 1px solid transparent;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.contact-input-field:focus {
  border-color: #E8C21D;
}
.contact-input-field.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

textarea.contact-input-field {
  resize: vertical;
  min-height: 80px;
  height: 100px;
  max-height: 200px;
  overscroll-behavior: contain;
}

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: block;
  min-height: 1.2em;
}

#submit-form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.location-wrapper {
  padding: 1.5rem;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
@media (min-width: 768px) {
  .location-wrapper {
    padding: 1rem;
  }
}

.location-title {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.location-address {
  color: #6b7280;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.contact-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}
@media (min-width: 768px) {
  .contact-map iframe {
    height: 250px;
  }
}

.map-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #E8C21D;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.18s ease;
}
.map-link:hover {
  color: #3A3A3A;
  text-decoration: underline;
}

.contact__cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.contact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  align-content: space-between;
}

.contact-item {
  min-width: 100%;
}

.contact-card {
  background-color: #ffffff;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.contact-card:hover {
  box-shadow: 0 12px 30px rgba(11, 103, 240, 0.08);
}
.contact-card:hover .card-icon {
  background-color: #E8C21D;
  color: #fff;
}
@media (min-width: 1100px) {
  .contact-card {
    padding: 30px;
    gap: 20px;
  }
}

.card-icon {
  background-color: #fbfdff;
  color: #E8C21D;
  font-size: 25px;
  padding: 13px;
  border-radius: 50%;
  transition: background-color 0.18s ease, color 0.18s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1100px) {
  .card-icon {
    font-size: 32px;
    padding: 15px;
  }
}
.card-icon .material-symbols-outlined {
  font-size: inherit;
}

.card-content {
  flex: 1;
}

.card-title {
  margin: 0 0 5px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
}

.contact-card-link {
  font-size: 0.95rem;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.18s ease;
}
.contact-card-link:hover {
  color: #E8C21D;
}

.footer {
  padding-bottom: 85px;
  background: #0f1724;
  color: rgba(255, 255, 255, 0.85);
}
@media (min-width: 768px) {
  .footer {
    padding-bottom: 0;
  }
}
.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
.footer__title {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer__list li .material-symbols-outlined {
  font-size: 1.25rem;
  color: #E8C21D;
}
.footer__list li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__list li a:hover {
  color: #ffffff;
}
.footer__social-links {
  display: flex;
  gap: 1rem;
}
.footer__social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.2s ease;
}
.footer__social-links a:hover {
  background: #E8C21D;
  color: #ffffff;
  transform: translateY(-2px);
}
.footer__social-links a svg {
  width: 20px;
  height: 20px;
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__brand {
  font-weight: 700;
  display: block;
}
.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin: 0.25rem 0 0;
}
.footer__right {
  display: flex;
  gap: 1rem;
}
.footer__link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer__link:hover {
  color: #fff;
}
.footer__bottom {
  background-color: aliceblue;
  padding-block: 2rem;
  display: flex;
  justify-content: flex-end;
}

.text-muted {
  color: #6b7280;
}

.fade-up {
  animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*# sourceMappingURL=styles.css.map */
