@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Bebas+Neue&family=Maven+Pro:wght@400..900&family=PT+Mono&family=Space+Grotesk:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Special+Elite&display=swap');
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Roboto", sans-serif;
}

/* Global Colors */
:root {
  --background-modal: #000;
  --background-color: #000; /* Background color for the entire website, including individual sections */
  --default-color: #fafafa; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #ffffff; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff0000; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #1a1a1a; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #000000; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors */
:root {
  --nav-color: #fafafa; /* The default color of the main navmenu links */
  --nav-hover-color: rgba(255, 255, 255, 0.7); /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #1a1a1a; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #1a1a1a; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #fafafa; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ca1316; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #1a1a1a;
  --surface-color: #343434;
}

.dark-background {
  --background-color: rgba(15, 15, 15, 0.975);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #292929f9;
  --contrast-color: #000000;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: #cecece;
  font-family: var(--default-font);
}

a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, #007bff, transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  display: flex;
  align-items: center;
}

.header .logo img {
  height: 50px !important;
  width: auto;
  margin-right: 8px;
  
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}


.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(0, 0, 0, 0.8);
}

/*--------------------------------------------------------------
# Navigation Menu

--------------------------------------------------------------*/

/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.5s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  .content-container {
    flex-direction: column;
    max-height: none;
  }

  .video-container {
    width: 100%;
    padding: 0;
    aspect-ratio: 16 / 9;
  }

  #modalIframe {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .video-info {
    width: 100%;
    padding: 12px;
  }

}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
 
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: #d91100;
  font-family: "Montserrat", sans-serif;
}

.page-title .heading h1 span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
  font-weight: 500;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.page-title nav ol li + li {
  padding-left: 10px;
}

.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}


/*--------------------------------------------------------------
# Prod Section
--------------------------------------------------------------*/
.resume {
  margin-top: 100px;
}
.resume .resume-title {
  color: var(--heading-color);
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid var(--accent-color);
  position: relative;
}

.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--background-color);
  border: 2px solid var(--accent-color);
}

.titulo-page {
  color: #ffff;
}

/*--------------------------------------------------------------
# GALERIA RESPONSIVA
--------------------------------------------------------------*/
#video-gallery .container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Estilo para a galeria de vídeos */
.video-gallery {
  padding: 40px 10px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 0;
}

@media (min-width: 768px) {
  .video-gallery {
    margin-top: -5rem;
  }
}

@media (min-width: 1024px) {
  .video-gallery {
    margin-top: -10rem;
    padding: 70px 10px;
  }
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

/* Ajusta a grade para diferentes tamanhos de tela */
@media (min-width: 600px) {
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (min-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1440px) {
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 32px;
  }
}

.video-card {
  position: relative;
  width: 100%;
  background-color: transparent;
  padding: 10px;
  border-radius: 8px;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 8px;
}

.video-element, .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
}

.video-card h3 {
  margin-top: 10px;
  color: #333;
  font-size: 16px;
  padding: 10px 5px;
}

@media (min-width: 768px) {
  .video-card h3 {
    font-size: 18px;
  }
}

.video-card a {
  text-decoration: none;
  color: #333;
}

.video-card a:hover {
  color: #007bff;
}

/* Overlay com ícone de play e duração */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  transition: background 0.3s ease;
  padding: 10px;
}

/* Ícone de Play */
.play-icon {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 35px;
  height: 35px;
  background-color: #444444;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  opacity: 0;
}

@media (min-width: 768px) {
  .play-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    font-size: 18px;
  }
}

.video-card:hover .play-icon {
  opacity: 1;
}

.play-icon:before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid #000;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

@media (min-width: 768px) {
  .play-icon:before {
    border-left: 12px solid #000;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
}

.play-icon:hover {
  background-color: #D91100;
  transform: scale(1.1);
}

.play-icon:hover:before {
  border-left-color: #fff;
}

/* Duração do vídeo */
.duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(0,0,0,0.7);
  color: white;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
  .duration {
    padding: 3px 8px;
    font-size: 14px;
  }
}

.video-card:hover .duration {
  opacity: 1;
}

/* Botão Carregar Mais */
#loadMore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #D91100;
  color: white;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin: 20px auto;
  display: block;
}

@media (min-width: 768px) {
  #loadMore {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

#loadMore:hover {
  background-color: #b00d00;
  transform: scale(1.05);
}

#loadMore i {
  font-style: normal;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  #loadMore i {
    font-size: 1.2rem;
  }
}

/* MODAL RESPONSIVO */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.hidden {
  display: none !important;
}

/* Header do modal */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  height: auto;
  min-height: 40px;
}

@media (min-width: 768px) {
  .modal-header {
    padding: 10px 16px;
  }
}

.compartilhar-btn {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
}

@media (min-width: 768px) {
  .compartilhar-btn {
    font-size: 14px;
  }
}

