/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features / services
07. our courses
08. cta
09. testimonials
10. contact
11. footer
12. preloader
13. search
14. portfolio
15. pages (about, team, office, featured-product, more-info)
16. scroll animations
17. tech carousel
18. responsive
--------------------------------------------- */

/* =============================================
   CSS VARIABLES — DevCore Studeo Identity
   ============================================= */
:root {
  --primary:        #bf0039;
  --primary-bright: #e0003f;
 /*  --primary-dim:    #80002a; */
  --gradient:       linear-gradient(135deg, #c5002b 0%, #000000 100%);
  --gradient-hover: linear-gradient(135deg, #e0003f 0%, #1a0008 100%);
  --bg:             #000000;
  --bg-surface:     #0f0f1a;
  --bg-card:        rgba(255, 255, 255, 0.03);
  --bg-card-hover:  rgba(255, 255, 255, 0.06);
  --border:         rgba(191, 0, 57, 0.18);
  --border-active:  rgba(191, 0, 57, 0.6);
  --text-primary:   #f0f0f5;
  --text-secondary: #a0a0b8;
  --text-muted:     #606075;
  --glow:           0 0 20px rgba(191, 0, 57, 0.35);
  --glow-strong:    0 0 40px rgba(191, 0, 57, 0.55);
  --radius-sm:      6px;
  --radius-md:      12px;
  --radius-lg:      20px;
  --radius-xl:      32px;
  --shadow-card:    0 4px 32px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 8px 48px rgba(0, 0, 0, 0.7), 0 0 24px rgba(191, 0, 57, 0.2);
  --transition:     all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-display:   'Rajdhani', 'Poppins', sans-serif;
  --font-body:      'Poppins', 'Open Sans', sans-serif;
}

/* =============================================
   FONT IMPORTS
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Rajdhani:wght@500;600;700&display=swap');

/* =============================================
   RESET
   ============================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, div pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var, b, u, i,
center, dl, dt, dd, ol, ul, li, figure, header,
nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.clearfix { display: inline-block; }
html[xmlns] .clearfix { display: block; }
* html .clearfix { height: 1%; }

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

header, nav, section, article, aside, footer, hgroup { display: block; }

* { box-sizing: border-box; }

/* =============================================
   BASE
   ============================================= */
html, body {
  font-family: var(--font-body);
  font-weight: 400;
  background-color: var(--bg);
  color: var(--text-primary);
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none !important; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: var(--font-display);
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

ul { margin-bottom: 0; }

p {
  font-size: 14px;
  line-height: 26px;
  color: var(--text-secondary) !important;
  font-family: var(--font-body);
}

img { width: 100%; overflow: hidden; }

br { color: transparent !important; }

/* =============================================
   GLOBAL STYLES
   ============================================= */
html, body {
  background: var(--bg);
  font-family: var(--font-body);
}

::selection        { background: var(--primary); color: #fff; }
::-moz-selection   { background: var(--primary); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar               { width: 6px; }
::-webkit-scrollbar-track         { background: var(--bg); }
::-webkit-scrollbar-thumb         { background: var(--primary-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover   { background: var(--primary); }

@media (max-width: 991px) {
  html, body { overflow-x: hidden; }
  .mobile-top-fix    { margin-top: 30px; margin-bottom: 0; }
  .mobile-bottom-fix { margin-bottom: 30px; }
  .mobile-bottom-fix-big { margin-bottom: 60px; }
}

/* ——— BUTTONS ——— */
.main-button-gradient a {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--gradient);
  padding: 13px 32px;
  display: inline-block;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--glow);
}
.main-button-gradient a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.07);
  opacity: 0;
  transition: var(--transition);
}
.main-button-gradient a:hover {
  background: var(--gradient-hover);
  box-shadow: var(--glow-strong);
  transform: translateY(-2px);
}
.main-button-gradient a:hover::after { opacity: 1; }

.white-button a,
.white-btn a {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  background-color: #fff;
  padding: 13px 32px;
  display: inline-block;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: 2px solid transparent;
}
.white-button a:hover,
.white-btn a:hover {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--glow);
}

.text-btn a {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline !important;
  transition: var(--transition);
}
.text-button a:hover,
.text-btn a:hover {
  color: var(--primary-bright);
  opacity: 1;
}

/* ——— SECTION ——— */
section { margin-top: 140px; }
#contact-section { padding-top: 20px; }

.section-heading {
  position: relative;
  z-index: 2;
  padding-top: 20px;
  margin-top: 0;
  text-align: center;
  margin-bottom: 60px;
}
.section-heading h6 {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 3px;
  font-family: var(--font-body);
}
.section-heading h4 {
  margin-top: 12px;
  line-height: 44px;
  font-size: 32px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--text-primary);
  font-family: var(--font-display);
}
.section-heading h4 em {
  font-style: normal;
  color: var(--primary);
  text-shadow: 0 0 30px rgba(191, 0, 57, 0.4);
}
.section-heading p { margin-top: 30px; }

/* ——— DECORATIVE pseudo-elements: hide old png decorations gracefully ——— */
section.our-courses:before,
section.our-courses:after,
section.testimonials:before,
section.testimonials:after,
section.featured-product:before,
section.featured-product:after {
  display: none;
}

/* =============================================
   HEADER
   ============================================= */
/* ================= HEADER BASE (INVISÍVEL) ================= */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 110px;

  background: transparent;
  z-index: 1000;

  transition: all 0.4s ease;
}

