:root {
    --primary-blue: #0A58CA;
    --dark-blue: #02368A;
    --light-blue: #0088FF;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --bg-color: #F8F9FA;
    --text-primary: #333333;
    --text-secondary: #666666;
    --white: #FFFFFF;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--dark-blue);
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-wintage {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}



.nav {
    display: flex;
    gap: 20px;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 100px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    overflow: hidden;
}

.hero h1, .hero p, .hero b, .hero strong {
    color: var(--white);
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.hero-text-area {
    flex: 1;
}

.hero-text-area h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    font-weight: 800;
}

.hero-text-area p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-cta-box {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 30px;
    max-width: 450px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cta-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 20px !important;
    text-align: center;
    font-weight: 500;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #25D366;
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.wpp-icon {
    width: 32px;
    height: 32px;
}

.discount-badge {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image-area {
    flex: 1;
    position: relative;
    height: 450px;
}

.floating-img {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
    animation: float 6s ease-in-out infinite;
    object-fit: cover;
}

.img-house {
    width: 85%;
    height: 300px;
    top: 0;
    right: 0;
    z-index: 1;
    border: 5px solid rgba(255,255,255,0.2);
}

.img-car {
    width: 75%;
    height: 250px;
    bottom: 20px;
    left: -20px;
    z-index: 2;
    animation-delay: 1.5s;
    border: 5px solid white;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Products Section */
.products {
    padding: 100px 0;
}

.products-cars {
    background: var(--bg-color);
}

.products-realty {
    background: #eef2f6;
}

.products-header {
    text-align: center;
    margin-bottom: 50px;
}

.products-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.products-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(10, 88, 202, 0.3);
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 88, 202, 0.4);
}

.btn-green {
    background: #25D366;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-green:hover {
    background: #128C7E;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

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

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #e1e8f0;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h4 {
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.credit-value {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Differentials */
.differentials {
    padding: 100px 0;
    background: var(--white);
}

.section-desc {
    max-width: 800px;
    margin: 20px auto 50px auto;
    color: var(--text-secondary);
    font-size: 1.15rem;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.feature-card {
    background: #f8fbff;
    padding: 40px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform 0.3s;
    border-top: 4px solid var(--primary-blue);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.icon-wrap {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

/* Reviews */
.reviews {
    padding: 100px 0;
    background: var(--white);
}

.reviews-title {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.stars {
    color: #FFB400;
}

.review-count {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
}

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

.review-card {
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    background: #fcfcfc;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
}

.review-time {
    color: #888;
    font-size: 0.85rem;
}

.review-card p {
    color: var(--text-primary);
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.about-us {
    max-width: 850px;
    margin: 80px auto 0 auto;
    padding: 40px;
    background: #f1f6ff;
    border-radius: 16px;
    border-left: 5px solid var(--primary-blue);
    text-align: left;
}

.about-us h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 60px 0;
    font-size: 0.95rem;
}

.footer a {
    color: var(--light-blue);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-badges {
    margin: 25px 0;
}

.footer .badge {
    background: rgba(255,255,255,0.08);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-block;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-cta-box {
        margin: 0 auto;
    }

    .hero-image-area {
        width: 100%;
        height: 400px;
        margin-top: 40px;
    }

    .img-house {
        width: 75%;
    }
    .img-car {
        width: 65%;
    }
}

@media (max-width: 600px) {
    .nav {
        display: none;
    }

    .hero-text-area h1 {
        font-size: 2.3rem;
    }
    
    .hero {
        padding: 50px 0 60px 0;
    }

    .hero-image-area {
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: auto;
        margin-top: 40px;
    }
    
    .floating-img {
        position: static;
        width: 100%;
        height: 200px;
        animation: none;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .img-car {
        margin: 0;
        border: 2px solid white;
    }
    
    .img-house {
        margin: 0;
        border: 2px solid white;
    }
    
    .products-header h2 {
        font-size: 2.2rem;
    }
}
