* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: rgb(14, 15, 45);
  overflow-x: hidden;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 0;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* Skeleton loading animation */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Animações */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Animations */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Classes para animações de scroll */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.scroll-fade-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.scroll-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-scale.animate {
  opacity: 1;
  transform: scale(1);
}

.scroll-zoom {
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-zoom.animate {
  opacity: 1;
  transform: scale(1);
}

.scroll-rotate {
  opacity: 0;
  transform: rotate(-5deg) scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-rotate.animate {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Otimizações de performance */
img {
  content-visibility: auto;
  contain-intrinsic-size: 200px;
  transform: translateZ(0);
  backface-visibility: hidden;
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Prevenir layout shift */
img[loading="lazy"] {
  min-height: 200px;
  background: rgba(255, 255, 255, 0.05);
}

/* Otimização: reduzir repaints em elementos com background */
section, .section-hero, .section-about {
  transform: translateZ(0);
  contain: layout style paint;
}


.App {
  width: 100%;
  min-height: 100vh;
  background-color: rgb(14, 15, 45);
  color: rgb(255, 255, 255);
  overflow-x: hidden;
  overflow-y: visible;
}

#root {
  background-color: rgb(14, 15, 45);
  min-height: 100vh;
  overflow-y: visible;
}

/* ============================================
   NOTICE BANNER
   ============================================ */
.notice {
  width: 100%;
  background-color: black;
  padding: 12px 20px;
  text-align: center;
}

.notice .container {
  max-width: 1200px;
  margin: 0 auto;
}

.notice .text {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3em;
  color: rgb(255, 255, 255);
  margin: 0;
}
/* Blur apenas no mobile */
@media (max-width: 768px) {
  .section-hero .blur {
    background: rgba(14, 15, 45, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 8px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .section-hero .blur {
    width: 100%;
    background: rgba(14, 15, 45, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 15px;
  }
}

@media (max-width: 410px) {
  .section-hero .blur {
    background: rgba(14, 15, 45, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 8px;
  }
}

@media (max-width: 370px) {
  .section-hero .blur {
    background: rgba(14, 15, 45, 0.3);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 8px;
    padding: 12px;
  }
}
.notice .text strong {
  font-weight: 700;
}

/* Tablet - 810px */
@media (max-width: 810px) {
  .notice {
    padding: 10px 15px;
  }

  .notice .text {
    font-size: 14px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .notice {
    padding: 10px 12px;
  }

  .notice .text {
    font-size: 12px;
    line-height: 1.4em;
  }
}

/* Smartphone pequeno - 480px */
@media (max-width: 480px) {
  .notice {
    padding: 8px 10px;
  }

  .notice .text {
    font-size: 10px;
  }
}

/* Smartphone muito pequeno - 370px */
@media (max-width: 370px) {
  .notice {
    padding: 8px 8px;
  }

  .notice .text {
    font-size: 12px;
    line-height: 1.5em;
  }
}

/* ============================================
   HERO SECTION (Header)
   ============================================ */
.section-hero {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.section-hero .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.section-hero .bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72%;
  content-visibility: auto;
}

.section-hero .container {
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: left;
}

.section-hero .content {
    width: 65%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-hero .title {
  font-family: "Playfair Display", "Playfair Display Placeholder", serif;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.3em;
  color: rgb(255, 225, 166);
  justify-content: center;
  margin-bottom: 30px;
  animation: fadeInDown 0.8s ease-out;
}

/* Responsividade de 4K até Desktop */
@media (min-width: 3840px) {
  .section-hero .title {
    font-size: 72px;
    margin-bottom: 75px;
    white-space: nowrap;
  }
  
  .section-hero .text-line {
    font-size: 40px;
    margin-bottom: 60px;
  }
  
  .section-hero .desc-text {
    font-size: 24px;
  }
  
  .section-strategic .title {
    font-size: 96px;
  }
  
  .section-strategic .subtitle {
    font-size: 48px;
  }
  
  .section-strategic .text {
    font-size: 24px;
  }
  
  .section-clients .title {
    font-size: 96px;
  }
  
  .section-clients .subtitle {
    font-size: 48px;
  }
  
  .section-about .about-title {
    font-size: 90px;
  }
  
  .section-about .about-tagline {
    font-size: 48px;
  }
  
  .section-about .about-paragraph {
    font-size: 27px;
  }
}

@media (min-width: 2560px) and (max-width: 3839px) {
  .section-hero .title {
    font-size: 60px;
    margin-bottom: 60px;
    white-space: nowrap;
  }
  
  .section-hero .text-line {
    font-size: 32px;
    margin-bottom: 50px;
  }
  
  .section-hero .desc-text {
    font-size: 20px;
  }
  
  .section-strategic .title {
    font-size: 80px;
  }
  
  .section-strategic .subtitle {
    font-size: 40px;
  }
  
  .section-strategic .text {
    font-size: 20px;
  }
  
  .section-clients .title {
    font-size: 80px;
  }
  
  .section-clients .subtitle {
    font-size: 40px;
  }
  
  .section-about .about-title {
    font-size: 75px;
  }
  
  .section-about .about-tagline {
    font-size: 40px;
  }
  
  .section-about .about-paragraph {
    font-size: 22px;
  }
}

@media (min-width: 1920px) and (max-width: 2559px) {
  .section-hero .title {
    font-size: 54px;
    margin-bottom: 30px;
    white-space: nowrap;
  }
  
  .section-hero .text-line {
    font-size: 30px;
    margin-bottom: 30px;
  }
  
  .section-hero .desc-text {
    font-size: 18px;
  }
  
  .section-strategic .title {
    font-size: 72px;
  }
  
  .section-strategic .subtitle {
    font-size: 36px;
  }
  
  .section-strategic .text {
    font-size: 18px;
  }
  
  .section-clients .title {
    font-size: 72px;
  }
  
  .section-clients .subtitle {
    font-size: 36px;
  }
  
  .section-about .about-title {
    font-size: 68px;
  }
  
  .section-about .about-tagline {
    font-size: 36px;
  }
  
  .section-about .about-paragraph {
    font-size: 20px;
  }
}

.section-hero .text-line {
  font-family: "Montserrat", "Montserrat Placeholder", sans-serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 400;
  color: rgb(255, 255, 255);
margin-bottom: 30px;
  letter-spacing: 0;
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-hero .text-line strong {
  font-weight: 800;
}

.section-hero .text-line.bold {
  font-weight: 800;
}

.section-hero .text-line .normal {
  font-weight: 400;
}

.section-hero .text-line.highlight {
  color: rgb(255, 225, 166);
  text-decoration: underline;
}

.section-hero .description-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.section-hero .description {
  margin: 0 auto;
  max-width: 650px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 15px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.section-hero .desc-text {
  font-family: "Montserrat", "Montserrat Placeholder", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: rgb(255, 255, 255);
  margin: 0;
  text-align: center;
  white-space: normal;
  word-spacing: normal;
  max-width: 100%;
}

/* Quebras de linha mobile - ocultas no desktop */
.section-hero .desc-text br.mobile-break {
  display: none;
}

.section-hero .desc-text strong {
  font-weight: 800;
}

.section-hero .desc-text .normal {
  font-weight: 400;
}

.section-hero .cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* Tablet - 810px */
@media (max-width: 810px) {
  .section-hero .bg-image {
    object-position: top center;
  }

  .section-hero .container {
    padding: 30px 15px;
  }

  .section-hero .content {
    width: 100% !important;
  }

  .section-hero .title {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .section-hero .text {
    margin-bottom: 30px;
  }

  .section-hero .text-line {
    font-size: 24px;
    line-height: 30px;
   
  }

  .section-hero .description { 
    margin: 30px auto;
    max-width: 100%;
  }

  .section-hero .desc-text {
    font-size: 18px;
  }

  .section-hero .cta {
    margin-top: 30px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .section-hero {
    height: 85vh;
    padding: 0;
    align-items: center;
  }

  .section-hero .bg {
    background-image: url('../imgs/background-mobile.png');
    background-size: cover;
    background-position: top 0% center;
    background-repeat: no-repeat;
  }

  .section-hero .bg-image {
    display: none;
  }

  .section-hero .container {
    padding: 10px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .section-hero .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .section-hero .title {
    font-size: 36px;
    margin-bottom: 0;
    margin-top: 0;
    flex-shrink: 0;
    line-height: 1.2;
    max-height: calc(1.2em * 2);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .section-hero .bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    min-height: 0;
    gap: 10px;
  }

  .section-hero .text {
    margin-bottom: 0;
  }

  .section-hero .description-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .section-hero .description {
    margin: 0 auto;
    gap: 0;
  }

  .section-hero .cta {
    margin-top: 0;
    flex-shrink: 0;
  }

  .section-hero .text-line {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: 0;
  }

  .section-hero .desc-text {
    font-size: 14px;
    margin: 0;
    line-height: 0.7em;
  }

  /* Mostrar quebras de linha no mobile */
  .section-hero .desc-text br.mobile-break {
    display: block;
    line-height: 0.5;
    height: 0.3em;
  }

  .section-hero .text {
    margin-bottom: 0;
    font-size: 21px;
  }

  .section-hero .description-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 5px;
  }

  .section-hero .description {
    margin: 0 auto;
    margin-bottom: 10px;
  }

  .section-hero .cta {
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  .section-hero {
    height: 88vh;
  }
}

/* Smartphone pequeno - 480px */
@media (max-width: 480px) {
  .section-hero {
    height: 88vh;
  }

  .section-hero .bg {
    background-image: url('../imgs/background-mobile.png');
    background-size: cover;
    background-position: top 0% center;
    background-repeat: no-repeat;
  }

  .section-hero .bg-image {
    display: none;
  }
}

/* iPhone SE e similares - 375px */
@media (max-width: 375px) {
  .section-hero .bg {
    background-image: url('../imgs/background-mobile.png');
    background-size: cover;
    background-position: top 0% center;
    background-repeat: no-repeat;
  }

  .section-hero .bg-image {
    display: none;
  }

  .section-hero .container {
    padding: 10px 0;
    height: 100%;
  }

  .section-hero .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .section-hero .title {
    font-size: 32px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .section-hero .bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    min-height: 0;
  }

 

  .section-hero .text-line {
    font-size: 22px;
    line-height: 26px;
    margin: 6px 0;
    letter-spacing: 1px;
  }

  .section-hero .desc-text {
    font-size: 15px;
    margin: 0;
    line-height: 1.3;
  }

  /* Mostrar quebras de linha no mobile */
  .section-hero .desc-text br.mobile-break {
    display: block;
    line-height: 0.5;
    height: 0.3em;
  }

  .section-hero .cta {
    margin-top: 0;
  }
}

@media (max-width: 410px) {
    .section-hero {
      height: 85vh;
    }

    .section-hero .bg {
      background-image: url('../imgs/background-mobile.png');
      background-size: cover;
      background-position: top 0% center;
      background-repeat: no-repeat;
    }

    .section-hero .bg-image {
      display: none;
    }
  
    .section-hero .container {
      padding: 10px 0;
      height: 100%;
    }
  
    .section-hero .content {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
  
    .section-hero .title {
      font-size: 28px;
      margin-bottom: 0;
      flex-shrink: 0;
    }
  
    .section-hero .bottom-content {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      flex: 1;
      min-height: 0;
    }
  
   
  
    .section-hero .text-line {
      font-size: 20px;
      line-height: 22px;
      margin: 0;
    }
  
    .section-hero .text {
      margin-bottom: 0;
    }

    .section-hero .description-wrapper {
      width: 100%;
      margin: 0;
      padding: 0;
    }

    .section-hero .desc-text {
      font-size: 12px;
      margin: 0;
      line-height: 0.9em;
    }

    /* Mostrar quebras de linha no mobile */
    .section-hero .desc-text br.mobile-break {
      display: block;
      line-height: 0.8;
    }
  
    .section-hero .description {
      margin: 0 auto 12px;
      gap: 0;
    }
  
    .section-hero .cta {
      margin-top: 0;
    }
  }

/* Smartphone muito pequeno - 370px */
@media (max-width: 370px) {
  .section-hero {
    height: 80vh;
  }

  .section-hero .bg {
    background-image: url('../imgs/background-mobile.png');
    background-size: cover;
    background-position: top 0% center;
    background-repeat: no-repeat;
  }

  .section-hero .bg-image {
    display: none;
  }

  .section-hero .container {
    padding: 10px 0;
    height: 100%;
  }

  .section-hero .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .section-hero .title {
    font-size: 28px;
    margin-bottom: 0;
    line-height: 1.2em;
    flex-shrink: 0;
  }

  .section-hero .bottom-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex: 1;
    min-height: 0;
  }

  .section-hero .text {
    margin-bottom: 10px;
  }

  .section-hero .text-line {
    font-size: 20px;
    line-height: 22px;
    margin: 0;
  }

  .section-hero .description-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 10px;
  }

  .section-hero .description {
    margin: 0 auto;
  }

  .section-hero .desc-text {
    font-size: 13px;
    margin: 0;
    line-height: 0.8em;
  }

  /* Mostrar quebras de linha no mobile */
  .section-hero .desc-text br.mobile-break {
    display: block;
    line-height: 0.5;
    height: 0.3em;
  }

  .section-hero .cta {
    margin-top: 0;
  }
}


@media (max-width: 390px) {
  .section-hero .text-line {
    letter-spacing: -1px;
  }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.section-testimonials {
  width: 100%;
  padding: 80px 20px;
  background-color: rgb(14, 15, 45);
  content-visibility: auto;
}

.section-testimonials .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-testimonials .videos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-testimonials .video-wrapper {
  animation: fadeIn 0.6s ease-out both;
}

.section-testimonials .video-wrapper:nth-child(1) {
  animation-delay: 0.1s;
}

.section-testimonials .video-wrapper:nth-child(2) {
  animation-delay: 0.2s;
}

.section-testimonials .video-wrapper:nth-child(3) {
  animation-delay: 0.3s;
}

.section-testimonials .video-wrapper:nth-child(4) {
  animation-delay: 0.4s;
}

/* Desktop grande - acima de 1200px mantém 2x2 */
@media (min-width: 1201px) {
  .section-testimonials .videos {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Tablet - entre 1000px e 1200px - 2x2 */
@media (max-width: 1200px) and (min-width: 1001px) {
  .section-testimonials .videos {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

/* Quando não couber 2 vídeos, muda para 1 por linha */
@media (max-width: 1000px) {
  .section-testimonials .videos {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

.section-testimonials .video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
}

/* Tablet - 810px */
@media (max-width: 810px) {
  .section-testimonials {
    padding: 60px 15px;
  }

  .section-testimonials .videos {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
    gap: 25px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .section-testimonials {
    padding: 40px 15px;
  }
  
  .section-testimonials .videos {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Smartphone pequeno - 480px */
@media (max-width: 480px) {
  .section-testimonials {
    padding: 30px 10px;
  }
  .section-testimonials .header .title  {
    font-size: 20px;
  }
  .section-testimonials .videos {
    gap: 15px;
  }
}

/* Smartphone muito pequeno - 370px */
@media (max-width: 370px) {
  .section-testimonials {
    padding: 25px 8px;
  }
  .section-testimonials .title  {
    font-size: 22px;
    line-height: 1.2;
    max-height: calc(1.2em * 2);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .section-testimonials .videos {
    gap: 12px;
  }

  .section-testimonials .video-wrapper {
    border-radius: 4px;
  }
}

/* ============================================
   STRATEGIC SECTION
   ============================================ */
.section-strategic {
  width: 100%;
  padding: 12px 20px;
  background-color: rgb(14, 15, 45);
  content-visibility: auto;
}

.section-strategic .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: fit-content;
}

.section-strategic .header {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 32px;
  height: fit-content;
}

.section-strategic .title {
  font-family: "Cormorant Infant", "Cormorant Infant Placeholder", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  color: rgb(255, 225, 166);
  margin-bottom: 5px;
}

.section-strategic .subtitle {
  font-family: "Sora", "Sora Placeholder", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.4em;
  color: rgb(255, 255, 255);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-strategic .points {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.section-strategic .point {
  border: 1px solid rgb(255, 225, 166);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  border-radius: 8px;
  max-width: 32%;
  height: fit-content;
  padding: 30px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  animation: fadeInUp 0.8s ease-out both;
}

.section-strategic .point:nth-child(1) {
  animation-delay: 0.1s;
}

.section-strategic .point:nth-child(2) {
  animation-delay: 0.2s;
}

.section-strategic .point:nth-child(3) {
  animation-delay: 0.3s;
}

.section-strategic .icon {
  font-size: 48px;
  margin-bottom: 20px;
  order: -1;
}

.section-strategic .text {
  font-family: "Montserrat", "Montserrat Placeholder", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgb(227, 222, 222);
  margin: 0;
}

.section-strategic .text strong {
  color: rgb(255, 255, 255);
  font-weight: 700;
}

.section-strategic .cta {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Tablet - mantém row até 1080px */
@media (max-width: 1280px) and (min-width: 1081px) {
  .section-strategic {
    padding: 60px 15px;
  }

  .section-strategic .header {
    margin-bottom: 50px;
  }

  .section-strategic .title {
    font-size: 52px;
    line-height: 54px;
  }

  .section-strategic .subtitle {
    font-size: 28px;
  }

  .section-strategic .points {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
  }

  .section-strategic .point {
    padding: 25px;
    max-width: 32%;
  }

  .section-strategic .icon {
    font-size: 42px;
    margin-bottom: 18px;
  }
}

/* Abaixo de 1080px - muda para column */
@media (max-width: 1080px) {
  .section-strategic .points {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
  }

  .section-strategic .point {
    padding: 25px;
    min-width: 400px;
    width: 300px;
    max-width: 100%;
  }
}


/* Mobile - 768px */
@media (max-width: 768px) {
  .section-strategic {
    padding: 40px 15px;
  }

  .section-strategic .header {
    margin-bottom: 30px;
  }

  .section-strategic .title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    max-height: calc(1.2em * 2);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .section-strategic .subtitle {
    font-size: 22px;
  }

  .section-strategic .points {
    gap: 20px;
    margin-bottom: 30px;
  }

  .section-strategic .point {
    padding: 20px;
  }

  .section-strategic .icon {
    font-size: 40px;
    margin-bottom: 15px;
  }

  .section-strategic .text {
    font-size: 15px;
  }
}

/* Smartphone pequeno - 480px */
@media (max-width: 480px) {
  .section-strategic {
    padding: 30px 10px;
  }

  .section-strategic .title {
    font-size: 28px;
    line-height: 28px;
  }

  .section-strategic .subtitle {
    font-size: 16px;
  }

  .section-strategic .points {
    gap: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .section-strategic .point {
    padding: 18px;
    min-width: 300px;
  }

  .section-strategic .icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .section-strategic .text {
    font-size: 14px;
  }
}

/* Smartphone muito pequeno - 370px */
@media (max-width: 370px) {
  .section-strategic {
    padding: 25px 8px;
  }

  .section-strategic .title {
    font-size: 22px;
    line-height: 34px;
  }

  .section-strategic .subtitle {
    font-size: 14px;
    line-height: 1em;
  }

  .section-strategic .points {
    gap: 15px;
    margin-bottom: 25px;
  }

  .section-strategic .point {
    padding: 15px;
    border-radius: 6px;
  }

  .section-strategic .icon {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .section-strategic .text {
    font-size: 13px;
    line-height: 1.4em;
  }
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.section-clients {
  width: 100%;
  padding: 80px 40px;
  background-color: rgb(14, 15, 45);
  content-visibility: auto;
}

.section-clients .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-clients .content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.section-clients .avatar    {
  width: 120px;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.section-clients .header-client {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  text-align: center;
  margin-bottom: 60px;
  animation: fadeInDown 0.8s ease-out;
}

.section-clients .title {
  font-family: "Cormorant Infant", "Cormorant Infant Placeholder", serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 65px;
  color: rgb(255, 225, 166);
  margin-bottom: 20px;
}

.section-clients .subtitle {
  font-family: "Sora", "Sora Placeholder", sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.3em;
  color: rgb(255, 255, 255);
}

.section-clients .grid {
  display: flex;
flex-wrap: wrap;
  gap: 10px 8px;
  justify-content: center;
  justify-items: start;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  box-sizing: border-box;
  width: 100%;
}

.section-clients .card-wrapper {
  width: fit-content;
  height: 104px;
  animation: fadeIn 0.6s ease-out both;
  box-sizing: border-box;
}

.section-clients .card-wrapper:nth-child(1) {
  animation-delay: 0.1s;
}

.section-clients .card-wrapper:nth-child(2) {
  animation-delay: 0.2s;
}

.section-clients .card-wrapper:nth-child(3) {
  animation-delay: 0.3s;
}

.section-clients .card-wrapper:nth-child(4) {
  animation-delay: 0.4s;
}

.section-clients .card-wrapper:nth-child(5) {
  animation-delay: 0.5s;
}

.section-clients .card-wrapper:nth-child(6) {
  animation-delay: 0.6s;
}

/* Tablet - 2 colunas entre 1280px e 810px */
@media (max-width: 1280px) and (min-width: 811px) {
  .section-clients .grid {
    grid-template-columns: repeat(2, 400px);
    gap: 10px 8px;
    justify-content: center;
    justify-items: start;
    box-sizing: border-box;
    width: 100%;
  }

  .section-clients .card-wrapper {
    width: fit-content;
    height: 104px;
  }
}

/* Tablet - 810px */
@media (max-width: 810px) {
  .section-clients {
    padding: 60px 30px;
  }

  .section-clients .header-client {
    margin-bottom: 50px;
  }

  .section-clients .title {
    font-size: 52px;
    line-height: 54px;
  }

  .section-clients .subtitle {
    font-size: 28px;
  }

  .section-clients .grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
    gap: 25px;
  }

  .section-clients .card-wrapper {
    width: fit-content;
    height: 104px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .section-clients {
    padding: 40px 20px;
  }

  .section-clients .header-client {
    margin-bottom: 30px;
  }

  .section-clients .title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    max-height: calc(1.2em * 2);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .section-clients .subtitle {
    font-size: 22px;
  }

  .section-clients .grid {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .section-clients .card-wrapper {
    width: fit-content;
    height: 104px;
  }
}

/* Smartphone pequeno - 480px */
@media (max-width: 480px) {
  .section-clients {
    padding: 30px 16px;
  }

  .section-clients .header-client {
    margin-bottom: 30px;
  }

  .section-clients .title {
    font-size: 32px;
    line-height: 38px;
  }

  .section-clients .subtitle {
    font-size: 14px;
  }

  .section-clients .grid {
    grid-template-columns: 1fr;
    gap: 18px;
    justify-items: center;
  }

  .section-clients .card-wrapper {
    width: fit-content;
    height: 104px;
  }
}

/* Smartphone muito pequeno - 370px */
@media (max-width: 370px) {
  .section-clients {
    padding: 25px 12px;
  }

  .section-clients .header-client {
    margin-bottom: 25px;
  }

  .section-clients .title {
    font-size: 32px;
    line-height: 34px;
    margin-bottom: 12px;
  }

  .section-clients .subtitle {
    font-size: 18px;
    line-height: 1.3em;
  }

  .section-clients .grid {
    gap: 15px;
    justify-items: center;
  }

  .section-clients .card-wrapper {
    width: 100%;
    max-width: 100%;
    height: 104px;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.section-about {
  display: flex;
  align-items: center;
  width: 100%;
  height: 766px;
  display: flex;
  justify-content: center;
  position: relative;
  gap : 20px;
  overflow: hidden;
  /* padding: 80px 20px 0px 0px; */
  background-color: rgb(14, 15, 45);
}

.about-teste {
  display: flex;
  gap: 9px;
  max-width: 1200px;
  height: 100%;
}

.section-about .about-bg {
  display: flex;
  width: 50%;
  z-index: 0;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  mask: linear-gradient(90deg, #0000 5%, #000 15%) intersect;
}

.section-about .about-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.8;
  display: block;
  transform: translateZ(0);
}

.section-about .about-container {
  width: 50%;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  content-visibility: auto;
}

.section-about .about-content {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: center;
  padding: 32px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.section-about .about-header {
  text-align: center;
  animation: fadeInDown 0.8s ease-out;
}

.section-about .about-title {
  font-family: "Playfair Display", "Playfair Display Placeholder", serif;
  font-size: 60px;
  color: rgb(255, 252, 246);
  /* margin: 0 0 20px 0; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-about .about-title-main {
  display: block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
}

.section-about .about-title-sub {
  display: block;
  font-size: 32px;
  font-weight: 700;
}

.section-about .about-tagline {
  font-family: "Cormorant Infant", "Cormorant Infant Placeholder", serif;
  font-size: 32px;
  line-height: 1em;
  color: rgb(255, 225, 166);
  margin: 0;
}

.section-about .about-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-about .about-paragraph {
  font-family: "Source Sans 3", "Source Sans 3 Placeholder", sans-serif;
  font-size: 18px;
  line-height: 1.6em;
  color: rgb(255, 252, 246);
  text-align: left;
  margin: 0;
  text-align: justify;
}

.section-about .about-paragraph .about-white {
  color: rgb(255, 255, 255);
}

.section-about .about-highlight {
  color: rgb(255, 255, 255);
}

.section-about .about-highlight strong {
  font-weight: 700;
}

.section-about .about-cta {
  display: flex;
  justify-content: center;
  /* margin-top: 40px; */
  grid-column: 1 / -1;
}

@media (max-width: 1280px) {
  .section-hero .content {
    width: 83%;
  }

  .section-about {
    max-height: initial;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    gap: 40px;
  }

  .section-about .about-bg {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    order: 1;
    mask: linear-gradient(#000 87%, #0000 96%);
  }
  
  .section-about .about-bg-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  
  .section-about .about-container {
    width: 100%;
    order: 2;
  }

  .section-about .about-content {
    padding: 0 20px 40px 20px;
  }
}

@media (max-width: 1200px) {
  .section-about {
    height: 100%;
  }

  .section-about .about-teste {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  .section-about .about-bg {
    height: 539px;
  }

  .section-about .about-bg >  img {
    object-position: 50% 32%;
  }

  .section-about .about-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section-about .about-content {
    width: 75%;
  }
}


/* Tablet - 810px */
@media (max-width: 810px) {
  .section-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: auto;
  }

  .section-about .about-bg {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .section-about .about-bg-image {
    object-fit: cover;
    object-position: center;
  }

  .section-about .about-container {
    width: 100%;
    height: fit-content;
  }

  .section-about .about-header {
    height: fit-content;
  }

  .section-about .about-content {
    gap: 20px;
    padding: 0 20px 40px 20px;
  }

  .section-about .about-title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .section-about .about-title-sub {
    font-size: 26px;
  }

  .section-about .about-tagline {
    font-size: 26px;
  }

  .section-about .about-text {
    gap: 20px;
  }

  .section-about .about-paragraph {
    font-size: 15px;
    line-height: 1.4em;
  }

  .section-about .about-cta {
    margin-top: 25px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .section-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-height: auto;
  }

  .section-about .about-bg {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .section-about .about-bg-image {
    object-fit: cover;
    object-position: center;
    object-position: 45%;
  }

  .section-about .about-container {
    width: 100%;
    height: fit-content;
  }

  .section-about .about-header {
    height: fit-content;
  }

  .section-about .about-content {
    width: 100%;
    gap: 20px;
    padding: 0 20px 40px 20px;
  }

  .section-about .about-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .section-about .about-title-sub {
    font-size: 24px;
  }

  .section-about .about-tagline {
    font-size: 24px;
  }

  .section-about .about-text {
    gap: 20px;
  }

  .section-about .about-paragraph {
    font-size: 14px;
    line-height: 1.4em;
  }

  .section-about .about-cta {
    margin-top: 22px;
  }
}

/* Smartphone pequeno - 480px */
@media (max-width: 480px) {
  .section-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .section-about .about-bg {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .section-about .about-bg-image {
    object-fit: cover;
    object-position: center;
    object-position: 45%;
  }

  .section-about .about-container {
    width: 100%;
    height: fit-content;
  }

  .section-about .about-header {
    height: fit-content;
  }

  .section-about .about-content {
    width: 100%;
    gap: 20px;
    padding: 0 20px 40px 20px;
  }

  .section-about .about-title {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .section-about .about-title-sub {
    font-size: 23px;
  }

  .section-about .about-tagline {
    font-size: 23px;
  }

  .section-about .about-text {
    gap: 20px;
  }

  .section-about .about-paragraph {
    font-size: 13.5px;
    line-height: 1.4em;
  }

  .section-about .about-cta {
    margin-top: 20px;
  }
}

/* Smartphone muito pequeno - 370px */
@media (max-width: 370px) {
  .section-about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
  }
  .section-about .about-bg {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .section-about .about-bg-image {
    object-fit: cover;
    object-position: center;
    object-position: 45%;
  }

  .section-about .about-container {
    width: 100%;
    height: fit-content;
  }
  
.section-about .about-header {
  height: fit-content;
}
  .section-about .about-content {
    gap: 5px;
    padding: 0 20px 40px 20px;
    width: 100%;
  }

  .section-about .about-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .section-about .about-title-sub {
    font-size: 22px;
  }

  .section-about .about-tagline {
    font-size: 22px;
  }

  .section-about .about-text {
    gap: 20px;
  }

  .section-about .about-paragraph {
    font-size: 13px;
    line-height: 1.4em;
  }

  .section-about .about-cta {
    margin-top: 20px;
  }
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.section-footer {
  width: 100%;
  background-color: rgb(0, 0, 0);
  padding: 60px 20px 40px;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.section-footer .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-footer .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.section-footer .disclaimer,
.section-footer .company,
.section-footer .copyright {
  font-family: "Montserrat", "Montserrat Placeholder", sans-serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.5em;
  color: rgba(245, 245, 245, 0.8);
  margin: 0;
  max-width: 900px;
}

.section-footer .links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.section-footer .link {
  color: rgba(245, 245, 245, 0.8);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.section-footer .link:hover {
  color: rgb(255, 225, 166);
  text-decoration: underline;
}

.section-footer .copyright {
  margin-top: 10px;
}

.section-footer .copyright .link {
  font-weight: 700;
}

/* Tablet - 810px */
@media (max-width: 810px) {
  .section-footer {
    padding: 50px 15px 35px;
  }

  .section-footer .content {
    gap: 18px;
  }

  .section-footer .disclaimer,
  .section-footer .company,
  .section-footer .copyright {
    font-size: 13px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .section-footer {
    padding: 40px 15px 30px;
  }

  .section-footer .content {
    gap: 15px;
  }

  .section-footer .disclaimer,
  .section-footer .company,
  .section-footer .copyright {
    font-size: 12px;
    line-height: 1.4em;
  }

  .section-footer .links {
    flex-direction: column;
    gap: 20px;
  }
}

/* Smartphone pequeno - 480px */
@media (max-width: 480px) {
  .section-footer {
    padding: 30px 10px 25px;
  }

  .section-footer .content {
    gap: 12px;
  }

  .section-footer .disclaimer,
  .section-footer .company,
  .section-footer .copyright {
    font-size: 11px;
  }

  .section-footer .links {
    gap: 8px;
  }

  .section-footer .link {
    font-size: 11px;
  }
}

/* Smartphone muito pequeno - 370px */
@media (max-width: 370px) {
  .section-footer {
    padding: 25px 8px 20px;
  }

  .section-footer .content {
    gap: 20px;
  }

  .section-footer .disclaimer,
  .section-footer .company,
  .section-footer .copyright {
    font-size: 10px;
    line-height: 1.5em;
  }

  .section-footer .links {
    gap: 6px;
  }

  .section-footer .link {
    font-size: 10px;
  }

  .section-footer .copyright {
    margin-top: 8px;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.button-container {
  width: 100%;
 display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.button-container img {
  width: auto;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.button {
  display: inline-flex;
  min-width: 450px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.button--primary {
  background-color: rgb(211, 17, 26);
  border: 2px solid rgb(255, 225, 166);
  color: rgb(255, 255, 255);
  font-family: "Sfizia Bold", "Sfizia Bold Placeholder", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 25px;
  text-align: center;
  padding: 12px 24px;
}

.button--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.button--primary:active {
  transform: translateY(0) scale(0.98);
}

/* Tablet - 810px */
@media (max-width: 810px) {
  .button--primary {
    font-size: 20px;
    padding: 11px 22px;
  }
  
  .button-container img {
    height: 50px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .button--primary {
    font-size: 18px;
    line-height: 22px;
    padding: 10px 20px;
  }
  
  .button-container img {
    height: 40px;
  }
}
@media (max-width: 600px) {
.button {
  min-width: 350px;
}

}
/* Smartphone pequeno - 480px */
@media (max-width: 480px) {
.button{
  min-width: 324px;
  height: 47px;
}
  
  .button--primary {
    font-size: 16px;
    line-height: 20px;
    padding: 9px 18px;
    text-transform: uppercase;
  }
  
  .button-container img {
    height: 36px;
  }
}

/* Smartphone muito pequeno - 370px */
@media (max-width: 370px) {
  .button--primary {
    font-size: 14px;
    line-height: 18px;
    padding: 8px 16px;
    width: 100%;
    max-width: 280px;
  }
  
  .button-container img {
    height: 36px;
  }
}

/* ============================================
   VIDEO PLAYER
   ============================================ */
.video {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0px;
  transform: unset;
  cursor: pointer;
  overflow: hidden;
  contain: layout style paint;
  content-visibility: auto;
}

.video .thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.video .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.video .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video .play-btn:active {
  transform: translate(-50%, -50%) scale(0.95);
}

.video .iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
  z-index: 10;
  border: none;
  background: #000;
}

/* Tablet - 810px */
@media (max-width: 810px) {
  .video .play-btn {
    width: 60px;
    height: 42px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .video .play-btn {
    width: 56px;
    height: 40px;
  }
}

/* Smartphone pequeno - 480px */
@media (max-width: 480px) {
  .video .play-btn {
    width: 50px;
    height: 36px;
  }
}

/* Smartphone muito pequeno - 370px */
@media (max-width: 370px) {
  .video .play-btn {
    width: 45px;
    height: 32px;
  }
}

/* ============================================
   INSTAGRAM CARD
   ============================================ */
.card {
  background-color: rgba(255, 255, 255, 0.95);
  width: fit-content;
  height: 104px;
  border-radius: 8px;
  opacity: 1;
  box-sizing: border-box;
  overflow: visible;
  contain: layout style paint;
}

.card .content {
  opacity: 1;
  padding: 12px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}

.card .avatar {
  opacity: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  flex-shrink: 0;
  order: -1;
}

.card .avatar img:not(.img) {
  width: auto;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 35px;
  margin-left: -6px;
  margin-right: -6px;
}

.card .img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #4C000D;
  box-sizing: border-box;
}

.card .info {
  opacity: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.card .user {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  flex-shrink: 0;
}

.card .username {
  font-weight: 600;
  color: #000;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  flex-shrink: 1;
}

.card .user img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}

.card .stats {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  flex-shrink: 0;
}

.card .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  white-space: nowrap;
}

.card .value {
  font-weight: 700;
  font-size: 14px;
  color: #000;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
}

.card .label {
  font-size: 14px;
  color: #666;
  line-height: 1.2;
  white-space: nowrap;
  text-align: center;
}

/* Tablet - 810px */
@media (max-width: 810px) {
  .card {
    width: fit-content;
    height: 104px;
  }

  .card .content {
    padding: 12px 16px;
    gap: 16px;
  }

  .card .avatar img:not(.img) {
    height: 32px;
    margin-top: 35px;
    margin-left: -6px;
    margin-right: -6px;
  }

  .card .avatar {
    gap: 2px;
  }

  .card .img {
    width: 64px;
    height: 64px;
    border: 2px solid #4C000D;
    box-sizing: border-box;
  }

  .card .username {
    font-size: 16px;
  }

  .card .user img {
    width: 18px;
    height: 18px;
  }

  .card .value {
    font-size: 14px;
  }

  .card .label {
    font-size: 14px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .card {
    width: fit-content;
    height: 104px;
  }

  .card .content {
    padding: 14px 18px;
    gap: 18px;
  }

  .card .avatar {
    gap: 2px;
  }

  .card .avatar img:not(.img) {
    height: 36px;
    margin-top: 35px;
    margin-left: -6px;
    margin-right: -6px;
  }

  .card .img {
    width: 72px;
    height: 72px;
    border: 2px solid #4C000D;
    box-sizing: border-box;
  }

  .card .info {
    gap: 20px;
  }

  .card .username {
    font-size: 16px;
  }

  .card .user img {
    width: 20px;
    height: 20px;
  }

  .card .stats {
    gap: 18px;
    flex-wrap: nowrap;
  }

  .card .value {
    font-size: 14px;
  }

  .card .label {
    font-size: 14px;
  }
}

/* Smartphone pequeno - 480px */
@media (max-width: 480px) {
  .card {
    width: fit-content;
    height: 104px;
  }

  .card .content {
    padding: 14px 18px;
    gap: 18px;
  }

  .card .avatar {
    gap: 2px;
  }

  .card .avatar img:not(.img) {
    height: 36px;
    margin-top: 35px;
    margin-left: -6px;
    margin-right: -6px;
  }

  .card .img {
    width: 72px;
    height: 72px;
    border: 2px solid #4C000D;
    box-sizing: border-box;
  }

  .card .username {
    font-size: 16px;
  }

  .card .user img {
    width: 20px;
    height: 20px;
  }

  .card .stats {
    gap: 18px;
    flex-wrap: nowrap;
  }

  .card .value {
    font-size: 14px;
  }

  .card .label {
    font-size: 14px;
  }
}

/* Smartphone muito pequeno - 370px */
@media (max-width: 370px) {
  .card {
    width: 100%;
    max-width: 100%;
    height: 104px;
  }

  .card .content {
    padding: 14px 12px;
    gap: 12px;
  }

  .card .avatar {
    gap: 2px;
  }

  .card .avatar img:not(.img) {
    height: 32px;
    margin-top: 35px;
    margin-left: -6px;
    margin-right: -6px;
  }

  .card .img {
    width: 64px;
    height: 64px;
    border: 2px solid #4C000D;
    box-sizing: border-box;
  }

  .card .info {
    gap: 8px;
  }

  .card .username {
    font-size: 16px;
  }

  .card .user img {
    width: 18px;
    height: 18px;
  }

  .card .stats {
    gap: 12px;
    flex-wrap: nowrap;
  }

  .card .stat {
    flex-shrink: 0;
  }

  .card .value {
    font-size: 14px;
  }

  .card .label {
    font-size: 14px;
  }
}

/* Smartphone muito pequeno - 400px */
@media (max-width: 400px) {
  .card {
    width: 328px;
    max-width: 100%;
  }

  .card .content {
    padding: 14px 10px;
    gap: 20px;
  }

  .card .avatar img:not(.img) {
    height: 30px;
    margin-left: -6px;
    margin-right: -6px;
  }

  .card .img {
    width: 60px;
    height: 60px;
  }

  .card .info {
    gap: 7px;
  }

  .card .username {
    font-size: 16px;
  }

  .card .user img {
    width: 17px;
    height: 17px;
  }

  .card .stats {
    gap: 20px;
  }

  .card .value {
    font-size: 14px;
  }

  .card .label {
    font-size: 9px;
  }
}

/* ============================================
   FORM STYLES
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

/* REGRA GLOBAL: Garantir que o overlay escape de TODOS os contextos */
body > .form-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  margin: 0 !important;
  z-index: 99999 !important;
  transform: none !important;
  contain: none !important;
  isolation: isolate !important;
}

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

/* overlay robusto - renderizado via Portal diretamente no body */
/* IMPORTANTE: Este overlay deve ESCAPAR de todos os contextos de contain/transform */
.form-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  background: rgba(0,0,0,0.85) !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99999 !important;
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  /* CRÍTICO: Forçar escape de todos os contextos de contain/transform */
  transform: none !important;
  contain: none !important;
  isolation: isolate !important;
  /* Garantir que não seja afetado por qualquer contexto pai */
  will-change: auto !important;
}

.form-overlay[style*="display: flex"],
.form-overlay[style*="display:flex"] {
  display: flex !important;
}

/* Wrapper interno para garantir centralização mesmo com scroll */
.form-overlay::before {
  content: '';
  display: block;
  min-height: calc(50vh - 50%);
  flex-shrink: 0;
}

.form-overlay::after {
  content: '';
  display: block;
  min-height: calc(50vh - 50%);
  flex-shrink: 0;
}

/* .form-container: remova transform/contain que podem atrapalhar */
.form-container {
  background: rgb(14, 15, 45);
  border-radius: 20px;
  padding: 35px 40px 30px;
  max-width: 650px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  font-family: 'Inter', sans-serif;
  max-height: 90vh;
  overflow-y: auto;
  margin: 20px;
  flex-shrink: 0;
}

.form-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform 0.15s ease, background-color 0.15s ease;
  line-height: 1;
  padding: 0;
}

.form-close-btn:hover {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.1);
}

.form-title {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-error-box {
  background: rgba(211, 17, 26, 0.1);
  border: 1px solid rgba(211, 17, 26, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 15px;
  color: #D3111A;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group {
  margin-bottom: 12px;
  position: relative;
}

.form-group.dropdown-open {
  margin-bottom: 280px;
  will-change: margin-bottom;
}

.form-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input-icon {
  position: absolute;
  left: 20px;
  opacity: 1;
  z-index: 1;
  display: flex;
  align-items: center;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

.form-input {
  width: 100%;
  padding: 16px 20px 16px 55px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  font-size: 16px;
  color: #333;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  box-sizing: border-box;
}

.form-input::placeholder {
  color: #8C8C8C;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-select-container {
  width: 100%;
  padding: 16px 50px 16px 55px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  box-sizing: border-box;
}

.form-select-container.focused {
  border-color: #D3111A;
  box-shadow: 0 0 0 3px rgba(211, 17, 26, 0.1);
}

.form-select-label {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #8C8C8C;
}

.form-select-label.selected {
  color: #333;
}

.form-select-arrow {
  position: absolute;
  right: 20px;
  transition: transform 0.15s ease;
}

.form-select-arrow.rotated {
  transform: rotate(180deg);
}

.form-options-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  overflow: hidden;
  animation: slideDown 0.15s ease;
  max-height: 240px;
  overflow-y: auto;
  transform: translateZ(0);
  will-change: transform, opacity;
  contain: layout style paint;
}

.form-option-button {
  width: 100%;
  padding: 14px 20px;
  background: #ffffff;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 15px;
  color: #333;
  cursor: pointer;
  transition: background-color 0.1s ease;
  text-align: left;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  outline: none;
}

.form-option-button:last-child {
  border-bottom: none;
}

.form-option-button:hover {
  background: rgba(211, 17, 26, 0.1);
}

.form-option-button.selected {
  background: #D3111A;
  color: #ffffff;
}

.form-option-button.selected:hover {
  background: #B50E17;
}

.form-submit-btn {
  width: 100%;
  padding: 20px;
  background: #D3111A;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  margin-top: 10px;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(211, 17, 26, 0.3);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  background: #B50E17;
  box-shadow: 0 15px 35px rgba(211, 17, 26, 0.4);
}

.form-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.form-terms {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  color: #8C8C8C;
  line-height: 1.4;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-terms-link {
  color: #D3111A;
  text-decoration: underline;
  transition: opacity 0.15s ease;
  cursor: pointer;
}

.form-terms-link:hover {
  opacity: 0.8;
}

/* Responsividade Form */
@media (max-width: 768px) {
  .form-container {
    padding: 30px 25px 25px;
    border-radius: 16px;
    max-height: 95vh;
  }

  .form-close-btn {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 28px;
  }

  .form-title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .form-input,
  .form-select-container {
    padding: 14px 18px 14px 50px;
    font-size: 15px;
  }

  .form-input-icon {
    left: 18px;
  }

  .form-input-icon svg {
    width: 16px;
    height: 16px;
  }

  .form-submit-btn {
    padding: 18px;
    font-size: 18px;
  }

  .form-terms {
    font-size: 11px;
  }

  .form-group {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .form-overlay {
    padding: 10px;
  }

  .form-container {
    padding: 25px 20px 20px;
    border-radius: 12px;
  }

  .form-close-btn {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 24px;
  }

  .form-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .form-input,
  .form-select-container {
    padding: 12px 16px 12px 45px;
    font-size: 14px;
  }

  .form-input-icon {
    left: 16px;
  }

  .form-input-icon svg {
    width: 14px;
    height: 14px;
  }

  .form-submit-btn {
    padding: 16px;
    font-size: 16px;
  }

  .form-terms {
    font-size: 10px;
  }

  .form-error-box {
    font-size: 13px;
    padding: 8px 12px;
  }

  .form-options-container {
    max-height: 200px;
  }

  .form-option-button {
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (max-width: 370px) {
  .form-title {
    font-size: 18px;
  }

  .form-input,
  .form-select-container {
    padding: 10px 14px 10px 40px;
    font-size: 13px;
  }

  .form-submit-btn {
    padding: 14px;
    font-size: 15px;
  }
}

/* Scrollbar personalizada */
.form-options-container::-webkit-scrollbar {
  width: 6px;
}

.form-options-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.form-options-container::-webkit-scrollbar-thumb {
  background: #D3111A;
  border-radius: 10px;
}

.form-options-container::-webkit-scrollbar-thumb:hover {
  background: #B50E17;
}

.form-container::-webkit-scrollbar {
  width: 8px;
}

.form-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.form-container::-webkit-scrollbar-thumb {
  background: rgba(211, 17, 26, 0.5);
  border-radius: 10px;
}

.form-container::-webkit-scrollbar-thumb:hover {
  background: rgba(211, 17, 26, 0.7);
}