/* ================= NAV CONTAINER ================= */
.header-area .main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;

  height: 100%;
  padding: 0 30px;
}

/* ================= LOGO ================= */
.header-area .main-nav .logo {
  display: flex;
  align-items: center;
  height: 110px;

  color: #fff;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 2px;

  transition: 0.3s;
}

.header-area .main-nav .logo:hover {
  opacity: 0.8;
}

/* ================= HAMBURGER ================= */
.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: none;
  position: absolute;
  right: 30px;
  top: 50%;
  width: 32px;
  height: 40px;
  transform: translateY(-50%);
  z-index: 1001;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0.6));
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  border-radius: 2px;
}

.header-area .main-nav .menu-trigger span {
  top: 19px;
}

.header-area .main-nav .menu-trigger span:before {
  content: "";
  top: -10px;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:after {
  content: "";
  top: 10px;
  width: 75%;
}

/* Logo accent */
.header-area .main-nav .logo span,
.header-area .main-nav .logo em {
  color: var(--primary);
}

/* ================= NAV ================= */
.header-area .main-nav .nav {
  display: flex;
  align-items: center;
}

.header-area .main-nav .nav li {
  display: flex;
  align-items: center;
  padding: 0 18px;
}

/* LINKS */
.header-area .main-nav .nav li a {
  display: flex;
  align-items: center;

  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.2px;

  color: rgba(255,255,255,0.75);

  height: 40px;
  position: relative;

  transition: 0.3s;
}

/* underline moderno */
.header-area .main-nav .nav li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;

  width: 0%;
  height: 2px;

  background: linear-gradient(90deg, var(--primary), #ff4d6d);
  box-shadow: 0 0 8px rgba(191,0,57,0.6);

  transform: translateX(-50%);
  transition: 0.3s;
}

.header-area .main-nav .nav li:hover a::after,
.header-area .main-nav .nav li a.active::after {
  width: 100%;
}

.header-area .main-nav .nav li:hover a,
.header-area .main-nav .nav li a.active {
  color: #fff;
}

/* ================= SUBMENU ================= */
.header-area .main-nav .nav li.has-sub {
  position: relative;
}

.header-area .main-nav .nav li.has-sub:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header-area .main-nav .nav li.has-sub ul.sub-menu {
  position: absolute;
  width: 190px;

  background: rgba(15,15,25,0.75);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.5);

  top: 45px;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  visibility: hidden;

  transition: 0.3s ease;
  z-index: -1;
}

.header-area .main-nav .nav li.has-sub:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 10;
  transform: translateY(0) scale(1);
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li a {
  padding: 12px 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}

.header-area .main-nav .nav li.has-sub ul li a:hover {
  background: rgba(191,0,57,0.12);
  color: #fff;
  padding-left: 24px;
}

/* ================= HEADER SCROLL (ARREDONDADO) ================= */
.background-header {
  top: 0px !important;

  width: calc(100% - 40px);
  margin: 0 auto;

  left: 0;
  right: 0;

  height: 70px !important;

  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);

  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.35),
    0 0 20px rgba(191,0,57,0.15);

  transition: all 0.4s ease;
}

/* glow interno */
.background-header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent, rgba(191,0,57,0.2), transparent);
  opacity: 0.4;
  pointer-events: none;
}

/* centraliza conteúdo no modo scroll */
.background-header .main-nav {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
}

/* ajuste logo */
.background-header .main-nav .logo {
  height: 70px;
  font-size: 20px;
}

/* animação entrada */
.background-header {
  animation: headerSlide 0.4s ease;
}

@keyframes headerSlide {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* =============================================
   BANNER — Full-screen Video/Image Hero
   ============================================= */
section.main-banner { margin-top: 0; }

.main-banner {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Static image background — loads instantly */
.banner-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('../images/Image_background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transition: opacity 0.8s ease;
}

/* Video background — fades in on top once loaded */
.banner-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease, transform 0.1s linear;
  transform-origin: center center;
}
.banner-bg-video.is-ready {
  opacity: 1;
}

/* Dark gradient overlay — ensures text legibility */
.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom,
      rgba(8, 8, 16, 0.55) 0%,
      rgba(8, 8, 16, 0.30) 40%,
      rgba(8, 8, 16, 0.65) 80%,
      rgba(0, 0, 0, 0.95) 100%
    ),
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(191, 0, 57, 0.08) 0%, transparent 80%);
  pointer-events: none;
}

/* Scroll-out wrapper — JS drives opacity + translateY */
.banner-scroll-out {
  position: relative;
  z-index: 3;
  width: 100%;
  will-change: opacity, transform;
}

.banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 140px 20px 180px;
}

/* ── Hero Badge ── */
.hero-badge {
  display: inline-block;
  background: rgba(191, 0, 57, 0.12);
  border: 1px solid rgba(191, 0, 57, 0.4);
  border-radius: 30px;
  padding: 8px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 20px rgba(191, 0, 57, 0.2);
}

