:root {
    --primary-color: #d83600;
    --secondary-color: #000000;
    --accent-color: #ffd000;
    --text-color: #202020;
    --light-text: #fff;
    --background-color: #e0e0e0;
    --card-bg: #f0f0f0;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --header-red: #c81400;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Header */
header {
    position: relative;
    box-shadow: var(--shadow);
    background-color: #fff;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: block;
}

.header-banner {
    width: 100%;
    max-width: 100%;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.header-image-desktop {
    width: 100vw;
    max-width: none;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

.header-image-mobile {
    width: 100vw;
    max-width: none;
    height: auto;
    display: none;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

/* Sub Header */
.sub-header {
    background-color: var(--header-red);
    color: white;
    padding: 12px 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.sub-header-text {
    font-size: 18px;
    font-weight: 500;
    display: inline;
}

.sub-header-highlight {
    background-color: var(--accent-color);
    color: #000;
    padding: 3px 10px;
    font-weight: 700;
    margin: 0 5px;
    display: inline-block;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1px;
}

.logo {
    max-width: 180px;
    height: auto;
}

.header-promo {
    display: none;
}

header .tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-color);
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #c62f00, var(--primary-color));
    color: var(--light-text);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.highlight {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 5px 10px;
    font-weight: 900;
    transform: rotate(-2deg);
    margin: 0 5px;
}

.benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.benefit-item {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    padding: 25px;
    border-radius: var(--border-radius);
    max-width: 350px;
    text-align: left;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.benefit-item ul {
    list-style-position: inside;
    margin-left: 10px;
}

.benefit-item li {
    margin-bottom: 5px;
    font-size: 20px;
}

.benefit-item p {
    font-size: 20px;
}

/* Floating Motos */
.floating-motos {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-moto {
    position: absolute;
    max-width: 180px;
    opacity: 0.2;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.moto1 {
    top: 10%;
    left: 5%;
    animation: float 15s ease-in-out infinite, moveLeft 30s linear infinite;
}

.moto2 {
    top: 60%;
    right: 10%;
    animation: float 20s ease-in-out infinite reverse, moveRight 40s linear infinite;
}

.moto3 {
    bottom: 15%;
    left: 15%;
    animation: float 18s ease-in-out infinite, moveLeftSlow 35s linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes moveLeft {
    0% {
        left: 100%;
    }
    100% {
        left: -20%;
    }
}

@keyframes moveRight {
    0% {
        right: 100%;
    }
    100% {
        right: -20%;
    }
}

@keyframes moveLeftSlow {
    0% {
        left: 100%;
    }
    100% {
        left: -10%;
    }
}

/* Motorcycles Section */
.motorcycles {
    padding: 20px 0;
    background-color: var(--background-color);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
}

.motorcycle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.motorcycle-card {
    background-color: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
    border: 1px solid #ccc;
}

.motorcycle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.motorcycle-header {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 15px;
    text-align: center;
}

.motorcycle-header h3 {
    font-size: 1.3rem;
}

.moto-image-container {
    background-color: #fff;
    text-align: center;
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.moto-image {
    max-width: 100%;
    height: auto;
    max-height: 150px;
    transition: transform 0.5s;
}

.motorcycle-card:hover .moto-image {
    transform: scale(1.05);
}

/* Promo Section */
.promo-banner {
    background: linear-gradient(to bottom, var(--primary-color) 70%, var(--accent-color) 70%);
    border-radius: var(--border-radius);
    overflow: hidden;
    padding: 30px;
    position: relative;
    margin: 40px auto;
    max-width: 800px;
    text-align: center;
    box-shadow: var(--shadow);
}

.promo-banner h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}

.promo-image {
    width: 50%;
    text-align: center;
    position: relative;
}

.promo-image img {
    max-width: 100%;
    height: auto;
}

.promo-details {
    width: 45%;
    color: white;
}

.promo-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin: 20px 0;
}

.promo-note {
    font-size: 0.9rem;
    color: #333;
    margin-top: 20px;
}

.promo-direction {
    background-color: #333;
    color: var(--accent-color);
    padding: 8px 15px;
    display: inline-block;
    margin-top: 20px;
    font-weight: 700;
}

.promo-direction .arrow {
    margin-left: 10px;
    display: inline-block;
}

.motorcycle-plans {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan {
    border: 1px solid #ccc;
    border-radius: var(--border-radius);
    padding: 15px;
    transition: all 0.3s;
    background-color: #fff;
}

.plan:hover {
    border-color: var(--primary-color);
    background-color: rgba(216, 54, 0, 0.05);
}

.plan h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--primary-color);
    text-align: center;
}

.plan ul {
    list-style: none;
}

.plan li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.plan li::before {
    content: '→';
    margin-right: 8px;
    color: var(--primary-color);
}

.plan strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.note {
    background-color: var(--accent-color);
    padding: 20px;
    border-radius: var(--border-radius);
    margin-top: 30px;
    text-align: center;
    font-weight: 500;
    color: #000;
    box-shadow: var(--shadow);
}

/* CTA Section */
.cta {
    padding: 60px 0;
    background-color: rgba(200, 20, 0, 0.918);
    color: var(--light-text);
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.questions {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 40px;
    text-align: left;
    background-color: #000000B3;
    padding: 25px;
    border-radius: var(--border-radius);
}

.questions li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.questions li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.whatsapp-button {
    display: inline-block;
    background-color: #1d9c4c;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 1.5s infinite;
    transition: transform 0.3s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-button:hover {
    background-color: #128c7e;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.whatsapp-button i {
    margin-right: 10px;
}

.disclaimer {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .motorcycles {
        margin-bottom: -60px;
    }
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .benefit-item {
        width: 100%;
    }
    
    .motorcycle-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title, .cta h2 {
        font-size: 1.8rem;
    }
    
    .promo-image, .promo-details {
        width: 100%;
    }
    
    .promo-image {
        margin-bottom: 20px;
    }
    
    header, .header-banner {
        width: 100vw;
        max-width: 100vw;
    }
    
    .header-image-desktop {
        display: none;
    }
    
    .header-image-mobile {
        display: block;
        width: 100vw;
        max-width: none;
    }
    
    .sub-header-text {
        font-size: 16px;
        display: block;
        line-height: 1.8;
    }
    
    .sub-header-highlight {
        padding: 3px 8px;
        margin: 5px;
    }

    .motorcycle-grid {

        gap: 0px;
  
    }
}

@media (max-width: 480px) {

    .motorcycles {
        margin-bottom: -60px;
    }

    

    .motorcycle-grid {

        gap: 0px;
  
    }

    .logo {
        max-width: 140px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .hero h2 {
        font-size: 1.3rem;
    }
    
    .whatsapp-button {
        font-size: 0.9rem;
    }
    
    .promo-price {
        font-size: 1.5rem;
    }
    
    .sub-header-text {
        font-size: 14px;
    }
    
    .sub-header-highlight {
        padding: 2px 5px;
    }
    
    header, .header-banner, .header-image-mobile {
        width: 100vw;
        max-width: none;
        overflow: hidden;
    }
} 