/* ==========================================================================
   ID INSTRUTORIA DEDICADA - ORIGINAL GOOGLE SITE RECREATION STYLESHEET
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&family=Roboto:wght@300;400;500;700;900&display=swap');

:root {
  /* Exact Original Site Colors */
  --bg-golden: #cb8c12;
  /* Original Ochre Yellow / Golden Section Background */
  --bg-golden-light: #deb567;
  /* Accent Golden */
  --bg-dark-bar: #4a433c;
  /* Original Translucent Dark Bar Background */
  --bg-dark-overlay: rgba(0, 0, 0, 0.75);
  --bg-white: #ffffff;
  --bg-light-grey: #f4f4f4;
  --bg-sub-title: #e3e3e3;

  --text-black: #000000;
  --text-dark: #212121;
  --text-white: #ffffff;
  --text-muted: #5e5e5e;

  --font-family: 'Open Sans', 'Roboto', sans-serif;

  --transition: all 0.25s ease-in-out;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: #ffffff;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Header Banner */
.header-banner {
  position: relative;
  width: 100%;
  height: 460px;
  background-image: url('../assets/images/header-banner.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 60px;
}

@media (max-width: 768px) {
  .header-banner {
    height: 380px;
    background-position: left center;
  }
}

@media (max-width: 480px) {
  .header-banner {
    height: 250px;
    background-position: left top;
  }
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.top-bar.scrolled {
  padding: 0.8rem 2rem;
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.site-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.top-bar.scrolled .site-title {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==========================================================================
   PREMIUM SERVIÇOS PAGE STYLES
   ========================================================================== */

.section-servicos-hero {
  background: #f8fafc;
  padding: 4rem 0 3rem 0;
}

.servicos-main-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.servico-card-horizontal {
  background: #ffffff;
  border: 1.5px solid #181818;
  border-left: 6px solid #181818;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 768px) {
  .servico-card-horizontal {
    grid-template-columns: 360px 1fr;
  }
}

.servico-card-horizontal:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #f5a623;
}

.servico-card-horizontal .servico-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  overflow: hidden;
  background: #181818;
}

.servico-card-horizontal .servico-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.servico-card-horizontal:hover .servico-img-wrapper img {
  transform: scale(1.05);
}

.servico-card-horizontal .servico-card-body {
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.servico-card-title-premium {
  font-size: 1.35rem;
  font-weight: 800;
  color: #181818;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.servico-card-desc-premium {
  font-size: 1rem;
  line-height: 1.7;
  color: #334155;
}

/* Feature Section Block (Dark Theme) */
.section-servicos-dark {
  background: radial-gradient(circle at 50% 50%, #1e1e1e 0%, #121212 70%, #0a0a0a 100%);
  padding: 5rem 0;
  color: #ffffff;
  border-top: 1px solid rgba(245, 166, 35, 0.2);
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
}

.senatran-list-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #f5a623;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #f1f5f9;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.senatran-list-item:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.5);
}

.senatran-list-item strong {
  color: #f5a623;
}

/* NRs Dark Card */
.nrs-dark-card-premium {
  background: #181818;
  border: 1.5px solid rgba(245, 166, 35, 0.3);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.nrs-title-premium {
  font-size: 1.25rem;
  font-weight: 800;
  color: #f5a623;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
  padding-bottom: 0.75rem;
}

.nrs-list-premium {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.nrs-list-premium li {
  font-size: 0.95rem;
  color: #e2e8f0;
  line-height: 1.5;
}

.nrs-list-premium li strong {
  color: #f5a623;
}

/* ==========================================================================
   CAROUSEL PREMIUM STYLES (PRODUTOS PERIGOSOS)
   ========================================================================== */

.carousel-container-premium {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
  border: 1.5px solid rgba(245, 166, 35, 0.4);
  background: #181818;
  max-width: 480px;
  margin: 0 auto;
}

.carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
  transform: scale(0.98);
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  background: rgba(15, 15, 15, 0.85);
  border: 1px solid rgba(245, 166, 35, 0.5);
  color: #f5a623;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.carousel-btn:hover {
  background: #f5a623;
  color: #141414;
  border-color: #f5a623;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 12px;
}

.next-btn {
  right: 12px;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  background: rgba(15, 15, 15, 0.75);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  padding: 0;
}

.carousel-dots .dot.active {
  background: #f5a623;
  transform: scale(1.3);
}

/* Mobile Navigation & Hamburger Menu */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #ffffff;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(245, 166, 35, 0.2);
  border-color: #f5a623;
  color: #f5a623;
}

.mobile-menu-btn i,
.mobile-menu-btn svg {
  width: 22px;
  height: 22px;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(12, 12, 12, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(245, 166, 35, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ==========================================================================
   PREMIUM CONTATOS PAGE STYLES
   ========================================================================== */

/* Utility Links Cards Grid */
.utility-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .utility-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.utility-card {
  background: #ffffff;
  border: 1.5px solid #181818;
  border-left: 5px solid #f5a623;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.utility-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #f5a623;
}

.utility-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;

  color: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.utility-info {
  display: flex;
  flex-direction: column;
}

.utility-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #181818;
  letter-spacing: 0.02em;
}

.utility-link-url-text {
  font-size: 0.8rem;
  color: #64748b;
  word-break: break-all;
  margin-top: 0.2rem;
}

/* Video Card Embed (16:9) */
.video-card-premium {
  background: #ffffff;
  border: 1.5px solid #181818;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.video-frame-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Ratio */
  background: #000000;
}

.video-frame-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card-caption {
  padding: 1.25rem 1.5rem;
  background: #ffffff;
}

.video-card-title-text {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
}

/* Social Buttons Grid */
.social-buttons-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-pill-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 2rem 0.65rem 0.85rem;
  border-radius: 999px;
  background: #181818;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid rgba(245, 166, 35, 0.4);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.social-pill-btn:hover {
  transform: translateY(-3px);
  background: #f5a623;
  color: #141414;
  border-color: #f5a623;
  box-shadow: 0 12px 30px rgba(245, 166, 35, 0.35);
}

.social-btn-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f5a623;
  color: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-btn-icon i,
.social-btn-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2px;
}

.social-pill-btn:hover .social-btn-icon {
  background: #ffffff;
  color: #141414;
  transform: scale(1.1);
}

/* Laptop Device Mockup for 16:9 Videos Side-by-Side */
.videos-laptop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .videos-laptop-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.laptop-video-card {
  display: flex;
  flex-direction: column;
}

.laptop-mockup-wrapper {
  position: relative;
  width: 100%;
}

.laptop-mockup-frame {
  position: relative;
  background: #1a1a1a;
  border: 10px solid #2a2a2a;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 166, 35, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.laptop-mockup-frame:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(245, 166, 35, 0.35);
}

.laptop-camera {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: #0d0d0d;
  border-radius: 50%;
  border: 1px solid #444444;
  z-index: 10;
}

.laptop-screen-16-9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  background: #000000;
  overflow: hidden;
}

.laptop-screen-16-9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.laptop-base-stand {
  height: 14px;
  background: linear-gradient(180deg, #333333 0%, #1a1a1a 100%);
  border-radius: 0 0 14px 14px;
  position: relative;
  margin-top: -1px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.laptop-center-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background: #111111;
  border-radius: 0 0 4px 4px;
}

.video-laptop-caption {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
  line-height: 1.5;
}

.nav-link {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  opacity: 0.9;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  border-bottom: 2px solid #ffffff;
}

/* Sub Header Translucent Strip */
.sub-header-bar {
  background: #f5a623;
  backdrop-filter: blur(4px);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sub-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.sub-header-title {
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 300;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 0.5rem 1.25rem;
  width: 100%;
  max-width: 360px;
}

.search-box input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  font-size: 0.9rem;
  color: #333;
}

.search-box svg {
  color: #666;
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

/* Sections */
.section-golden {
  background-color: var(--bg-golden);
  color: var(--text-black);
  padding: 3rem 0;
}

.section-white {
  background-color: var(--bg-white);
  color: var(--text-dark);
  padding: 3rem 0;
}

.section-dark-bar {
  background-color: var(--bg-dark-bar);
  color: var(--text-white);
  padding: 2.25rem 0;
  text-align: center;
}

.section-light-grey {
  background-color: var(--bg-light-grey);
  padding: 2rem 0;
}

.section-subtitle-bar {
  background-color: var(--bg-sub-title);
  color: var(--text-black);
  padding: 1rem 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Section Titles & Text */
.golden-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-black);
}

.golden-p {
  font-size: 1.1rem;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.7;
  color: var(--text-black);
}

.white-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--text-black);
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* Layout Grids & Flex */
.flex-2-col {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.flex-2-col>div {
  flex: 1 1 420px;
}

.bullet-box {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 4px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.bullet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .bullet-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.bullet-list {
  list-style: none;
}

.bullet-list li {
  font-size: 1rem;
  color: #212121;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bullet-list li::before {
  content: "▪";
  color: #000000;
  font-size: 1.2rem;
}

/* Golden Button */
.btn-golden {
  display: inline-block;
  background-color: var(--bg-golden);
  color: var(--text-black);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 2.5rem;
  border-radius: 4px;
  border: 1px solid #b87b0e;
  cursor: pointer;
  transition: var(--transition);
}

.btn-golden:hover {
  background-color: #b87b0e;
  color: #ffffff;
}

/* Services Cards Grid */
.servicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .servicos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.servico-card {
  text-align: center;
}

.servico-card img {
  border-radius: 4px;
  margin-bottom: 1.25rem;
  width: 100%;
  max-height: 280px;
  object-fit: cover;
}

.servico-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-black);
}

.servico-card-desc {
  font-size: 0.975rem;
  color: var(--text-black);
  line-height: 1.6;
}

/* NRs Dark Box */
.nrs-dark-card {
  background: #1e293b;
  color: #ffffff;
  padding: 2rem;
  border-radius: 6px;
  height: 100%;
}

.nrs-dark-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  color: #ffffff;
  border-bottom: 2px solid var(--bg-golden);
  padding-bottom: 0.5rem;
}

.nrs-dark-card ul {
  list-style: none;
}

.nrs-dark-card li {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Accordion / Dropdown Utilidades */
.accordion-header {
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-black);
  font-size: 1.5rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.accordion-body {
  display: none;
  padding-top: 1.5rem;
}

.accordion-body.active {
  display: block;
}

.utility-link-item {
  display: block;
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  color: #000000;
  font-weight: 600;
  font-size: 1.05rem;
  border: 1px solid #ddd;
  transition: var(--transition);
}

.utility-link-item:hover {
  background: #f8f8f8;
  border-color: var(--bg-golden);
}

.utility-link-url {
  font-size: 0.875rem;
  color: #555555;
  font-weight: 400;
  word-break: break-all;
  margin-top: 0.3rem;
}

/* Video Card Grid */
.video-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-title {
  font-weight: 600;
  font-size: 1.1rem;
  color: #000000;
  padding: 0 0.5rem 1rem;
}

/* Social Glassmorphism Buttons */
.social-outline-btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0.85rem auto;
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.social-outline-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
}

/* Mobile Navigation Toggle */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 6px;
    width: 200px;
    z-index: 100;
  }

  .nav-links.active {
    display: flex;
  }
}

