@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700;800&display=swap");
:root {
  --color-bg-900: #040507;
  --color-bg-800: #0a0f18;
  --color-surface-700: #111827;
  --color-surface-600: #151f30;
  --color-text-100: #f4f7ff;
  --color-text-300: #b9c2d6;
  --color-brand-500: #17f2ff;
  --color-brand-400: #39e2b3;
  --color-danger-500: #ff5d79;
  --color-success-500: #44d39f;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 26px rgba(23, 242, 255, 0.3);
}

* {
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: inherit;
}

html,
body {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--color-text-300);
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: "Syne", "Segoe UI", sans-serif;
  color: var(--color-text-100);
  line-height: 1.2;
}

h1 {
  font-family: "Syne", "Segoe UI", sans-serif;
  letter-spacing: 0.06em;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  position: relative;
  background: radial-gradient(circle at 15% 15%, rgba(23, 242, 255, 0.12), transparent 35%), radial-gradient(circle at 85% 80%, rgba(57, 226, 179, 0.1), transparent 40%), linear-gradient(165deg, var(--color-bg-900), var(--color-bg-800));
  min-height: 100vh;
}

main {
  position: relative;
  z-index: 1;
}

.section-heading {
  text-align: center;
  margin-bottom: var(--space-7);
}
.section-heading p {
  max-width: 44rem;
  margin: 0 auto;
}

.title,
.subtitle {
  color: var(--color-text-100);
  text-shadow: 0 0 14px rgba(23, 242, 255, 0.35);
  margin-bottom: var(--space-4);
}

.title {
  font-size: clamp(2rem, 3vw, 3rem);
  text-transform: uppercase;
}

.subtitle {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.subtitle-des {
  color: var(--color-text-300);
}

.pages {
  padding: calc(var(--space-6) + 1.5rem) 0 var(--space-6);
}

.global-page-header {
  position: relative;
  background: radial-gradient(circle at 15% 15%, rgba(23, 242, 255, 0.12), transparent 35%), radial-gradient(circle at 85% 80%, rgba(57, 226, 179, 0.1), transparent 40%), linear-gradient(165deg, var(--color-bg-900), var(--color-bg-800));
  overflow: hidden;
  padding: 7rem 0 1.5rem;
  text-align: center;
}
.global-page-header h2 {
  margin-bottom: var(--space-3);
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}
.global-page-header .breadcrumb {
  margin: 0;
  background: transparent;
  color: var(--color-text-300);
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 0 rgba(23, 242, 255, 0);
  }
  50% {
    box-shadow: 0 0 25px rgba(23, 242, 255, 0.25);
  }
}
.top-bar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0.85rem 0;
  z-index: 1000;
  transition: padding 200ms ease, background 200ms ease;
}
.top-bar.animated-header {
  padding: 1.1rem 0;
  background: rgba(4, 5, 7, 0.62);
}

.navbar {
  margin: 0;
  padding: 0;
}
.navbar.bg-light {
  background: transparent !important;
}
.navbar .navbar-brand .logo {
  width: clamp(7rem, 12vw, 9.5rem);
  filter: drop-shadow(0 0 12px rgba(23, 242, 255, 0.2));
}
.navbar .nav-link {
  font-family: "Syne", "Segoe UI", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-100) !important;
}
.navbar .nav-link:hover {
  color: var(--color-brand-500) !important;
}

.dropdown-menu {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-4);
}

.dropdown-item {
  color: var(--color-text-100);
}
.dropdown-item:hover {
  color: var(--color-brand-500);
  background: transparent;
}

#about,
#works,
#contact-section,
#team,
.company-description,
.work-single,
.gallery {
  position: relative;
  z-index: 1;
}

.about-feature .block,
.team-member,
.service-page .service-parts .block,
#contact-section .address,
#contact-section .email,
#contact-section .phone {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
  border-radius: var(--radius-lg);
}

figure {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

#footer {
  margin-top: var(--space-6);
  padding: var(--space-5) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 5, 7, 0.7);
}
#footer .copyright {
  color: var(--color-text-300);
}
#footer .social {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
}

.cd-headline.slide .cd-words-wrapper {
  color: var(--color-brand-500);
}

.btn {
  border: 1px solid rgba(23, 242, 255, 0.3);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(23, 242, 255, 0.15), rgba(57, 226, 179, 0.1));
  color: var(--color-text-100);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.btn:hover, .btn:focus {
  transform: translateY(-2px);
  border-color: rgba(23, 242, 255, 0.65);
  box-shadow: var(--shadow-glow);
}
.btn {
  padding: 0.8rem 1.6rem;
}