/* ── Hero Title ── */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 700;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}
.hero-title em {
  font-style: normal;
  color: var(--primary);
  text-shadow: 0 0 50px rgba(191, 0, 57, 0.6), 0 0 100px rgba(191, 0, 57, 0.2);
}

/* ── Hero Subtitle ── */
.hero-subtitle {
  font-size: 16px !important;
  line-height: 28px !important;
  color: rgba(200, 200, 215, 0.85) !important;
  max-width: 620px;
  margin: 0 auto 40px;
}

/* ── Hero CTA Buttons ── */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 80px;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: #fff;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  border-radius: 50px;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: 2px solid transparent;
}
.hero-btn-primary i { font-size: 13px; }
.hero-btn-primary:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.hero-btn-secondary i { font-size: 16px; }
.hero-btn-secondary:hover {
  background: rgba(191, 0, 57, 0.25);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--glow);
}

/* ── Hero Ticker / Brand scroll ── */
.hero-ticker {
  position: absolute;
  bottom: 180px;
  left: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 20s linear infinite;
}
.ticker-track span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  padding: 0 16px;
  font-family: var(--font-display);
}
.ticker-track .dot {
  color: var(--primary);
  opacity: 0.6;
  padding: 0 4px;
  font-size: 20px;
  line-height: 1;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Scroll hint arrow ── */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}
.scroll-hint span {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(255, 255, 255, 0.35);
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
  transform: rotate(45deg);
  animation: scroll-bounce 1.6s ease infinite;
  margin: 0 auto;
}
@keyframes scroll-bounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.4; }
  50%       { transform: rotate(45deg) translateY(8px); opacity: 1; }
}

/* Keep old .header-text and .right-image styles harmless (hidden by new HTML) */
.main-banner .right-image { display: none; }
.main-banner .header-text { display: none; }
.main-banner .main-button-gradient { display: none; }

/* =============================================
   SERVICES
   ============================================= */
.services .item {
  position: relative;
  border-radius: var(--radius-lg);
  text-align: center;
  padding: 50px 30px;
  margin: 15px;
  transition: var(--transition);
  
  background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  overflow: hidden;
}

/* brilho interno */
.services .item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(191,0,57,0.15), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

/* borda glow animada */
.services .item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, transparent, rgba(191,0,57,0.6), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: 0.4s;
}

.services .item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(191,0,57,0.3);
}

.services .item:hover::before {
  opacity: 1;
}

.services .item:hover::after {
  opacity: 1;
}

/* ICON */
.services .item .icon {
  max-width: 75px;
  margin: 0 auto;
  min-height: 80px;
  line-height: 80px;

  filter: drop-shadow(0 0 10px rgba(191, 0, 57, 0.4));
  transition: 0.4s;
}

.services .item:hover .icon {
  transform: scale(1.1);
  filter: drop-shadow(0 0 18px rgba(191, 0, 57, 0.7));
}

/* TITLE */
.services .item h4 {
  margin-top: 15px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-display);
  transition: 0.3s;
}

.services .item:hover h4 {
  color: var(--primary);
}

/* DOTS (mais moderno estilo pill) */
.services .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.services .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  margin: 0 5px;
  transition: 0.3s;
}

.services .owl-dots .active {
  width: 28px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--primary), #ff4d6d);
  box-shadow: 0 0 10px rgba(191,0,57,0.6);
}

/* NAV */
.services .owl-nav .owl-next,
.services .owl-nav .owl-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;

  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;

  border-radius: 50%;
  color: #fff !important;

  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.services .owl-nav .owl-next:hover,
.services .owl-nav .owl-prev:hover {
  background: linear-gradient(135deg, var(--primary), #ff4d6d) !important;
  border-color: transparent !important;
  box-shadow: 0 0 15px rgba(191,0,57,0.6);
}

.services .owl-nav .owl-next { right: -60px; }
.services .owl-nav .owl-prev { left: -60px; }

/* =============================================
   OUR COURSES — PREMIUM CARD CAROUSEL
   ============================================= */
section.our-courses {
  position: relative;
  padding-bottom: 80px;
  overflow: hidden;
}
section.our-courses .section-heading { text-align: center; }
section.our-courses .section-heading p { padding: 0 20px; }

/* ── Carousel outer container ── */
.srv-carousel-outer {
  position: relative;
  margin-top: 20px;
  padding: 16px 0 40px;
}

/* ── Horizontal scroll track (single row, all cards) ── */
.srv-carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 60px 32px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  align-items: flex-start;
  cursor: grab;
}
.srv-carousel-track::-webkit-scrollbar { display: none; }
.srv-carousel-track:active { cursor: grabbing; }

/* ── Premium card — matches reference image ── */
.srv-card {
  flex: 0 0 290px;
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.55);
  background: #1a1a2a;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  will-change: transform;
}
.srv-card.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Stagger delay for entrance */
.srv-card:nth-child(1)  { transition-delay: 0.05s; }
.srv-card:nth-child(2)  { transition-delay: 0.10s; }
.srv-card:nth-child(3)  { transition-delay: 0.15s; }
.srv-card:nth-child(4)  { transition-delay: 0.20s; }
.srv-card:nth-child(5)  { transition-delay: 0.25s; }
.srv-card:nth-child(6)  { transition-delay: 0.30s; }
.srv-card:nth-child(7)  { transition-delay: 0.35s; }
.srv-card:nth-child(8)  { transition-delay: 0.40s; }