/* ==========================================================================
   PREMIUM HISTÓRIA SECTION STYLES
   ========================================================================== */

.section-historia-premium {
  background: radial-gradient(circle at 50% 30%, #222222 0%, #141414 70%, #0d0d0d 100%);
  padding: 4.5rem 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(245, 166, 35, 0.2);
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
}

.section-historia-premium::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 166, 35, 0.12) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.historia-intro-card {


  border-radius: 16px;
  padding: 2rem 2.5rem;
  margin-bottom: 3.5rem;

  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.historia-intro-card:hover {
  border-color: rgba(245, 166, 35, 0.7);
  transform: translateY(-2px);
}

.historia-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: #f5a623;
  color: #141414;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.historia-intro-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #f0f0f0;
}

.historia-intro-text strong {
  color: #f5a623;
}

.historia-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}

@media (min-width: 992px) {
  .historia-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.historia-img-wrapper {
  position: relative;
}

@keyframes borderGlowPulse {
  0% {
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 0 rgba(245, 166, 35, 0);
  }

  50% {
    border-color: rgba(245, 166, 35, 0.95);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.8), 0 0 22px rgba(245, 166, 35, 0.45);
  }

  100% {
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 0 rgba(245, 166, 35, 0);
  }
}

.historia-img-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  border: 1.5px solid rgba(245, 166, 35, 0.4);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.historia-img-container:hover {
  transform: translateY(-4px);
  animation: borderGlowPulse 2.2s infinite ease-in-out;
}

