.elementor-7 .elementor-element.elementor-element-1efdef2{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-e8d68be */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Simplified Color Variables - Single Accent Color */
:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --accent-blue: #1e3a8a; /* Elegant dark blue */
    --accent-blue-light: #3b82f6; /* Lighter blue for hover effects */
    --dark-gray: #2c3e50;
    --light-gray: #ecf0f1;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #2c3e50 50%, #000000 100%);
    --gradient-accent: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
    --gradient-subtle: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    --whatsapp-green: #25d366;
    --instagram-gradient: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--gradient-primary);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    background-size: 40px 4px;
    animation: raceStripe 3s linear infinite;
}

@keyframes raceStripe {
    0% { background-position: 0 0; }
    100% { background-position: 40px 0; }
}

.header.scrolled {
    background: linear-gradient(135deg, #000000 0%, #1e3a8a 50%, #000000 100%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-bottom-color: var(--accent-blue);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo img {
    height: 85px; /* Cambiar de 65px a 85px */
    width: auto;
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.1);
    filter: brightness(1.4) drop-shadow(0 0 20px rgba(30, 58, 138, 0.6));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
}

.nav-link:hover {
    background: var(--gradient-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
    color: white;
}

.nav-link.active {
    background: var(--gradient-subtle);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu:hover {
    background: rgba(30, 58, 138, 0.2);
}

.mobile-menu span {
    width: 28px;
    height: 3px;
    background: var(--gradient-accent);
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6) 0%, 
        rgba(30, 58, 138, 0.4) 50%, 
        rgba(0, 0, 0, 0.6) 100%
    ), url('https://autolap-pe.com/wp-content/uploads/2025/08/la-mano-en-el-volante-al-atardecer-conducir-en-la-carretera-viajar-en-coche-por-la-noche-scaled.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="checkered" x="0" y="0" width="10" height="10" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="5" height="5" fill="rgba(30,58,138,0.1)"/><rect x="5" y="5" width="5" height="5" fill="rgba(30,58,138,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23checkered)"/></svg>');
    animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: slideInDown 1s ease-out;
}

.hero-logo img {
    height: 280px; /* Cambiar de 220px a 280px */
    width: auto;
    filter: brightness(1.3) drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
}

.hero-tagline {
    font-size: 2rem;
    color: #ecf0f1;
    margin-bottom: 3rem;
    animation: slideInUp 1s ease-out 0.5s both;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-out 1s both;
}

.btn {
    padding: 1.2rem 2.5rem;
    border: 2px solid transparent;
    background: var(--gradient-accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4);
    background: var(--gradient-subtle);
}

/* Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #2c3e50 0%, #000000 50%, #2c3e50 100%);
    color: white;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="checkered-white" x="0" y="0" width="8" height="8" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="4" height="4" fill="rgba(30,58,138,0.05)"/><rect x="4" y="4" width="4" height="4" fill="rgba(30,58,138,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23checkered-white)"/></svg>');
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-logo {
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

.about-logo img {
    max-width: 300px;
    width: 100%;
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(30, 58, 138, 0.4));
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.8;
    animation: slideInRight 0.8s ease-out;
}

.about-text p {
    margin-bottom: 1.5rem;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Products Section */
.products {
    background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 50%, #ecf0f1 100%);
    position: relative;
}

.camionetas-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    animation: fadeInUp 0.8s ease-out;
    border: 3px solid transparent;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    border-color: var(--accent-blue);
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
}

.product-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-details {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-details li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 25px;
    font-weight: 500;
}

.product-details li::before {
    content: '🏁';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.product-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-align: center;
    background: var(--gradient-accent);
    padding: 1.2rem;
    border-radius: 15px;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #2c3e50 0%, #000000 50%, #2c3e50 100%);
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="checkered-contact" x="0" y="0" width="12" height="12" patternUnits="userSpaceOnUse"><rect x="0" y="0" width="6" height="6" fill="rgba(30,58,138,0.03)"/><rect x="6" y="6" width="6" height="6" fill="rgba(30,58,138,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23checkered-contact)"/></svg>');
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info {
    animation: slideInLeft 0.8s ease-out;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-blue);
    position: relative;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-left-color: var(--accent-blue-light);
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    width: 70px;
    text-align: center;
    color: var(--accent-blue-light);
}

.contact-text {
    font-size: 1.3rem;
    font-weight: 500;
}

.contact-item:last-child .contact-icon {
    background: var(--instagram-gradient);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-item:last-child .contact-icon::before {
    
    font-family: 'Font Awesome 6 Brands';
    font-size: 1.8rem;
}

.instagram-link {
    display: none;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-logo {
    text-align: center;
    animation: rotateIn 1s ease-out;
}

.contact-logo img {
    max-width: 250px;
    width: 100%;
    filter: brightness(1.2) drop-shadow(0 0 25px rgba(30, 58, 138, 0.4));
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--whatsapp-green);
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: white;
    text-align: center;
    padding: 2rem 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 9rem;
    right: 2rem;
    background: var(--gradient-accent);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.4);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.6);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .nav-container {
        max-width: 100%;
        padding: 1rem 1.5rem;
    }
    
    .container {
        max-width: 100%;
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
        gap: 2rem;
        padding: 2rem;
        border-radius: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1.5rem 3rem;
        font-size: 1.1rem;
        width: 100%;
        text-align: center;
        border-radius: 15px;
    }

    .mobile-menu {
        display: flex;
    }

    .logo img {
        height: 70px; /* Aumentar de 55px a 70px */
    }

    .hero {
        padding: 0 1rem;
    }

    .hero-logo img {
        height: 200px; /* Aumentar de 150px a 200px */
    }

    .hero-tagline {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
    }

    .section {
        padding: 3rem 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-logo img {
        max-width: 200px;
    }

    .about-text {
        font-size: 1.1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }

    .instagram-link {
        position: static;
        transform: none;
        margin-top: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-card {
        margin: 0 1rem;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .scroll-top {
        width: 50px;
        height: 50px;
        bottom: 8rem;
        right: 1.5rem;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }

    .logo img {
        height: 60px; /* Aumentar de 45px a 60px */
    }

    .container {
        padding: 0 1rem;
    }

    .hero-logo img {
        height: 160px; /* Aumentar de 120px a 160px */
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .product-info {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .product-price {
        font-size: 1.5rem;
        padding: 1rem;
    }

    .contact-text {
        font-size: 1.1rem;
    }

    .contact-logo img {
        max-width: 180px;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
}

@media (max-width: 360px) {
    .hero-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .product-card {
        margin: 0 0.5rem;
    }
}

/* Loading animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1e3a8a 50%, #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--accent-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Additional responsive utilities */
@media (orientation: landscape) and (max-height: 500px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 6rem 1rem 2rem;
    }
    
    .hero-logo img {
        height: 80px;
    }
    
    .hero-tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo img,
    .hero-logo img,
    .about-logo img,
    .contact-logo img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}/* End custom CSS */