/* Hover tilt/lift */
.srv-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.75), 0 0 40px rgba(191, 0, 57, 0.18);
  z-index: 3;
}

/* Active/selected card */
.srv-card.is-active {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.8),
              0 0 0 2px rgba(191, 0, 57, 0.75),
              0 0 40px rgba(191, 0, 57, 0.3);
  transform: translateY(-6px) scale(1.02);
  z-index: 4;
}

/* ── Card photo (large — 60% of card) ── */
.srv-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.srv-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.4s ease;
  filter: brightness(0.75) saturate(0.9);
}
.srv-card:hover .srv-card-media img,
.srv-card.is-active .srv-card-media img {
  transform: scale(1.08);
  filter: brightness(0.88) saturate(1.05);
}

/* Dots row at bottom of photo (like in reference) */
.srv-card-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}
.srv-card-dots .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: background 0.3s;
}
.srv-card-dots .dot.active {
  background: rgba(255,255,255,0.85);
  width: 18px;
  border-radius: 3px;
}

/* Gradient over bottom of photo */
.srv-card-media::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 75%;
  background: linear-gradient(to top, rgba(10,10,20,1) 0%, rgba(10,10,20,0.3) 70%, transparent 100%);
  z-index: 1;
}

/* ── Card body (below photo) ── */
.srv-card-body {
  padding: 18px 20px 22px;
  position: relative;
  z-index: 2;
  background: #0f0f1c;
}

/* Top row: title + category badge */
.srv-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.srv-card-top h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
  margin: 0;
  letter-spacing: 0.2px;
}
.srv-card-cat {
  flex-shrink: 0;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 0 16px rgba(191, 0, 57, 0.5);
  font-family: var(--font-body);
  white-space: nowrap;
  margin-top: 2px;
}

.srv-card-body > p {
  font-size: 13px !important;
  line-height: 21px !important;
  color: rgba(160, 160, 180, 0.85) !important;
  margin-bottom: 14px;
}

/* Tag pills row */
.srv-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}
.srv-card-tags span {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(200,200,220,0.75);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.srv-card:hover .srv-card-tags span,
.srv-card.is-active .srv-card-tags span {
  border-color: rgba(191, 0, 57, 0.3);
  color: rgba(220,220,240,0.9);
}

/* CTA button — white pill like in reference */
.srv-card-cta {
  display: block;
  width: 100%;
  text-align: center;
  background: rgba(255,255,255,0.95);
  color: #0a0a14;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-body);
  padding: 12px;
  border-radius: 14px;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.srv-card-cta:hover {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
  transform: translateY(-1px);
}

/* ── Navigation arrows ── */
.srv-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(15, 15, 28, 0.85);
  border: 1px solid rgba(191, 0, 57, 0.35);
  color: rgba(255,255,255,0.9);
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  z-index: 10;
  line-height: 1;
}
.srv-nav:hover {
  background: rgba(191, 0, 57, 0.85);
  border-color: var(--primary);
  box-shadow: var(--glow-strong);
  transform: translateY(-50%) scale(1.1);
}
.srv-nav-prev { left: 8px; }
.srv-nav-next { right: 8px; }

/* ── Filter pills ── */
.srv-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 40px 10px;
  margin-top: 8px;
}
.srv-filter {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(191, 0, 57, 0.18);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.srv-filter:hover {
  border-color: var(--primary);
  color: var(--text-primary);
  background: rgba(191, 0, 57, 0.1);
}
.srv-filter.active {
  background: var(--gradient);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--glow);
}

/* ── Scroll-reveal for section heading ── */
.section-heading {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section-heading.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Legacy naccs hidden */
section.our-courses .naccs { display: none; }
section.our-courses ul.nacc { display: none; }

/* =============================================
   CTA
   ============================================= */
section.simple-cta {
  background-image: url(../images/cta-bg2.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
section.simple-cta .container { position: relative; z-index: 2; }
section.simple-cta .left-image { margin-right: 45px; }
section.simple-cta h6 { font-size: 13px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 3px; }
section.simple-cta h4 { font-size: 54px; font-weight: 700; color: #fff; line-height: 64px; margin-top: 20px; font-family: var(--font-display); }
section.simple-cta p { color: rgba(255,255,255,0.75) !important; margin-top: 30px; margin-bottom: 40px; }

/* =============================================
   TESTIMONIALS
   ============================================= */
section.testimonials { position: relative; }

.testimonials .item {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  margin: 15px;

  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition: 0.4s;
  overflow: hidden;
}

/* glow interno */
.testimonials .item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(191,0,57,0.12), transparent 60%);
  opacity: 0;
  transition: 0.4s;
}

/* borda glow */
.testimonials .item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, transparent, rgba(191,0,57,0.6), transparent);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  opacity: 0;
  transition: 0.4s;
}

.testimonials .item:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 15px 50px rgba(0,0,0,0.4);
  border-color: rgba(191,0,57,0.3);
}

.testimonials .item:hover::before,
.testimonials .item:hover::after {
  opacity: 1;
}

