* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ed8f07;
    --text-dark: #222;
    --text-light: #666;
    --transition: all 0.3s ease;
}

body {
    font-family: "Urbanist", sans-serif;
    background: #F6F6F6;
    color: var(--text-dark);
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.logo {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

#hero {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    background-color: #fff;
    overflow: hidden;
    padding: 0 5%;
    padding-top: 120px;
}

/* Melhoria no posicionamento 3D */
#hero::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    width: 35%;
    height: 70%;
    background-image: url('../assets/3d.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
    pointer-events: none;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    animation: float 8s ease-in-out infinite;
}

.fix-future {
    max-width: 600px;
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.fix-future h1 {
    font-size: 7.5vw;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.fix-future p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 35px;
}

.anchors {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.anchors a {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--primary);
    padding: 15px 35px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.anchors a:first-child {
    border-top: 2px solid var(--primary);
    display: inline-block;
}

.anchors a:first-child:hover {
    background: var(--primary);
    color: white;
    transform: translateX(10%) scale(1.1);
}

.anchors a:last-child {
    border-top: 2px solid var(--primary);
    display: inline-block;
}

.anchors a:last-child:hover {
    background: var(--primary);
    color: white;
    transform: translateX(10%) scale(1.1);
}

  /* Partners Section */
#partners {
    background-color: #17141A;
    padding-top: 60px;
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
}

.partners-header {
    text-align: center;
    margin-bottom: 60px;
}

.partners-header h2 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.partners-header h2 span {
    color: var(--primary);
}

.partners-header p {
    color: #aaa;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Carrossel Minimalista */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    gap: 40px;
    padding: 20px 0;
    width: max-content;
    animation: scroll 40s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-box {
    
   
    padding: 30px;
    display: flex;
    flex-direction: column;
    color: #fff;
   
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.partner-box:hover {
    transform: translateY(-5px);
}

.partner-box img {
    width: 450px;
    border-radius: 15px;
    height: 270px;
    object-fit: cover;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #ed8f07, #ff6b00);
}

.partner-box h3 {
    font-size: 28px;
    margin-top: 10px;
    width: 450px;
    font-weight: 600;
}

.partner-box span {
    margin-top: 15px;
    font-size: 16px;
    color: #ddd;
    width: 450px;
    line-height: 1.6;
    flex-grow: 1;
}

.partner-box a {
    margin-top: 25px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
}

.partner-box a:hover {
    color: #fff;
}

.partner-box i {
    margin-left: 10px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.partner-box a:hover i {
    transform: translateX(5px);
}

/* Pausa a animação quando o mouse está sobre o carrossel */
.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}
.suport {
    text-align: center;
    margin-top: 40px;
    font-family: "Urbanist", sans-serif;
    font-size: 32px;
    color: var(--primary);
  }
  

#ourapp {
  background-color: #F6F6F6;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 100px 0;
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.row.reverse {
  flex-direction: row-reverse;
}

.text-content {
  flex: 1;
  padding: 20px;
  font-family: "Urbanist", sans-serif;
}

.text-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 20px;
  color: #444;
}

.image-content {
  flex: 1;
  padding: 20px;
}

.image-content img {
  width: 100%;
  max-width: 500px;
  height: auto;
}
#ourapp {
    background-color: #F6F6F6;
    padding: 120px 0;
    font-family: "Urbanist", sans-serif;
  }
  
  .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 60px;
    gap: 60px;
  }
  
  .row.reverse {
    flex-direction: row-reverse;
  }
  
  .text-content,
  .image-content {
    width: 50%;
  }
  
  .text-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 30px;
  }
  
  .text-content h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .text-content p {
    font-size: 20px;
    color: #444;
    line-height: 1.7;
  }
  footer{
    overflow: hidden;
  }
  .image-content {
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
  }
  
  .image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }
  
/* Responsividade */
@media (max-width: 992px) {
    .partner-box {
        min-width: 350px;
    }
    
    .carousel-track {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .partners-header h2 {
        font-size: 2.5rem;
    }
    
    .partner-box {
        min-width: 300px;
        padding: 20px;
    }
    
    .partner-box img {
        height: 180px;
    }
    
    .carousel-track {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .partner-box {
        min-width: 280px;
    }
    
    .partners-header h2 {
        font-size: 2rem;
    }
    
    .partners-header p {
        font-size: 1rem;
    }
}







/* Animações */
@keyframes float {
    0%   { transform: translateY(-40%) translateX(0px)    rotate(10deg); }
    20%  { transform: translateY(-47%) translateX(15px)   rotate(16deg); }
    40%  { transform: translateY(-42%) translateX(8px)    rotate(8deg); }
    60%  { transform: translateY(-37%) translateX(-15px)  rotate(4deg); }
    80%  { transform: translateY(-43%) translateX(-8px)   rotate(12deg); }
    100% { transform: translateY(-40%) translateX(0px)    rotate(10deg); }
}


/* Responsividade */
@media (max-width: 992px) {
    .fix-future h1 {
        font-size: 9vw;
    }
    
    #hero::after {
        width: 40%;
        height: 50%;
    }
}

@media (max-width: 768px) {
    header {
        padding: 20px 5%;
    }
    
   
    
    .fix-future h1 {
        font-size: 12vw;
    }
    
    .fix-future p {
        font-size: 1.2rem;
    }
    
    #hero::after {
        width: 70%;
        height: 30%;
        top: 65%;
        right: 15%;
    }
    
    .anchors {
        flex-direction: column;
        gap: 15px;
    }
    
    .anchors a {
        width: 100%;
        justify-content: center;
    }

    /* Ajustes para dropdown em mobile */
    .dropdown-content {
        min-width: 200px;
        left: -50%;
    }
}/* ====== ANIMAÇÕES ====== */
@keyframes float {
    0% { transform: translateY(-50%) translateX(0) rotate(10deg); }
    50% { transform: translateY(-53%) translateX(10px) rotate(12deg); }
    100% { transform: translateY(-50%) translateX(0) rotate(10deg); }
}

