/* ===================================
   VT FILMS - STYLESHEET PRINCIPAL
   Tema Escuro com Paleta Verde Neon
   =================================== */

:root {
  --primary-color: #eda824;
  --primary-dark: #eda824;
  --bg-dark: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --text-light: #f5f5f5;
  --text-muted: #a0a0a0;
  --border-color: #333333;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  background-color: rgba(15, 15, 15, 0.95);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand-icon {
  background-color: var(--primary-color);
  color: var(--bg-dark);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.nav-link {
  color: var(--text-light) !important;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.btn-contact-nav {
  background-color: var(--primary-color);
  color: var(--bg-dark);
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-contact-nav:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.7) 0%, rgba(15, 15, 15, 0.5) 100%),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgb(34,197,94);stop-opacity:0.1" /><stop offset="100%" style="stop-color:rgb(34,197,94);stop-opacity:0.05" /></linearGradient></defs><rect width="1200" height="600" fill="url(%23grad)"/></svg>');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: fadeInUp 1s ease;
}

.hero h1 .accent {
  color: var(--primary-color);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.4s backwards;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-dark);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== SEÇÕES GERAIS ===== */
section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}

.section-title .accent {
  color: var(--primary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== ABOUT SECTION ===== */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  background-color: rgba(34, 197, 94, 0.05);
}

.feature-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.about-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-card .btn-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.service-card .btn-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ===== AWARDS SECTION ===== */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

.award-card {
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.award-card:hover {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.award-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.award-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.award-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  background-color: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.portfolio-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(34, 197, 94, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-category {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.portfolio-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.portfolio-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== CLIENTS SECTION ===== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.client-card {
  background-color: var(--bg-secondary);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}

.client-card:hover {
  border-color: var(--primary-color);
  background-color: rgba(34, 197, 94, 0.05);
  transform: scale(1.05);
}

.client-logo {
  font-size: 2.5rem;
}

.client-name {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.stat-card {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== BLOG SECTION ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background-color: var(--bg-secondary);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(34, 197, 94, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-category {
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.blog-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.blog-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-card .btn-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.blog-card .btn-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ===== CONTACT FORM ===== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  min-width: 30px;
}

.contact-item h4 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  color: var(--text-light);
  font-family: inherit;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-submit {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary-color);
  color: var(--bg-dark);
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 4px;
  text-align: center;
  font-weight: 500;
  display: none;
}

.form-message.success {
  background-color: rgba(34, 197, 94, 0.2);
  color: var(--primary-color);
  display: block;
}

.form-message.error {
  background-color: rgba(239, 68, 68, 0.2);
  color: #ef4444;
  display: block;
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.footer-section ul li a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--bg-dark);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
  z-index: 999;
  text-decoration: none;
}

.whatsapp-button:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .navbar-toggler {
    border-color: var(--primary-color);
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2322c55e' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }

  section {
    padding: 3rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .whatsapp-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .services-grid,
  .portfolio-grid,
  .blog-grid,
  .awards-grid,
  .clients-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    flex-direction: column;
  }
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* VIDEO */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: 1;
}

/* CAMADA ESCURA */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.55);
    z-index: 2;
}

/* CONTEÚDO */
.hero-content {
    position: relative;
    z-index: 3;

    text-align: center;
    color: #fff;

    max-width: 800px;
    padding: 20px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    z-index: 3;

    color: #fff;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* VIDEO */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: translate(-50%, -50%);

    z-index: 1;
}

/* MOBILE FIX */
@media (max-width: 768px) {

    .hero-video {
        width: auto;
        height: 100%;

        min-width: 100%;
        min-height: 100%;
    }

    .hero-content {
        padding: 20px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }
}
/* =========================================
VT FILMS SERVICES
========================================= */

.vt-services {

    position: relative;
    padding: 120px 20px;
    overflow: hidden;
    background: #111;

}

/* FUNDO BLUR */

.vt-services::before {

    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #ff5b2e;
    filter: blur(180px);
    opacity: .18;
    left: -150px;
    top: 180px;
    z-index: 0;

}

.vt-services::after {

    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #ff5b2e;
    filter: blur(180px);
    opacity: .12;
    right: -150px;
    bottom: -100px;
    z-index: 0;

}

.vt-container {

    max-width: 1280px;
    margin: auto;
    position: relative;
    z-index: 2;

}

/* TOPO */

.vt-top {

    text-align: center;
    margin-bottom: 90px;

}

.vt-subtitle {

    max-width: 760px;
    margin: auto;
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;

}

.vt-subtitle span {

    background: #eda824;
    padding: 0 8px;

}

.vt-button {

    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #eda824;
    color: #fff;
    text-decoration: none;
    padding: 18px 34px;
    border-radius: 100px;
    font-weight: 700;
    transition: .3s;

}

.vt-button span {

    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

}

.vt-button:hover {

    transform: translateY(-4px);

}

/* GRID */

.vt-grid {

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;

}

/* TEXTO */

.vt-text-box {

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;

}

.vt-text-box h2 {

    color: #fff;
    font-size: 68px;
    line-height: 1;
    margin-bottom: 24px;
    font-weight: 800;

}

.vt-highlight {

    display: inline-block;
    background: #eda824;
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.05;
    padding: 8px 14px;
    width: fit-content;

}

/* CARDS */

.vt-card {

    min-height: 320px;
    border-radius: 18px;
    padding: 42px;
    color: #fff;
    transition: .35s;
    position: relative;
    overflow: hidden;

}

.vt-card:hover {

    transform: translateY(-8px);

}

.vt-icon {

    font-size: 42px;
    margin-bottom: 28px;

}

.vt-card h3 {

    font-size: 34px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 800;

}

.vt-card p {

    font-size: 19px;
    line-height: 1.6;
    opacity: .92;

}

/* CORES */

.card-orange {

    background: #eda824;

}

.card-yellow {

    background: #dd8a26;

}

.card-blue {

    background: #3c7db8;

}

.card-cyan {

    background: #38a4a4;

}

.card-purple {

    background: #9237b9;

}

/* RESPONSIVO */

@media(max-width: 1100px){

    .vt-grid {

        grid-template-columns: repeat(2,1fr);

    }

    .vt-text-box {

        grid-column: span 2;

    }

    .vt-text-box h2 {

        font-size: 54px;

    }

}

@media(max-width: 768px){

    .vt-grid {

        grid-template-columns: 1fr;

    }

    .vt-text-box {

        grid-column: span 1;

    }

    .vt-subtitle {

        font-size: 28px;

    }

    .vt-text-box h2 {

        font-size: 42px;

    }

    .vt-highlight {

        font-size: 34px;

    }

    .vt-card {

        min-height: auto;

    }

}
/* =========================================
VT FILMS GALLERY PREMIUM
========================================= */

.vt-gallery-section {

    position: relative;
    padding: 140px 20px;
    background: #0d0d0f;
    overflow: hidden;

}

/* CONTAINER */

.vt-gallery-container {

    max-width: 1400px;
    margin: auto;
    position: relative;
    z-index: 2;

}

/* BLURS */

.vt-gallery-blur {

    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(180px);
    z-index: 0;

}

.blur-left {

    background: #eda824;
    left: -200px;
    top: 250px;
    opacity: .14;

}

.blur-right {

    background: #9333ea;
    right: -180px;
    bottom: 0;
    opacity: .12;

}

/* HEADER */

.vt-gallery-header {

    max-width: 900px;
    margin: auto;
    text-align: center;
    margin-bottom: 80px;

}

.vt-gallery-badge {

    display: inline-flex;
    padding: 12px 22px;

    border-radius: 100px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);

    color: #eda824;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    margin-bottom: 28px;

}

.vt-gallery-header h2 {

    color: #fff;
    font-size: 72px;
    line-height: 1;
    font-weight: 800;

    margin-bottom: 26px;

}

.vt-gallery-header p {

    color: rgba(255,255,255,.7);

    font-size: 22px;
    line-height: 1.7;

}

/* GRID */

.vt-gallery-grid {

    display: grid;

    grid-template-columns:
    repeat(3,1fr);

    gap: 24px;

}

/* ITEM */

.vt-gallery-item {

    position: relative;

    overflow: hidden;

    border-radius: 26px;

    cursor: pointer;

    min-height: 340px;

    background: #151518;

    isolation: isolate;

}

.vt-gallery-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
    transform 1s cubic-bezier(.19,1,.22,1),
    filter .5s;

}

/* OVERLAY */

.vt-gallery-overlay {

    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 30px;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.88),
        transparent
    );

}

