 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700;900&display=swap');

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', sans-serif;
 }

 body {
     background-color: #000;
     color: #fff;
     overflow-x: hidden;
 }

 header {
     background-color: #1a1a1a;
     padding: 15px 5%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     position: fixed;
     width: 100%;
     top: 0;
     z-index: 1000;
 }

 .logo {
     height: 45px;
     cursor: pointer;
 }

 .header-btn {
     background: linear-gradient(180deg, #ff8c00 0%, #ff8c00 100%);
     color: white;
     text-decoration: none;
     padding: 10px 25px;
     border-radius: 8px;
     font-weight: bold;
     font-size: 14px;
     text-transform: uppercase;
     box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
     transition: transform 0.2s, box-shadow 0.2s;
 }

 .header-btn:hover {
     transform: translateY(-2px);
     box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5);
 }

 .hero {
     background-image: url('../assets/imgs/background-ride-pirat-v1.jpg');
     background-repeat: no-repeat;
     background-position: center top;
     background-size: cover;
     display: flex;
     align-items: center;
     justify-content: center;
     padding-top: 80px;
     position: relative;
     overflow: hidden;
     height: 100vh;
     animation: fadeIn 2s ease-out both;
 }

 .content-box {
     background: rgba(26, 26, 26, 0.95);
     padding: 60px 40px;
     border-radius: 20px;
     text-align: center;
     max-width: 600px;
     width: 90%;
     border-left: 8px solid #ff8c00;
     position: relative;
     z-index: 10;
 }

 a {
     color: #ff8c00;
 }

 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero h1 {
     font-size: 48px;
     color: #fff;
     margin-bottom: 20px;
     font-weight: 900;
     text-transform: uppercase;
     letter-spacing: -1px;
 }

 .hero p {
     color: #fff;
     margin-bottom: 30px;
 }

 .hero-btn {
     display: inline-block;
     background: #ff8c00;
     color: white;
     text-decoration: none;
     padding: 15px 40px;
     border-radius: 8px;
     font-size: 18px;
     font-weight: bold;
     transition: background 0.3s, transform 0.2s;
     margin-top: 10px;
 }

 .hero-btn:hover {
     background: #ff8c00;
     transform: scale(1.05);
 }

 /* --- Footer --- */
 footer {
     background-color: #1a1a1a;
     padding: 40px 20px;
     text-align: center;
     color: white;
 }

 .social-icons {
     display: flex;
     justify-content: center;
     gap: 25px;
     margin-bottom: 20px;
 }

 .social-icons a {
     color: #aaa;
     font-size: 28px;
     transition: color 0.3s, transform 0.3s;
 }

 .social-icons a:hover {
     color: #ff8c00;
     transform: translateY(-5px);
 }

 .copyright {
     font-size: 12px;
     color: #666;
     margin-top: 20px;
 }

 /* Responsividade */
 @media (max-width: 600px) {
     .hero h1 {
         font-size: 32px;
     }

     .content-box {
         padding: 40px 20px;
     }
 }