.historia-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.historia-img-container:hover img {
  transform: scale(1.03);
}

.historia-stat-badge {
  position: absolute;
  background: rgba(26, 26, 26, 0.95);
  border: 1px solid rgba(245, 166, 35, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
}

.stat-badge-1 {
  bottom: 25px;
  left: 25px;
}

.stat-badge-2 {
  top: 25px;
  right: 25px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f5a623;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: #d0d0d0;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.historia-content {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.historia-subtitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #f5a623;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.historia-title {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 0.75rem;
  position: relative;
}

.historia-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #f5a623;
  border-radius: 2px;
  margin-top: 0.5rem;
}

.timeline-container {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.timeline-item {
  flex: 1;
  background: #1f1f1f;
  border: 1px solid rgba(245, 166, 35, 0.2);
  padding: 1rem;
  border-radius: 12px;
  transition: border-color 0.3s ease;
}

.timeline-item:hover {
  border-color: rgba(245, 166, 35, 0.6);
}

.timeline-marker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #141414;
  background: #f5a623;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.timeline-content p {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.4;
}

.historia-quote-card {
  position: relative;
  background: #1d1d1d;
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-left: 5px solid #f5a623;
  padding: 1.75rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.quote-icon {
  color: #f5a623;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.historia-quote-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #f0f0f0;
  font-style: italic;
  font-weight: 400;
}

/* ==========================================================================
   PREMIUM MISSÃO & PROPÓSITO SECTION STYLES
   ========================================================================== */

.section-missao-proposito-premium {
  background: #ffffff;
  padding: 4.5rem 0;
  color: #181818;
  position: relative;
  border-bottom: 1px solid #e2e8f0;
}

.missao-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}