figure {
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}
figure .img-wrapper {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
}
figure img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
figure:hover img {
  transform: scale(1.08);
}
figure .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  background: rgba(4, 5, 7, 0.85);
  z-index: 2;
}
figure:hover .overlay {
  opacity: 1;
  visibility: visible;
}
figure .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}
figure .buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 1.4rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
figure .buttons a:hover {
  background: var(--color-brand-500);
  color: var(--color-bg-900);
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 5px 15px rgba(23, 242, 255, 0.4);
}
figure .buttons a i {
  line-height: 1;
}
figure figcaption {
  padding: var(--space-4) var(--space-5) var(--space-5);
}

input,
textarea,
.form-control {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  background: rgba(9, 14, 25, 0.6);
  color: var(--color-text-100);
}
input:focus,
textarea:focus,
.form-control:focus {
  border-color: rgba(23, 242, 255, 0.6);
  box-shadow: 0 0 0 0.2rem rgba(23, 242, 255, 0.15);
  outline: 0;
}

.error {
  border-radius: var(--radius-md);
  color: #ffd2dd;
  background: rgba(255, 93, 121, 0.18);
}

.success {
  border-radius: var(--radius-md);
  color: #d8ffee;
  background: rgba(68, 211, 159, 0.2);
}

.fancybox-close {
  background: url("../images/icons/close.png") no-repeat center/70%;
}

.fancybox-next span {
  background: url("../images/icons/right.png") no-repeat center center, linear-gradient(135deg, rgba(23, 242, 255, 0.85), rgba(57, 226, 179, 0.85));
}

.fancybox-prev span {
  background: url("../images/icons/left.png") no-repeat center center, linear-gradient(135deg, rgba(23, 242, 255, 0.85), rgba(57, 226, 179, 0.85));
}

.course-modules-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-4);
  border-radius: var(--radius-md);
}
.course-modules-list .module-link {
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  color: var(--color-text-300);
  transition: all 0.2s ease;
  font-weight: 500;
}
.course-modules-list .module-link:hover {
  color: var(--color-brand-500);
  background: rgba(255, 255, 255, 0.05);
}
.course-modules-list .module-link.active {
  color: var(--color-bg-900);
  background: linear-gradient(135deg, var(--color-brand-500), var(--color-brand-400));
  box-shadow: var(--shadow-glow);
}

.course-modules-content {
  padding: var(--space-5);
  border-radius: var(--radius-md);
  max-height: 500px;
  overflow-y: auto;
  /* Scrollbar estético */
}
.course-modules-content::-webkit-scrollbar {
  width: 6px;
}
.course-modules-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.course-modules-content::-webkit-scrollbar-thumb {
  background: rgba(23, 242, 255, 0.3);
  border-radius: 4px;
}
.course-modules-content::-webkit-scrollbar-thumb:hover {
  background: rgba(23, 242, 255, 0.6);
}
.course-modules-content h4 {
  color: var(--color-brand-400);
  margin-top: var(--space-5);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.course-modules-content h4:first-child {
  margin-top: 0;
}
.course-modules-content p {
  color: var(--color-text-300);
  line-height: 1.8;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.contact-icon.icon-whatsapp {
  color: var(--color-success-500);
  background: rgba(68, 211, 159, 0.1);
}
.contact-icon.icon-whatsapp:hover {
  background: var(--color-success-500);
  color: #fff;
  box-shadow: 0 0 20px rgba(68, 211, 159, 0.4);
}
.contact-icon.icon-contacts {
  color: var(--color-brand-500);
  background: rgba(23, 242, 255, 0.1);
}
.contact-icon.icon-contacts:hover {
  background: var(--color-brand-500);
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: var(--color-success-500);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-whatsapp:hover {
  transform: scale(1.1) rotate(5deg);
  color: #fff;
  box-shadow: 0 12px 24px rgba(68, 211, 159, 0.5);
}

#hero-area {
  position: relative;
  background: radial-gradient(circle at 15% 15%, rgba(23, 242, 255, 0.12), transparent 35%), radial-gradient(circle at 85% 80%, rgba(57, 226, 179, 0.1), transparent 40%), linear-gradient(165deg, var(--color-bg-900), var(--color-bg-800));
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(4, 5, 7, 0.45), rgba(4, 5, 7, 0.78)), url("../images/slider.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 8rem 0 5rem;
  text-align: center;
}
#hero-area .block {
  position: relative;
  z-index: 2;
}
#hero-area h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  color: var(--color-text-100);
  text-shadow: 0 0 14px rgba(23, 242, 255, 0.35);
}
#hero-area h2 {
  margin: var(--space-5) auto var(--space-6);
  max-width: 56rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
}
#hero-area .btn,
#hero-area .btn-lines,
#hero-area .btn-default,
#hero-area .btn-green {
  margin-top: var(--space-4);
}