/* ====== RESPONSIVIDADE ====== */
@media (max-width: 1200px) {
    /* Ajustes para tablets grandes e desktops pequenos */
    .row {
        padding: 60px 40px;
    }
    
    .image-content {
        height: 380px;
    }
}

@media (max-width: 992px) {
    /* Tablets */
    header {
        padding: 20px 5%;
    }
    
    .fix-future h1 {
        font-size: clamp(2.5rem, 6vw, 5rem);
    }
    
    #hero::after {
        width: 40%;
        height: 50%;
    }
    
    .partner-box {
        min-width: 380px;
    }
    
    .text-content h2 {
        font-size: 2.2rem;
    }
    
    .text-content p {
        font-size: 1rem;
    }
    
    footer .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Tablets pequenos e celulares grandes */
   
    
    .menu-toggle {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }
    
    #hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }
    
    .fix-future {
        margin-top: 40px;
        padding-right: 0;
        align-items: center;
    }
    
    #hero::after {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        height: 300px;
        margin-top: 40px;
        transform: none;
        background-position: center;
    }
    
    .anchors {
        flex-direction: column;
        background-color: #fff6ef;
    }
    
    .partners-header h2 {
        font-size: 2.2rem;
    }
    
    .partner-box {
        min-width: 320px;
        padding: 20px;
    }
    
    .row {
        flex-direction: column;
        padding: 40px 20px;
        gap: 30px;
    }
    
    .row.reverse {
        flex-direction: column;
    }
    
    .text-content, .image-content {
        width: 100%;
    }
    
    .image-content {
        height: 300px;
    }
    
    footer .grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    /* Celulares */
    .fix-future h1 {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .fix-future p {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .anchors a {
        padding: 12px 20px;
        font-size: 1.2rem;
        background-color: #fff6ef;
    }
    
    .partners-header h2 {
        font-size: 1.8rem;
    }
    
    .partner-box {
        min-width: 280px;
    }
    
    .text-content h2 {
        font-size: 1.8rem;
    }
    
    .image-content {
        height: 250px;
    }
    
    .suport {
        font-size: 1.5rem;
    }
    
    footer .text-center {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    /* Celulares pequenos */
    .partner-box {
        min-width: 260px;
        padding: 15px;
    }
    
    .anchors a {
        padding: 10px 15px;
    }
    
    .text-content h2 {
        font-size: 1.6rem;
    }
    
    .image-content {
        height: 200px;
    }
}/* Botão hambúrguer escondido no desktop */
.menu-toggle {
    display: none;
    font-size: 26px;
    background: none;
    border: none;
    color: black;
    cursor: pointer;
  }
  
  /* Mobile: mostra o botão e esconde o menu */
  @media (max-width: 768px) {
   
  
  
  
    .menu-toggle {
      display: block;
    }
  
   
  
   
  }  /* Responsividade */
  @media (max-width: 992px) {
      .partner-box {
          min-width: 350px;
      }
      
      .carousel-track {
          gap: 30px;
      }
  }

  @media (max-width: 768px) {
      /* Menu Hambúrguer visível */
      .menu-toggle {
          display: block;
      }
      
    
      
      /* Dropdown no mobile */
      .dropdown-content {
          position: static;
          width: 100%;
          box-shadow: none;
          border-radius: 0;
          display: none;
      }
      
      .dropdown.active .dropdown-content {
          display: block;
      }
      
      .dropdown > a i {
          transition: transform 0.3s ease;
      }
      
      .dropdown.active > a i {
          transform: rotate(180deg);
      }
      
      /* Ajustes gerais */
      header {
          padding: 20px 5%;
      }
      
      .fix-future h1 {
          font-size: 12vw;
      }
      
      .fix-future p {
          font-size: 1.2rem;
      }
      
      #hero::after {
          width: 70%;
          height: 30%;
          top: 65%;
          right: 15%;
      }
      
      .anchors {
          flex-direction: column;
          gap: 15px;
      }
      
      .anchors a {
          width: 100%;
          justify-content: center;
      }
  }

  @media (max-width: 480px) {
      .partner-box {
          min-width: 280px;
      }
      
      .partners-header h2 {
          font-size: 2rem;
      }
      
      .partners-header p {
          font-size: 1rem;
      }
  }
  