.compartilhar-btn svg {
  margin-right: 4px;
}

@media (min-width: 768px) {
  .compartilhar-btn svg {
    margin-right: 6px;
  }
}

.modal-title {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

@media (min-width: 768px) {
  .modal-title {
    font-size: 16px;
  }
}

/* Conteúdo principal do modal */
.modal-content {
  flex: 1;
  display: flex;
  overflow: hidden;
  position: relative;
  padding: 5px;
  background-color: var(--background-modal, #000);
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .modal-content {
    padding: 10px;
  }
}

/* Layout do content-container - vertical em mobile, horizontal em desktop */
.content-container {
  display: flex;
  width: 100%;
  height: 100%;
  max-width: 1600px;
  max-height: 90vh;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .content-container {
    flex-direction: row;
  }
}

/* Container do vídeo */
.video-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-color: var(--background-modal, #000);
  overflow: hidden;
  padding: 5px;
  width: 100%;
}

@media (min-width: 768px) {
  .video-container {
    padding: 10px;
  }
}

@media (min-width: 1024px) {
  .video-container {
    flex: 3;
    flex-direction: row;
  }
}

#modalIframe {
  width: 100%;
  height: 40vh;
  object-fit: contain;
  display: block;
}

@media (min-width: 768px) {
  #modalIframe {
    height: 50vh;
  }
}

@media (min-width: 1024px) {
  #modalIframe {
    width: 70%;
    height: 80%;
    max-height: 80vh;
  }
}

/* Informações do vídeo */
.video-info {
  padding: 15px;
  background-color: var(--background-modal, #000);
  overflow-y: auto;
  width: 100%;
  margin-top: 0;
}

@media (min-width: 768px) {
  .video-info {
    padding: 20px;
  }
}

@media (min-width: 1024px) {
  .video-info {
    flex: 1;
    max-width: 380px;
    margin-top: 0;
  }
}

.video-info a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  display: block;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .video-info a {
    font-size: 22px;
    margin-bottom: 8px;
  }
}

.video-info h3 {
  font-size: 14px;
  color: #999;
  margin: 0 0 12px 0;
  font-weight: normal;
}

@media (min-width: 768px) {
  .video-info h3 {
    font-size: 15px;
    margin: 0 0 15px 0;
  }
}

#modalTitle {
  font-size: 18px;
  margin-bottom: 4px;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}

@media (min-width: 768px) {
  #modalTitle {
    font-size: 22px;
    margin-bottom: 6px;
  }
}

#modalTitle:hover {
  text-decoration: underline;
}

#modalSubtitle {
  font-size: 14px;
  margin-bottom: 12px;
  color: #ccc;
  font-weight: normal;
}

@media (min-width: 768px) {
  #modalSubtitle {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

.meta-info {
  margin: 10px 0;
}

@media (min-width: 768px) {
  .meta-info {
    margin: 12px 0;
  }
}

.video-date {
  color: #999;
  font-size: 12px;
  margin: 0;
}

@media (min-width: 768px) {
  .video-date {
    font-size: 14px;
  }
}

.description-container {
  margin-top: 12px;
  max-height: 150px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #555 #222;
}

@media (min-width: 768px) {
  .description-container {
    margin-top: 15px;
    max-height: 200px;
  }
}

.description-container::-webkit-scrollbar {
  width: 6px;
}

@media (min-width: 768px) {
  .description-container::-webkit-scrollbar {
    width: 8px;
  }
}

.description-container::-webkit-scrollbar-track {
  background: #222;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .description-container::-webkit-scrollbar-track {
    border-radius: 4px;
  }
}

.description-container::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .description-container::-webkit-scrollbar-thumb {
    border-radius: 4px;
  }
}

.video-description {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .video-description {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
}

.video-link {
  color: #3498db;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.video-link:hover {
  text-decoration: underline;
}

/* Navegação entre vídeos 
.modal-nav {
  position: absolute;
  top: calc(20vh + 20px);
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 5px;
  pointer-events: none;
  z-index: 10;
}
*/
@media (min-width: 768px) {
  .modal-nav {
    top: 50%;
    padding: 0 10px;
  }
}

.nav-btn {
  display: none;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
  pointer-events: auto;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .nav-btn {
    font-size: 36px;
    padding: 10px;
    width: 50px;
    height: 50px;
  }
}

.prev-btn {
  margin-left: 2px;
}

@media (min-width: 768px) {
  .prev-btn {
    margin-left: 5px;
  }
}

.next-btn {
  margin-right: 2px;
}

@media (min-width: 768px) {
  .next-btn {
    margin-right: 5px;
  }
}

.prev-btn:before {
  display: none;
  content: "⟨";
}

.next-btn:before {
  display: none;
  content: "⟩";
}

.nav-btn:hover {
  opacity: 1;
}

/* Botão de fechar */
.close-modal {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .close-modal {
    font-size: 24px;
  }
}