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

    :root{
      --primary:#ff6b00;
      --secondary:#ffb703;
      --dark:#111111;
      --light:#ffffff;
      --gray:#f5f5f5;
      --text:#d9d9d9;
    }

    body{
      font-family:'Poppins',sans-serif;
      background:var(--dark);
      color:var(--light);
      overflow-x:hidden;
    }

    /* NAVBAR */

    header{
      width:100%;
      position:fixed;
      top:0;
      left:0;
      z-index:1000;
      background:rgba(0,0,0,0.5);
      backdrop-filter:blur(12px);
      border-bottom:1px solid rgba(255,255,255,0.08);
    }

    .navbar{
      width:100%;
      max-width:1300px;
      margin:auto;
      padding:20px 5%;
      display:flex;
      justify-content:space-between;
      align-items:center;
    }

    .logo{
      font-size:1.5rem;
      font-weight:800;
      color:var(--light);
    }

    .logo span{
      color:var(--primary);
    }

    .menu{
      display:flex;
      gap:30px;
    }

    .menu a{
      color:var(--light);
      text-decoration:none;
      font-weight:500;
      transition:0.3s;
    }

    .menu a:hover{
      color:var(--primary);
    }

    /* HERO */

    .hero{
      min-height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:140px 5% 80px;
      background:
      linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.55)),
      url('img/img-fundo.webp');
      background-size:cover;
      background-position:center;
    }

    .hero-content{
      width:100%;
      max-width:1300px;
    }

    .hero-text{
      max-width:650px;
    }

    .tag{
      display:inline-block;
      padding:10px 18px;
      background:rgba(255,107,0,0.15);
      border:1px solid rgba(255,107,0,0.3);
      border-radius:999px;
      color:var(--secondary);
      margin-bottom:25px;
      font-size:0.9rem;
      font-weight:600;
    }

    .hero h1{
      font-size:4rem;
      line-height:1.1;
      margin-bottom:25px;
      font-weight:800;
    }

    .hero h1 span{
      color:var(--primary);
    }

    .hero p{
      color:var(--text);
      font-size:1.1rem;
      line-height:1.8;
      margin-bottom:35px;
    }

    .buttons{
      display:flex;
      gap:18px;
      flex-wrap:wrap;
    }

    .btn{
      padding:16px 30px;
      border-radius:14px;
      text-decoration:none;
      font-weight:600;
      transition:0.3s;
    }

    .btn-primary{
      background:linear-gradient(135deg,var(--primary),#ff8c00);
      color:white;
      box-shadow:0 10px 30px rgba(255,107,0,0.35);
    }

    .btn-primary:hover{
      transform:translateY(-4px);
    }

    .btn-secondary{
      border:1px solid rgba(255,255,255,0.15);
      color:white;
      background:rgba(255,255,255,0.04);
      backdrop-filter:blur(8px);
    }

    .btn-secondary:hover{
      background:white;
      color:black;
    }

    /* SECTIONS */

    section{
      padding:100px 5%;
    }

    .container{
      max-width:1300px;
      margin:auto;
    }

    .section-title{
      text-align:center;
      margin-bottom:60px;
    }

    .section-title h2{
      font-size:2.8rem;
      margin-bottom:15px;
    }

    .section-title p{
      color:var(--text);
      max-width:700px;
      margin:auto;
      line-height:1.7;
    }

    /* CARDS */

    .cards{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
      gap:30px;
    }

    .card{
      background:#171717;
      border:1px solid rgba(255,255,255,0.06);
      border-radius:24px;
      overflow:hidden;
      transition:0.4s;
    }

    .card:hover{
      transform:translateY(-10px);
      border-color:rgba(255,107,0,0.3);
    }

    .card img{
      width:100%;
      height:240px;
      object-fit:cover;
    }

    .card-content{
      padding:28px;
    }

    .card-content h3{
      font-size:1.5rem;
      margin-bottom:12px;
    }

    .card-content p{
      color:var(--text);
      line-height:1.7;
      margin-bottom:20px;
    }

    .price{
      color:var(--secondary);
      font-size:1.3rem;
      font-weight:700;
    }

    /* ABOUT */

    .about{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
      align-items:center;
      gap:60px;
    }

    .about img{
      width:100%;
      border-radius:28px;
      object-fit:cover;
      min-height:450px;
    }

    .about-text h2{
      font-size:3rem;
      margin-bottom:20px;
    }

    .about-text p{
      color:var(--text);
      line-height:1.9;
      margin-bottom:20px;
    }

    /* CONTACT */

    .contact-box{
      background:linear-gradient(145deg,#1b1b1b,#111);
      border-radius:32px;
      padding:60px;
      text-align:center;
      border:1px solid rgba(255,255,255,0.06);
    }

    .contact-box h2{
      font-size:3rem;
      margin-bottom:20px;
    }

    .contact-box p{
      color:var(--text);
      max-width:700px;
      margin:0 auto 35px;
      line-height:1.8;
    }

    .whatsapp-btn{
      margin: 10px;
      display:inline-block;
      padding:18px 35px;
      border-radius:16px;
      background:#25D366;
      color:white;
      text-decoration:none;
      font-size:1.1rem;
      font-weight:700;
      transition:0.3s;
    }

    .whatsapp-btn:hover{
      transform:translateY(-5px);
    }

    .uairango-btn{
      margin: 10px;
      display:inline-block;
      padding:18px 35px;
      border-radius:16px;
      color:white;
      text-decoration:none;
      font-size:1.1rem;
      font-weight:700;
      transition:0.3s;
      background: linear-gradient(135deg, #ff6b00, #ff8c00, #ffb703);
    }

    .uairango-btn:hover{
      transform:translateY(-5px);
    }

    .instagram-btn{
      margin: 10px;
      display:inline-block;
      padding:18px 35px;
      border-radius:16px;
      background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
      color:white;
      text-decoration:none;
      font-size:1.1rem;
      font-weight:700;
      transition:0.3s;
    }

    .instagram-btn:hover{
      transform:translateY(-5px);
    }
    /* FOOTER */

    footer{
      padding:40px 5%;
      text-align:center;
      color:#8b8b8b;
      border-top:1px solid rgba(255,255,255,0.06);
    }

    /* RESPONSIVO */

    @media(max-width:900px){

      .hero h1{
        font-size:3rem;
      }

      .about-text h2,
      .contact-box h2,
      .section-title h2{
        font-size:2.2rem;
      }
    }

    @media(max-width:700px){

      .navbar{
        flex-direction:column;
        gap:20px;
      }

      .menu{
        gap:18px;
        flex-wrap:wrap;
        justify-content:center;
      }

      .hero{
        text-align:center;
      }

      .hero h1{
        font-size:2.4rem;
      }

      .buttons{
        justify-content:center;
      }

      .contact-box{
        padding:40px 25px;
      }
    }