@media (min-width: 992px) {
  .missao-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.missao-img-wrapper-stretch {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.missao-img-container-stretch {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border: 1.5px solid #181818;
  height: 100%;
  min-height: 380px;
}

.missao-img-container-stretch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.missao-img-container-stretch:hover img {
  transform: scale(1.03);
}

.missao-cards-column {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: space-between;
}

.missao-card-inverted,
.proposito-card-inverted {
  background: #f8fafc;
  border: 1.5px solid #181818;
  border-left: 6px solid #181818;
  border-radius: 14px;
  padding: 1.85rem 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.missao-card-inverted:hover,
.proposito-card-inverted:hover {
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(24, 24, 24, 0.15);
  transform: translateY(-2px);
}

.missao-card-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.missao-icon-badge-dark {
  width: 44px;
  height: 44px;
  border-radius: 10px;

  color: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;

}

.missao-card-title-dark {
  font-size: 1.35rem;
  font-weight: 800;
  color: #181818;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.missao-card-text-dark {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #2d3748;
}

/* ==========================================================================
   PREMIUM CONHEÇA A ID (CINEMA & LAPTOP MOCKUP STYLES)
   ========================================================================== */

.section-conheca-id-cinema {
  background: radial-gradient(circle at 50% 40%, #1e1e1e 0%, #121212 65%, #0a0a0a 100%);
  padding: 5rem 0 6rem 0;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(245, 166, 35, 0.2);
  border-bottom: 1px solid rgba(245, 166, 35, 0.2);
}

.conheca-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem auto;
}

.conheca-subtitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #f5a623;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.conheca-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.conheca-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #f5a623;
  border-radius: 2px;
  margin: 0.6rem auto 1.25rem auto;
}

.conheca-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.6;
}

/* ==========================================================================
   PREMIUM FIQUE POR DENTRO & CTA SECTION STYLES
   ========================================================================== */

.section-fique-por-dentro-premium {
  background: #f8fafc;
  padding: 4.5rem 0 5rem 0;
  border-top: 1px solid #e2e8f0;
}

.fique-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

.fique-subtitle {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: #f5a623;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.fique-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #181818;
  margin-bottom: 0.75rem;
  position: relative;
  display: inline-block;
}

.fique-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #f5a623;
  border-radius: 2px;
  margin: 0.5rem auto 1rem auto;
}

.fique-desc {
  font-size: 1.15rem;
  font-weight: 700;
  color: #334155;
}

/* Feature Grid Cards */
.features-grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto 4rem auto;
}

@media (min-width: 768px) {
  .features-grid-container {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-pill-card {
  background: #ffffff;
  border: 1.5px solid #181818;
  border-left: 5px solid #181818;
  border-radius: 12px;
  padding: 1.15rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-pill-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #f5a623;
}

.feature-icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #181818;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.feature-text {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
}

/* CTA Contact Banner */
.cta-contact-banner {
  background: linear-gradient(135deg, #181818 0%, #262626 100%);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-contact-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-contact-desc {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-golden-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #cb8c12 0%, #e5a522 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(203, 140, 18, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-golden-lg:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(203, 140, 18, 0.55);
  color: #ffffff;
}

/* Footer Premium */
.footer-premium {
  background: #0f0f0f;
  color: #94a3b8;
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  border-top: 1px solid #222222;
}

.footer-disclaimer {
  color: #64748b;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* Device Smartphone Mockup Frame (9:16 Vertical Ratio) */
.phone-mockup-wrapper {
  max-width: 350px;
  margin: 0 auto;
  position: relative;
}

.phone-frame {
  position: relative;
  background: #0d0d0d;
  border: 12px solid #242424;
  border-radius: 44px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 35px rgba(245, 166, 35, 0.25);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.phone-frame:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.85), 0 0 50px rgba(245, 166, 35, 0.4);
}

.phone-dynamic-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 95px;
  height: 20px;
  background: #000000;
  border-radius: 12px;
  z-index: 15;
  box-shadow: inset 0 0 3px rgba(255, 255, 255, 0.1);
}

.phone-screen {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  /* 9:16 Vertical Aspect Ratio */
  background: #000000;
  overflow: hidden;
  border-radius: 32px;
}

.phone-screen iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.phone-home-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  z-index: 15;
}