@media (min-width: 48rem) {
  #hero-area {
    padding-top: 13rem;
  }
}
#about,
.company-description {
  padding: var(--space-7) 0;
}
#about .row,
.company-description .row {
  align-items: center;
  row-gap: var(--space-6);
}
#about .block,
.company-description .block {
  padding: var(--space-4) var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
#about .block h2,
#about .block h3,
.company-description .block h2,
.company-description .block h3 {
  margin-bottom: var(--space-2);
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
}
#about .block p,
.company-description .block p {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.7;
  max-width: 46ch;
}

.about-feature {
  margin: var(--space-6) 0 var(--space-7);
}
.about-feature .row {
  row-gap: var(--space-4);
}
.about-feature .block {
  min-height: 100%;
  margin: var(--space-2);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.about-feature .block h2 {
  margin-bottom: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.2;
}
.about-feature .block p {
  margin: 0;
  font-size: clamp(0.98rem, 1.25vw, 1.05rem);
  line-height: 1.65;
  max-width: 40ch;
}

@media (min-width: 48rem) {
  .about-feature .block {
    padding: var(--space-6) var(--space-5);
  }
}
.works {
  padding: var(--space-8) 0;
}

#call-to-action {
  position: relative;
  background: radial-gradient(circle at 15% 15%, rgba(23, 242, 255, 0.12), transparent 35%), radial-gradient(circle at 85% 80%, rgba(57, 226, 179, 0.1), transparent 40%), linear-gradient(165deg, var(--color-bg-900), var(--color-bg-800));
  overflow: hidden;
  padding: var(--space-8) 0;
  text-align: center;
}
#call-to-action .block {
  max-width: 60rem;
  margin: 0 auto;
}

#contact-section {
  padding: var(--space-8) 0 var(--space-6);
}
#contact-section .address,
#contact-section .email {
  padding: var(--space-4);
  text-align: center;
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
}
#contact-section .phone {
  padding: var(--space-4);
  text-align: center;
  min-height: 11rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-3);
}
#contact-section .email p,
#contact-section .email a {
  display: block;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  line-height: 1.3;
}
#contact-section .phone p,
#contact-section .address h5 {
  margin: 0;
  text-align: center;
}
#contact-section i {
  color: var(--color-brand-500);
  font-size: 2.4rem;
}

.gallery {
  padding: var(--space-6) var(--space-4);
}

.work-single {
  padding: 7rem 0 var(--space-6);
}
.work-single-sidebar {
  position: sticky;
  top: 6.5rem;
  padding: var(--space-5);
}

@media (min-width: 48rem) {
  .gallery {
    padding-inline: var(--space-6);
  }
}
.service-page .service-parts .block {
  margin-bottom: var(--space-5);
  text-align: center;
  padding: var(--space-5) var(--space-4);
}
.service-page .service-parts .block i {
  color: var(--color-brand-500);
  font-size: 2rem;
}

#team {
  margin: var(--space-7) 0;
}

.team-member {
  margin-top: var(--space-5);
  padding: var(--space-5);
}
.team-member h3 {
  color: var(--color-brand-500);
  margin-top: var(--space-4);
}
.team-member .social-icons a {
  border: 1px solid rgba(23, 242, 255, 0.3);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(23, 242, 255, 0.15), rgba(57, 226, 179, 0.1));
  color: var(--color-text-100);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.team-member .social-icons a:hover, .team-member .social-icons a:focus {
  transform: translateY(-2px);
  border-color: rgba(23, 242, 255, 0.65);
  box-shadow: var(--shadow-glow);
}
.team-member .social-icons a {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  margin-right: 0.2rem;
}

.u-glow {
  box-shadow: var(--shadow-glow);
}

.u-glass {
  background: rgba(10, 15, 24, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