/* QUOTE ICON (decorativo) */
.testimonials .item::marker {
  display: none;
}

.testimonials .item::before {
  /* já usado acima, então vamos usar outro pseudo */
}

.testimonials .item .quote {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 60px;
  color: rgba(191,0,57,0.08);
  font-family: serif;
}

/* TEXTO */
.testimonials .item p {
  font-size: 15px !important;
  font-style: italic;
  color: var(--text-secondary) !important;
  line-height: 28px;
  position: relative;
  z-index: 2;
}

/* NOME */
.testimonials .item h4 {
  margin-top: 25px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-display);
  transition: 0.3s;
}

.testimonials .item:hover h4 {
  color: var(--primary);
}

/* CARGO */
.testimonials .item span {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 1px;
}

/* AVATAR */
.testimonials .item img {
  max-width: 48px;
  position: absolute;
  right: 25px;
  bottom: 25px;

  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);

  transition: 0.3s;
}

.testimonials .item:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(191,0,57,0.6);
  border-color: rgba(191,0,57,0.6);
}

/* DOTS MODERNOS */
.testimonials .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonials .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
  margin: 0 5px;
  transition: 0.3s;
}

.testimonials .owl-dots .active {
  width: 28px;
  border-radius: 20px;
  background: linear-gradient(90deg, var(--primary), #ff4d6d);
  box-shadow: 0 0 10px rgba(191,0,57,0.6);
}

/* =============================================
   CONTACT
   ============================================= */
section.contact-us {
  background-image: url(../images/Footer-01.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0; position: relative;
  overflow: hidden;
}
section.contact-us::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,8,16,0.7) 0%, rgba(8,8,16,0.95) 100%);
  z-index: 0;
}
section.contact-us:after { display: none; }
section.contact-us .container { position: relative; z-index: 2; }

section.contact-us .contact-info {
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  margin-top: -30px;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  z-index: 5; position: relative;
  padding: 24px;
}
section.contact-us .contact-info .icon i {
  float: left; margin-right: 15px;
  width: 50px; height: 50px;
  display: inline-block; text-align: center;
  line-height: 50px; border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  box-shadow: var(--glow);
}
section.contact-us .contact-info h4 {
  font-size: 16px; font-weight: 700;
  text-transform: uppercase;
  color: var(--text-primary);
  letter-spacing: 1px;
  font-family: var(--font-display);
}
section.contact-us .contact-info span {
  font-size: 14px; color: var(--primary); font-weight: 600;
}

section.contact-us .section-heading { text-align: left; margin-bottom: 40px; }

section.contact-us #contact {
  margin-left: -100px; position: relative; z-index: 5;
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  margin-top: 40px;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-lg);
  padding: 40px;
}
section.contact-us #contact input {
  width: 100%; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  outline: none;
  font-size: 13px; font-weight: 500;
  color: var(--text-primary);
  padding: 0 15px;
  margin-bottom: 24px;
  transition: var(--transition);
  font-family: var(--font-body);
}
section.contact-us #contact input:focus {
  border-color: var(--primary);
  box-shadow: var(--glow);
  background: rgba(191, 0, 57, 0.04);
}
section.contact-us #contact textarea {
  width: 100%; min-height: 140px; max-height: 180px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  outline: none;
  font-size: 13px; font-weight: 500;
  color: var(--text-primary);
  padding: 15px; margin-bottom: 24px;
  transition: var(--transition);
  font-family: var(--font-body);
  resize: vertical;
}
section.contact-us #contact textarea:focus {
  border-color: var(--primary);
  box-shadow: var(--glow);
  background: rgba(191, 0, 57, 0.04);
}
section.contact-us #contact input::placeholder,
section.contact-us #contact textarea::placeholder { color: var(--text-muted); }

section.contact-us #contact button {
  float: right;
  font-size: 13px; color: #fff;
  background: var(--gradient);
  padding: 13px 32px;
  display: inline-block;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none; outline: none;
  cursor: pointer;
  box-shadow: var(--glow);
}
section.contact-us #contact button:hover {
  background: var(--gradient-hover);
  box-shadow: var(--glow-strong);
  transform: translateY(-2px);
}

/* Social icons */
section.contact-us ul.social-icons { text-align: center; margin-top: 70px; }
section.contact-us ul.social-icons li { display: inline-block; margin: 0 5px; }
section.contact-us ul.social-icons li a {
  width: 44px; height: 44px;
  display: inline-block; text-align: center;
  line-height: 44px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: 50%;
  transition: var(--transition);
}
section.contact-us ul.social-icons li a:hover {
  background: var(--gradient);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

p.copyright {
  text-align: center;
  color: var(--text-muted);
  margin: 40px 0;
  font-size: 13px;
}
p.copyright a { font-weight: 600; color: var(--primary); }
.credit-hidden { display: none !important; }

/* =============================================
   PAGE HEADING
   ============================================= */
section.page-heading { margin-top: 190px; text-align: center; }
section.page-heading .header-text {
  border-bottom: 1px solid var(--border);
  padding-bottom: 80px;
}
section.page-heading .header-text h4 {
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 3px; color: var(--primary);
  font-family: var(--font-body);
}
section.page-heading .header-text h1 {
  font-size: 56px; font-weight: 700;
  color: var(--text-primary);
  margin-top: 10px;
  font-family: var(--font-display);
}

/* =============================================
   PRELOADER
   ============================================= */
#js-preloader {
  position: fixed; inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.preload-content { text-align: center; }
.js-loading-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 20px;
}
.js-loading-bar::after {
  content: '';
  display: block; height: 100%;
  background: var(--gradient);
  animation: loadbar 1.5s ease-in-out infinite;
}
@keyframes loadbar {
  0%   { width: 0; margin-left: 0; }
  50%  { width: 80%; margin-left: 10%; }
  100% { width: 0; margin-left: 100%; }
}