.vt-gallery-overlay span {

    color: #fff;

    font-size: 20px;
    font-weight: 700;

}

/* HOVER */

.vt-gallery-item:hover img {

    transform: scale(1.08);

}

.vt-gallery-item::before {

    content: "";

    position: absolute;
    inset: 0;

    background:
    linear-gradient(
        135deg,
        rgba(255,91,46,.25),
        transparent 60%
    );

    opacity: 0;

    transition: .5s;

    z-index: 1;

}

.vt-gallery-item:hover::before {

    opacity: 1;

}

/* LIGHTBOX */

.vt-lightbox {

    position: fixed;
    inset: 0;

    background: rgba(0,0,0,.92);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: .4s;

    z-index: 99999;

    padding: 40px;

}

.vt-lightbox.active {

    opacity: 1;
    visibility: visible;

}

.vt-lightbox-image {

    max-width: 90%;
    max-height: 90vh;

    border-radius: 22px;

    transform: scale(.9);

    transition: .4s;

    box-shadow:
    0 20px 80px rgba(0,0,0,.5);

}

.vt-lightbox.active .vt-lightbox-image {

    transform: scale(1);

}

/* CLOSE */

.vt-lightbox-close {

    position: absolute;

    top: 30px;
    right: 40px;

    color: #fff;

    font-size: 48px;

    cursor: pointer;

    transition: .3s;

}

.vt-lightbox-close:hover {

    transform: rotate(90deg);

    color: #eda824;

}

/* RESPONSIVO */

@media(max-width: 992px){

    .vt-gallery-grid {

        grid-template-columns:
        repeat(2,1fr);

    }

    .vt-gallery-header h2 {

        font-size: 52px;

    }

}

@media(max-width: 768px){

    .vt-gallery-grid {

        grid-template-columns: 1fr;

    }

    .vt-gallery-header h2 {

        font-size: 38px;

    }

    .vt-gallery-header p {

        font-size: 18px;

    }

}
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}