/* Custom styles for Retrospectiva Cinematográfica */

@font-face {
  font-family: 'Reey';
  src: url('../reeyfonts/Reey-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --primary: #ff5400;
  --theme: #ff5400;
}

.hero-section-version1 {
  background: #0f0a08 !important; /* Dark warm background fallback */
  padding: 340px 5px 300px !important;
}

@media (max-width: 1399px) {
  .hero-section-version1 {
    padding: 280px 5px 240px !important;
  }
}
@media (max-width: 1199px) {
  .hero-section-version1 {
    padding: 240px 5px 220px !important;
  }
}
@media (max-width: 991px) {
  .hero-section-version1 {
    padding: 200px 5px 200px !important;
  }
}
@media (max-width: 767px) {
  .hero-section-version1 {
    padding: 180px 5px 170px !important;
  }
}
@media (max-width: 575px) {
  .hero-section-version1 {
    padding: 140px 5px 120px !important;
  }
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: grayscale(100%) contrast(1.2);
}

.hero-red-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 84, 0, 0.75), rgba(15, 10, 8, 0.9));
  mix-blend-mode: multiply;
  z-index: -1;
}

.hero-section-version1 .hero-v1-content .hero-title {
  font-size: clamp(32px, 5.5vw, 68px) !important;
  letter-spacing: 8px !important;
  line-height: 1.2;
}



/* 16:9 Showcase Cards */
.video-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.video-card {
  background: linear-gradient(145deg, #181818, #0e0e0e);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 84, 0, 0.4);
  box-shadow: 0 25px 50px rgba(255, 84, 0, 0.12), inset 0 0 15px rgba(255, 84, 0, 0.05);
}

.video-card-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.video-card-ratio video,
.video-card-ratio iframe,
.video-card-ratio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.video-card:hover .video-card-ratio video,
.video-card:hover .video-card-ratio iframe,
.video-card:hover .video-card-ratio img {
  transform: scale(1.04);
}

.video-card-content {
  padding: 24px;
}

.video-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.video-card-desc {
  font-size: 14px;
  color: #a0a0a0;
  line-height: 1.6;
  margin-bottom: 24px;
}

.video-card .btn-brand-outline {
  border-radius: 30px;
  border: 2px solid rgba(255, 84, 0, 0.25);
  color: #ff5400;
  background: transparent;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: 100%;
}

.video-card .btn-brand-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 5px 15px rgba(255, 84, 0, 0.25);
  transform: translateY(-1px);
}

/* Custom Pricing Cards style */
.pricing-card {
  background: #1b1b1b;
  border: 2px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card.recommended {
  border-color: var(--primary);
  background: #1e1512; /* Subtle warm dark background */
  box-shadow: 0 10px 30px rgba(255, 84, 0, 0.1);
}

.pricing-card.recommended::before {
  content: 'MAIS VENDIDO';
  position: absolute;
  top: 15px;
  right: -35px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 35px;
  transform: rotate(45deg);
  letter-spacing: 1px;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pricing-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-price {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 20px 0;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--pra-clr);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.pricing-features li {
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--pra-clr);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--primary);
}

/* Custom buttons */
.btn-brand-primary {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 25px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: 100%;
  border: none;
}

.btn-brand-primary:hover {
  background: #e04a00;
  color: #fff;
  transform: translateY(-2px);
}

.btn-brand-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-brand-outline:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

/* WhatsApp Icon & green accents */
.whatsapp-clr {
  color: #25d366 !important;
}

/* Accordion customization for FAQ */
.faq-accordion .accordion-item {
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: #1b1b1b;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  padding: 20px;
  border: none;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #222;
  color: var(--primary);
}

.faq-accordion .accordion-button::after {
  filter: invert(1);
}

.faq-accordion .accordion-body {
  background: #161616;
  color: var(--pra-clr);
  font-size: 16px;
  line-height: 1.6;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Target Audience Background Video Styling */
.new-podcast-sectionv2 {
  background: linear-gradient(135deg, rgba(255, 84, 0, 0.15), rgba(15, 10, 8, 0.95)), url('../img/banner/new-podcastbg.webp') no-repeat center center / cover !important;
  overflow: hidden !important;
}

.new-podcast-sectionv2 .container {
  position: relative;
  z-index: 2;
}

/* "A Nossa Entrega" Section Desktop Alignment Overrides */
@media (min-width: 992px) {
  .about-delivery-row {
    align-items: stretch !important;
  }
  .about-delivery-col-img {
    position: relative !important;
  }
  .about-delivery-img-container {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }
  .about-delivery-img {
    height: 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}

/* Header Logo Size Adjustments */
.header-section .brand-logo {
  max-width: 110px !important;
}

@media (max-width: 1199px) {
  .header-section .brand-logo {
    max-width: 75px !important;
  }
}

/* Header Spacer to center navigation links on desktop */
.header-spacer {
  width: 110px !important;
}

@media (max-width: 1199px) {
  .header-spacer {
    width: 75px !important;
  }
}

/* Botão Flutuante do WhatsApp */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 2px 5px 20px rgba(37, 211, 102, 0.4);
}

/* Ajuste de posição no celular */
@media (max-width: 767px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
  }
}