/* =============================================
   SEARCH
   ============================================= */
.search-input {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 80px;
  background: rgba(8, 8, 16, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
}
.search-input.active { display: flex; }
.search-input input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 20px;
  font-family: var(--font-body);
  width: 100%;
  max-width: 600px;
  caret-color: var(--primary);
}
.search-input input::placeholder { color: var(--text-muted); }

/* =============================================
   PORTFOLIO
   ============================================= */
section.our-portfolio { position: relative; }
.portfolio-items .item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.portfolio-items .item:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-6px);
}
.portfolio-items .item img { transition: var(--transition); }
.portfolio-items .item:hover img { transform: scale(1.04); }

.portfolio-items .item .hover-effect {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(197, 0, 43, 0.85) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex; align-items: flex-end;
  padding: 30px;
}
.portfolio-items .item:hover .hover-effect { opacity: 1; }
.portfolio-items .item .hover-effect h4 {
  color: #fff; font-size: 18px; font-weight: 700;
  font-family: var(--font-display);
}

/* Filter buttons */
.portfolio-filter { margin-bottom: 40px; text-align: center; }
.portfolio-filter li {
  display: inline-block; margin: 4px;
}
.portfolio-filter li a {
  padding: 8px 22px;
  border-radius: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px; font-weight: 600;
  letter-spacing: 1px;
  transition: var(--transition);
  font-family: var(--font-body);
}
.portfolio-filter li a:hover,
.portfolio-filter li a.active {
  background: var(--gradient);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--glow);
}

/* =============================================
   OUR TEAM
   ============================================= */
section.our-team { position: relative; }
section.our-team .naccs .menu div {
  text-align: center; margin: 0 10px;
  cursor: pointer;
  transition: var(--transition);
}
section.our-team .naccs .menu div img {
  border-radius: 50%;
  border: 3px solid var(--border);
  max-width: 80px;
  transition: var(--transition);
  filter: grayscale(30%);
}
section.our-team .naccs .menu div h4 {
  font-size: 14px; font-weight: 700;
  color: var(--text-secondary);
  margin-top: 12px;
  font-family: var(--font-display);
}
section.our-team .naccs .menu div span {
  font-size: 11px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
}
section.our-team .naccs .menu div.active img {
  border-color: var(--primary);
  box-shadow: var(--glow);
  filter: grayscale(0);
}
section.our-team .naccs .menu div.active h4 { color: var(--primary); }

section.our-team ul.nacc li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  overflow: hidden;
  opacity: 0;
  transform: translateX(50px);
  position: absolute; list-style: none;
  transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding-left: 50px;
}
section.our-team ul.nacc li.active {
  position: relative; transition-delay: 0.3s;
  z-index: 2; opacity: 1; transform: translateX(0);
}
section.our-team ul.nacc li .right-image {
  position: absolute; margin-left: 50px;
  top: 50%; transform: translateY(-50%);
  right: 0;
}
section.our-team ul.nacc li .right-image img {
  border-top-right-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}
section.our-team ul.nacc li .left-content {
  padding: 40px 0; margin-right: 350px;
}
section.our-team ul.nacc li .left-content h4 {
  font-size: 20px; color: var(--text-primary);
  margin-bottom: 25px; font-weight: 700;
  font-family: var(--font-display);
}
section.our-team ul.nacc li .left-content span a,
section.our-courses ul.nacc li .right-content span {
  margin-right: 30px; padding-right: 30px;
  border-right: 1px solid var(--border);
}

/* =============================================
   COUNT / STATS
   ============================================= */
section.fun-facts { position: relative; }
.fun-facts .count-area-content {
  text-align: center;
  padding: 40px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.fun-facts .count-area-content:hover {
  border-color: var(--border-active);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}
.fun-facts .count-area-content .count-digit {
  font-size: 48px; font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
  text-shadow: var(--glow);
}
.fun-facts .count-area-content .count-title {
  font-size: 14px; font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 2px;
  margin-top: 8px; font-family: var(--font-body);
}

/* =============================================
   GET INFO / SIMPLE INFO
   ============================================= */
section.get-info .left-image { margin-right: 45px; }
section.get-info .info-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 24px;
  transition: var(--transition);
  display: flex; gap: 20px; align-items: flex-start;
}
section.get-info .info-item:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-card-hover);
}
section.get-info .info-item .icon {
  width: 56px; height: 56px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(191, 0, 57, 0.12);
  border: 1px solid var(--border);
}
section.get-info .info-item h4 {
  font-size: 18px; font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

/* =============================================
   OUR OFFICE
   ============================================= */
section.our-office { position: relative; }
.our-office .count-area-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  margin-bottom: 30px;
  transition: var(--transition);
}
.our-office .count-area-content:hover {
  border-color: var(--border-active);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}
