/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* CONTAINER PADRÃO */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LOGO HOME (LINK TEXTO) */
.logo_home {
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
}

/* HERO LOGO */
.logo-hero {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-hero img {
    width: 20%;
    max-width: 80%;
    height: auto;
    opacity: 0.9;
    filter: drop-shadow(0 10px 30px rgba(0, 255, 136, 0.3));
    transition: all 0.3s ease;
}

.logo-hero img:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* TÍTULOS */
.secao-titulo {
    font-size: 2rem;
    margin: 40px 0 20px;
    font-weight: 700;
    color: #00ff88;
    text-align: center;
}

/* =========================
   HEADER (CORRIGIDO)
========================= */

header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 40px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

/* NAV */
nav {
    display: flex;
}

nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #00ff88;
}

/* BOTÃO CTA */
.cta-button {
    background: #00ff88;
    color: #000;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.4);
}

/* MAIN */
main {
    margin-top: 100px;
    padding: 80px 0;
}

/* HERO */
.hero {
    text-align: center;
    margin-bottom: 100px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #fff, #00ff88);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.4rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* GRID MOTOS */
.motos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* CARD */
.moto-card {
    background: #111;
    border-radius: 25px;
    overflow: hidden;
    transition: 0.4s;
    border: 2px solid transparent;
}

.moto-card:hover {
    transform: translateY(-15px);
    border-color: #00ff88b9;
}

/* IMAGEM */
.moto-image-container {
    height: 250px;
}

.moto-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* INFO */
.moto-info {
    padding: 25px;
}

.moto-preco {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff88;
}

/* OVERLAY */
.moto-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 255, 136, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.moto-card:hover .moto-overlay {
    opacity: 1;
}

/* DETALHES */
.moto-detalhes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* GALERIA */
.gallery-main {
    height: 500px;
    border-radius: 25px;
    overflow: hidden;
}

#mainImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SPECS */
.moto-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.spec-item {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
}

/* BOTÕES */
.cta-button.secondary {
    background: transparent;
    border: 2px solid #00ff88;
    color: #fff;
}

.cta-button.secondary:hover {
    background: #00ff88;
    color: #000;
}

/* WHATSAPP */
.whatsapp-btn {
    background: #25D366;
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* RODAPE */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #00ff88;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #00ff88;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-location {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-top: 20px;
}

.footer-location i {
    font-size: 1.5rem;
    color: #00ff88;
    margin-top: 3px;
}

.footer-location strong {
    color: #fff;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #00ff88;
    padding-left: 5px;
}


.contact-item {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
    color: #ccc;
}

.contact-item i {
    font-size: 1.2rem;
    width: 25px;
    color: #00ff88;
}

.contact-item a {
    color: #ccc;
}

.contact-item.whatsapp a:hover {
    color: #25D366;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s;
    text-decoration: none;
    color: #fff;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 255, 136, 0.4);
}

.social-btn.instagram {
    background: #E4405F;
}

.social-btn.facebook {
    background: #1877F2;
}

.social-btn.whatsapp {
    background: #25D366;
}

.social-btn.tiktok {
    background: #000;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-icons {
    display: flex;
    gap: 10px;
    font-size: 1.4rem;
}

.payment-icons i {
    color: #ccc;
    transition: 0.3s;
}

.payment-icons i:hover {
    color: #00ff88;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    color: #888;
}

.footer-bottom a {
    color: #ccc;
    margin: 0 10px;
}

.footer-bottom a:hover {
    color: #00ff88;
}

/* RESPONSIVO */
@media (max-width: 768px) {

    header .container {
        padding: 1rem 20px;
    }

    nav ul {
        gap: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .moto-detalhes {
        grid-template-columns: 1fr;
    }

    .motos-container {
        grid-template-columns: 1fr;
    }
}