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

:root {
    --primary: #0D47A1;
    --primary-dark: #0A3A82;
    --secondary: #E91E63;
    --accent: #1FA300;
    --gold: #F4C542;
    --bg: #F4F6F9;
    --card: #FFFFFF;
    --dark: #0B1320;
    --text: #1B1F23;
    --text-muted: #5F6B7A;
    --border: #DCE3EC;
    --shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 30px 45px -12px rgba(0, 0, 0, 0.25);
    --gradient-main: linear-gradient(135deg, #0D47A1, #1565C0);
    --gradient-brand: linear-gradient(135deg, #0D47A1, #E91E63, #1FA300);
    --radius: 20px;
    --transition: 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.navbar-brand img{
    width: 100px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

/* Cuando se hace scroll */
.navbar-scrolled .navbar-brand img{
    filter: none;
}


/* Navbar */
.navbar {
    transition: all 0.4s ease;
    padding: 1.2rem 0;
    background-color: transparent;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 0.7rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.5px;
    background: var(--gradient-brand);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent !important;
}

.navbar-nav .nav-link {
    font-weight: 600;
    margin: 0 0.6rem;
    color: white;
    transition: var(--transition);
    position: relative;
}

.navbar-scrolled .nav-link {
    color: var(--dark) !important;
}

.nav-link:hover {
    color: var(--secondary) !important;
    transform: translateY(-2px);
}

/* Botones */
.btn-gradient {
    background: linear-gradient(95deg, var(--primary), var(--secondary));
    border: none;
    padding: 12px 34px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    background: linear-gradient(95deg, var(--secondary), var(--primary));
}

.btn-outline-light-custom {
    border: 2px solid white;
    background: transparent;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    color: white;
    transition: var(--transition);
}

.btn-outline-light-custom:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}






.logo-levis{
    height:70px;
    width:auto;
    vertical-align:middle;
    margin-left:10px;
    filter:drop-shadow(0 5px 10px rgba(0,0,0,.25));
}






/* Hero Section mejorada */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #C01420 0%, #001b44 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/6647396/pexels-photo-6647396.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    opacity: 0.15;
    pointer-events: none;
}

.hero-title {
    font-weight: 800;
    font-size: 3.8rem;
    line-height: 1.2;
}

.exclusive-badge {
    background: rgba(244, 197, 66, 0.25);
    backdrop-filter: blur(6px);
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    border-left: 3px solid var(--gold);
    color: var(--gold);
}

/* Carrusel cards mejorado */
.carousel-collection .carousel-inner {
    padding: 1rem;
}

.product-card-carousel {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    margin: 0 10px;
}

.product-card-carousel:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-img-car {
    height: 280px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s;
}

.product-card-carousel:hover .product-img-car {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    color: var(--dark);
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 0.7rem;
    z-index: 2;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: var(--primary);
    border-radius: 50%;
    padding: 20px;
    background-size: 50%;
}

/* Secciones generales */
.section-padding {
    padding: 100px 0;
}

.section-title {
    font-weight: 800;
    font-size: 2.7rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.title-decoration {
    width: 90px;
    height: 4px;
    background: var(--gradient-brand);
    margin: 0 auto 2rem auto;
    border-radius: 4px;
}

.card-value {
    background: var(--card);
    border: none;
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
}

.card-value:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.card-value i {
    font-size: 3rem;
    background: var(--gradient-brand);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.vision-bg {
    background: linear-gradient(125deg, #ffffff, #F4F9FF);
    border-radius: 40px;
    padding: 3rem;
    border: 1px solid rgba(13, 71, 161, 0.1);
    transition: var(--transition);
}

.vision-bg:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-card,
.form-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.contact-card:hover,
.form-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    z-index: 1040;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.05);
    background: #20b359;
    color: white;
}

footer {
    background: var(--dark);
    color: #ccc;
    padding: 3rem 0 1.5rem;
}

.social-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.4rem;
    color: white;
    margin: 0 4px;
}

.social-icon:hover {
    background: var(--secondary);
    transform: translateY(-5px);
    color: white;
}

.btn-submit {
    background: var(--gradient-main);
    border: none;
    padding: 12px;
    font-weight: 700;
    border-radius: 50px;
    width: 100%;
    color: white;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.img-soft {
    border-radius: 32px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.img-soft:hover {
    transform: scale(1.02);
}

/* Estilo para el botón activo del carrusel */
.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 12px;
    }

    .product-img-car {
        height: 220px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }
}