.our-office .count-area-content .count-digit {
  font-size: 48px; font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
}
.our-office .count-area-content .count-title {
  font-size: 13px; font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase; letter-spacing: 2px;
  margin-top: 8px;
}
section.our-office #video img { border-radius: var(--radius-lg); }

/* =============================================
   FEATURED PRODUCT (Services page)
   ============================================= */
section.featured-product { position: relative; }
section.featured-product .info-item {
  border-radius: var(--radius-lg);
  text-align: left;
  padding: 60px 30px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: relative;
  margin-bottom: 90px;
  transition: var(--transition);
}
section.featured-product .info-item:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-card-hover);
}
section.featured-product .last-info { margin-bottom: 0; }
section.featured-product .left-info .info-item .icon { right: 30px; top: -30px; }
section.featured-product .left-info .info-item { text-align: right; }
section.featured-product .right-info .info-item .icon { left: 30px; top: -30px; }
section.featured-product .info-item .icon {
  position: absolute; width: 80px; height: 80px;
  display: inline-block; border-radius: var(--radius-md);
  text-align: center; line-height: 80px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  box-shadow: var(--glow);
}
section.featured-product .info-item .icon img { max-width: 60%; }
section.featured-product .info-item h4 {
  margin-top: 15px; margin-bottom: 15px;
  font-size: 20px; font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-display);
}
section.featured-product .product-image { margin: 0 60px; }

/* =============================================
   MORE INFO / CONTACT US PAGE
   ============================================= */
section.more-info .section-heading { margin-bottom: 40px; text-align: left; }
section.more-info p { margin-bottom: 40px; }
section.more-info ul li {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--text-secondary); font-style: italic;
  margin-bottom: 20px;
}
section.more-info ul li:last-child { margin-bottom: 0; }
section.more-info .count-area-content { margin-bottom: 20px; margin-top: 20px; }
section.more-info .count-area-content .count-digit {
  background: var(--gradient);
  box-shadow: var(--glow);
  border-radius: var(--radius-md);
  text-align: center;
  display: inline-block;
  margin-left: 50%; transform: translateX(-40px);
  width: 80px; height: 80px; line-height: 80px;
  font-size: 28px; color: #fff;
  font-weight: 900; margin-bottom: -40px;
  position: relative; z-index: 2;
  font-family: var(--font-display);
}
section.more-info .count-area-content .count-title {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: 20px; font-weight: 700;
  color: var(--text-primary);
  padding: 50px 30px 30px;
  position: relative; z-index: 1;
  font-family: var(--font-display);
}

/* =============================================
   SCROLL ANIMATION CLASSES
   ============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.animated {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.zoom-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.zoom-in.animated {
  opacity: 1;
  transform: scale(1);
}

/* =============================================
   TECH CAROUSEL
   ============================================= */
.tech-carousel {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tech-carousel::-webkit-scrollbar { display: none; }
.tech-carousel .tech-logo {
  flex-shrink: 0;
  width: 100px; height: 60px;
  display: flex; align-items: center; justify-content: center;
  filter: grayscale(1) opacity(0.5);
  transition: var(--transition);
  cursor: pointer;
}
.tech-carousel .tech-logo:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.1);
}
.tech-carousel .tech-logo img { max-height: 40px; width: auto; }

/* =============================================
   STARFIELD (existing JS feature)
   ============================================= */
#rl-starfield {
  position: fixed !important;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: screen;
  overflow: visible;
}
#rl-starfield .star {
  position: absolute;
  width: 20em; height: 5px;
  background: linear-gradient(45deg, var(--primary), transparent);
  border-radius: 50%;
  filter: drop-shadow(0 0 8px var(--primary));
  will-change: transform, opacity;
  animation-name: rl-fall, rl-tailfade;
  animation-timing-function: linear, ease-out;
  animation-iteration-count: infinite, infinite;
}
@keyframes rl-fall {
  from { transform: translateX(120vw); }
  to   { transform: translateX(-40vw); }
}
@keyframes rl-tailfade {
  0%   { opacity: 1; width: 20em; }
  70%  { opacity: 0.5; width: 2em; }
  100% { opacity: 0; width: 0; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
body { overflow-x: hidden; }

@media (max-width: 1330px) {
  .services .owl-nav .owl-next { right: -30px; }
  .services .owl-nav .owl-prev { left: -25px; }
  .our-courses .owl-nav .owl-next { right: -30px; }
  .our-courses .owl-nav .owl-prev { left: -25px; }
}
@media (max-width: 1200px) {
  .main-banner .right-image { margin-left: 60px; }
  .main-banner .header-text h2 { font-size: 52px; }
  .services .owl-nav .owl-next { right: -70px; }
  .services .owl-nav .owl-prev { left: -65px; }
  .our-courses .owl-nav .owl-next { right: -70px; }
  .our-courses .owl-nav .owl-prev { left: -65px; }
}
@media (max-width: 1085px) {
  .services .owl-nav .owl-next { right: -30px; }
  .services .owl-nav .owl-prev { left: -25px; }
  .our-courses .owl-nav .owl-next { right: -30px; }
  .our-courses .owl-nav .owl-prev { left: -25px; }
}
@media (max-width: 1005px) {
  .services .owl-nav .owl-next,
  .services .owl-nav .owl-prev,
  .our-courses .owl-nav .owl-next,
  .our-courses .owl-nav .owl-prev { display: none; }
}
@media (max-width: 992px) {
  .main-banner .header-text { text-align: center; margin-bottom: 60px; }
  .main-banner .right-image { margin-left: 0; }
  section.our-courses ul.nacc { margin-left: 0 !important; }
  section.simple-cta { margin-top: 0; }
  section.simple-cta .left-image { margin-right: 0; margin-bottom: 45px; }
  section.contact-us .contact-info { margin-top: 15px; }
  section.contact-us #contact { margin-left: 0; }
  section.contact-us #contact button { float: none; }
  section.get-info .left-image { margin-right: 0; margin-bottom: 30px; }
  section.get-info .info-item { margin-top: 60px; }
  section.our-office #video { margin-left: 0; margin-top: 30px; }
  section.featured-product .left-info .info-item,
  section.featured-product .right-info .info-item {
    text-align: center;
    background: var(--bg-card);
    position: relative; z-index: 2;
  }
  section.featured-product .left-info .info-item .icon { right: 50%; transform: translateX(40px); }
  section.featured-product .right-info .info-item .icon { left: 50%; transform: translateX(-40px); }
  section.featured-product .product-image { margin: 60px; }
  section.our-team ul.nacc li .left-content span a,
  section.our-courses ul.nacc li .right-content span { margin-right: 15px; padding-right: 15px; }
}
@media (max-width: 767px) {
  section.our-courses ul.nacc li .left-image,
  section.our-team ul.nacc li .right-image {
    position: relative; margin-right: 0; margin-left: 0;
    transform: translateY(0);
  }
  section.our-courses ul.nacc li .left-image img,
  section.our-team ul.nacc li .right-image img { border-radius: var(--radius-md); }
  section.our-courses ul.nacc li,
  section.our-team ul.nacc li { padding: 0; }
  section.our-courses ul.nacc li .right-content { margin-left: 0; padding: 30px; }
  section.our-team ul.nacc li .left-content { margin-right: 0; padding: 30px; }
  section.our-team .naccs .menu div { width: 14%; margin: 0 5px; }
  section.our-team .naccs .menu div.active img { border: 3px solid var(--primary); }
  section.our-team .naccs .menu div h4,
  section.our-team .naccs .menu div span { display: none; }
  section.more-info .count-area-content .count-title { font-size: 18px; }
  .main-banner .header-text h2 { font-size: 38px; line-height: 50px; }
  section.simple-cta h4 { font-size: 36px; line-height: 46px; }
}
@media (max-width: 480px) {
  .section-heading h4 { font-size: 24px; line-height: 34px; }
  .main-button-gradient a, .white-button a, .white-btn a {
    padding: 11px 24px; font-size: 12px;
  }
}
/* ================= FIX MOBILE DEFINITIVO ================= */
@media (max-width: 767px) {

  /* LOGO */
  .header-area .main-nav .logo img {
    height: 40px !important;
    max-height: 40px !important;
    width: auto !important;
  }

  .header-area .main-nav .logo {
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
  }

  /* HAMBURGER */
  .header-area .main-nav .menu-trigger {
    display: block !important;
    position: absolute !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important;
  }

  /* GARANTE AS LINHAS */
  .header-area .main-nav .menu-trigger span,
  .header-area .main-nav .menu-trigger span:before,
  .header-area .main-nav .menu-trigger span:after {
    display: block !important;
    opacity: 1 !important;
  }

  /* NAV DROPDOWN */
  .header-area .main-nav .nav {
    position: absolute !important;
    top: 110px !important;
    left: 0;
    width: 100%;
    background: rgba(15,15,25,0.95);
  }

}
@media (max-width: 767px) {
  .header-area {
    height: 90px;
  }

  .header-area .main-nav {
    height: 90px;
    padding: 0 20px;
    position: relative;
  }

  .header-area .main-nav .logo {
    height: 90px;
    display: flex;
    align-items: center;
  }

  .header-area .main-nav .logo img {
    width: auto;
    max-height: 42px;
    display: block;
  }

  .header-area .main-nav .menu-trigger {
    display: block;
    right: 20px;
  }

  .header-area .main-nav .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
    background: #2c000d;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-radius: 10%;
    padding: 15px 0;
  }

  .header-area .main-nav .nav li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .header-area .main-nav .nav li a {
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-area .main-nav .nav li a::after {
    display: none;
  }

  .background-header {
    height: 70px !important;
    width: calc(100% - 20px);
  }

  .background-header .main-nav {
    height: 70px;
    padding: 0 16px;
  }

  .background-header .main-nav .logo {
    height: 70px;
  }

  .background-header .main-nav .logo img {
    max-height: 36px;
  }

  .background-header .main-nav .menu-trigger {
    right: 16px;
  }

  .background-header .main-nav .nav {
    top: 70px;
  }
}