:root {
    --primary: #0051a9;
    --secondary: #ff6b00;
    --accent: #00c2a8;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
            --error: #dc3545;
            --success: #28a745;
}
a{text-decoration: none !important;}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*finlizar*/
 .tagline2 {
            font-size: 1.3rem;
            color: var(--dark);
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .subtagline2 {
            font-size: 1rem;
            color: var(--gray);
        }
        
        .confirmation-card {
            background: white;
            border-radius: 20px;
            box-shadow: var(--shadow);
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .confirmation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .confirmation-icon {
            font-size: 5rem;
            color: var(--success);
            margin-bottom: 30px;
            animation: iconBounce 1s ease;
        }
        
        @keyframes iconBounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-20px);
            }
            60% {
                transform: translateY(-10px);
            }
        }
        
        .confirmation-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 30px;
            line-height: 1.3;
        }
        
        .confirmation-message {
            font-size: 1.3rem;
            color: var(--dark);
            margin-bottom: 25px;
            line-height: 1.5;
        }
        
        .whatsapp-highlight {
            display: inline-flex;
            align-items: center;
            background: #25D366;
            color: white;
            padding: 8px 15px;
            border-radius: 50px;
            font-weight: 600;
            margin-top: 10px;
        }
        
        .whatsapp-highlight i {
            margin-right: 8px;
            font-size: 1.2rem;
        }
        
        .next-steps {
            background: rgba(0, 81, 169, 0.05);
            border-radius: 15px;
            padding: 25px;
            margin-top: 40px;
            text-align: left;
        }
        
        .next-steps-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .next-steps-title i {
            margin-right: 10px;
        }
        
        .next-steps-list {
            list-style-type: none;
        }
        
        .next-steps-list li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        
        .next-steps-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
          .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, #003d7a 100%);
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        .texarea{
    width: 100%;
    border: 1px solid #e1e5eb;
    padding: 10px;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 81, 169, 0.3);
        }
        
        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
        }
        
        .btn-secondary:hover {
            background: rgba(0, 81, 169, 0.05);
        }
        
        .btn-icon {
            margin-right: 8px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .confirmation-card {
                padding: 40px 25px;
            }
            
            .confirmation-title {
                font-size: 1.8rem;
            }
            
            .confirmation-message {
                font-size: 1.1rem;
            }
            
            .confirmation-icon {
                font-size: 4rem;
            }
            
            .action-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary, .btn-secondary {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .logo {
                font-size: 2rem;
            }
            
            .tagline2 {
                font-size: 1.1rem;
            }
            
            .confirmation-title {
                font-size: 1.6rem;
            }
            
            .confirmation-message {
                font-size: 1rem;
            }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
/*fin finalizar*/
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    color: var(--dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 1200px;
    width: 100%;
}

/* Header styles */
.header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.catalogo {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Vehicle title */
.vehicle-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.vehicle-title h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    display: inline-block;
    padding: 0 20px;
}

.vehicle-title h2::before,
.vehicle-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.vehicle-title h2::before {
    left: -50px;
}

.vehicle-title h2::after {
    right: -50px;
}

/* Promo card */
.promo-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 40px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.promo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.price-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 35px;
}

.price-box {
    flex: 1;
    min-width: 250px;
    padding: 25px 25px;
    border-radius: 15px;
    background: var(--light);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.price-box:hover {
    transform: translateY(-3px);
}

.price-label {
    font-size: 24px;
    color: var(--gray);
    margin-bottom: 15px;
    font-weight: 500;
}

.price-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 25px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.price-box:nth-child(2) .price-value {
    color: var(--accent);
}

.price-icon {
    font-size: 30px;
    color: var(--secondary);
    margin-bottom: 15px;
}

/* Disclaimer */
.disclaimer {
    font-size: 1rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 25px;
    padding: 15px;
    background: #fff9f2;
    border-radius: 10px;
    display: inline-block;
    max-width: 90%;
}

/* Benefit */
.benefit {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 35px;
    padding: 15px 25px;
    background: rgba(0, 131, 255, 0.05);
    border-radius: 50px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.benefit i {
    margin-right: 10px;
    color: var(--secondary);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #003d7a 100%);
    color: white;
    padding: 18px 45px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 81, 169, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 81, 169, 0.4);
}

.cta-button:active {
    transform: translateY(1px);
}

.cta-button i {
    margin-left: 10px;
    transition: var(--transition);
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px 0;
    color: var(--gray);
    font-size: 0.9rem;
    width: 100%;
}

/* Car visual */
.car-visual {
    margin: 25px auto;
    width: 200px;
    height: 100px;
    background: var(--primary);
    border-radius: 50% 50% 0 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.car-visual::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 10px;
    background: #333;
    border-radius: 5px;
    bottom: -5px;
}
.boxCar{
       text-align: center;
    max-height: 450px; 
        margin: 0 20px;
}
.boxCar img{
    border-radius: 10px;
    margin: auto;
        height: 300px;
    width: auto;
}
.logo img{
    max-width: 300px;
    width: 100%;
} 
.slick-prev, .slick-next{
    z-index: 9;
}
/*logins*/

        .tagline {
            font-size: 1.2rem;
            color: var(--dark);
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .subtagline {
            font-size: 1rem;
            color: var(--gray);
        }
        
        .login-card {
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            padding: 30px;     
            max-width: 500px;
            width: 100%;
            margin: auto;
            margin-bottom: 20px;

        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--dark);
        }
        
        .input-with-icon {
            position: relative;
        }
        
        .input-with-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--gray);
        }
        
        .input-with-icon input {
            width: 100%;
            padding: 15px 15px 15px 45px !important;
            border: 2px solid #e1e5eb;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        
        .input-with-icon input:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 81, 169, 0.1);
        }
        
        .input-with-icon input.error {
            border-color: var(--error);
        }
        
        .error-message {
            color: var(--error);
            font-size: 0.8rem;
            margin-top: 5px;
            display: none;
        }
        
        .btn-login {
            display: block;
            width: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, #003d7a 100%);
            color: white;
            border: none;
            padding: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 10px;
        }
        
        .btn-login:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 81, 169, 0.3);
        }
        
        .btn-register {
            display: block;
            max-width: 500px;
            margin: auto;
            width: 100%;
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
            padding: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .btn-register:hover {
            background: rgba(0, 81, 169, 0.05);
        }
        
        .btn-volver {
                display: inline-flex;    
                align-items: center;
                justify-content: center;
                background: linear-gradient(135deg, var(--primary) 0%, #003d7a 100%);
                color: white;
                padding: 10px 20px;
                font-size: 12px;
                font-weight: 600;
                border-radius: 50px;
                text-decoration: none;
                transition: var(--transition);
                box-shadow: 0 5px 15px rgba(0, 81, 169, 0.3);
                position: relative;
                overflow: hidden;
                position: absolute;
                top: 10px;
                left: 0;
                width: auto;
        } 
        /* Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background: white;
            border-radius: 15px;
            width: 90%;
            max-width: 400px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            position: relative;
            animation: modalFadeIn 0.3s;
        }
        
        @keyframes modalFadeIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .modal-icon {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        
        .success .modal-icon {
            color: var(--success);
        }
        
        .error .modal-icon {
            color: var(--error);
        }
        
        .modal-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .modal-message {
            margin-bottom: 25px;
            color: var(--gray);
        }
        
        .modal-close {
            background: var(--primary);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .modal-close:hover {
            background: #003d7a;
        }
        
        /* Responsive */
        @media (max-width: 480px) {
            .login-card {
                padding: 20px;
            }
            
            .logo {
                font-size: 1.8rem;
            }
            
            .tagline {
                font-size: 1.1rem;
            }
        }
        .registration-card {
            background: white;
            border-radius: 15px;
            box-shadow: var(--shadow);
            padding: 30px;
            margin-bottom: 20px;
        }
        
        .form-section {
            margin-bottom: 30px;
        }
        
        .section-title {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e1e5eb;
        }
        
        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
        }
        
        .form-group {
            flex: 1 0 300px;
            margin: 0 10px 20px;
            min-width: 0;
        }
        
        .form-group.full-width {
            flex: 1 0 100%;
        }
        
        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 500;
            margin-bottom: 8px;
            color: var(--dark);
        }
        
        .form-group input, .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e1e5eb;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
            font-family: 'Montserrat', sans-serif;
        }
        
        .form-group input:focus, .form-group select:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 81, 169, 0.1);
        }
        
        .form-group input.error, .form-group select.error {
            border-color: var(--error);
        }
        
        .error-message {
            color: var(--error);
            font-size: 0.8rem;
            margin-top: 5px;
            display: none;
        }
        
        .file-upload-section {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 10px;
        }
        
        .file-upload {
            flex: 1;
            min-width: 200px;
        }
        
        .file-upload-label {
            display: block;
            background: var(--light);
            border: 2px dashed #e1e5eb;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .file-upload-label:hover {
            border-color: var(--primary);
            background: rgba(0, 81, 169, 0.05);
        }
        
        .file-upload-label i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .file-upload-label span {
            display: block;
            font-weight: 500;
            margin-bottom: 5px;
        }
        
        .file-upload-label small {
            color: var(--gray);
            font-size: 0.8rem;
        }
        
        .file-input {
            display: none;
        }
        
        .file-name {
            margin-top: 10px;
            font-size: 0.9rem;
            color: var(--primary);
            display: none;
        }
        .btn-submit {
            display: block;
            width: 100%;
            background: linear-gradient(135deg, var(--primary) 0%, #003d7a 100%);
            color: white;
            border: none;
            padding: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            margin-top: 20px;
        }
        
        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 81, 169, 0.3);
        }
        
        .btn-submit:disabled {
            background: #6c757d;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
/* Responsive adjustments */
@media (max-width: 992px) {
    .vehicle-title h2 {
        font-size: 2.4rem;
    }

    .price-value {
        font-size: 37px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 15px;
    }
    .cta-button{
margin-bottom: 12px;
    }
    .logo {
        font-size: 18px;
    }

    .vehicle-title h2 {
        font-size: 18px;
    }

    .vehicle-title h2::before,
    .vehicle-title h2::after {
        width: 20px;
    }

    .vehicle-title h2::before {
        left: -25px;
    }

    .vehicle-title h2::after {
        right: -25px;
    }

    .price-section {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .price-box {
        width: 100%;
        max-width: 300px;
    }

    .promo-card {
        padding: 25px 20px;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.8rem;
    }

    .vehicle-title h2 {
        font-size: 1.8rem;
    }

    .vehicle-title h2::before,
    .vehicle-title h2::after {
        display: none;
    }

    .price-value {
        font-size: 37px;
    }

    .benefit {
               font-size: 15px;
        padding: 12px 20px;
        margin-bottom: 17px;

    }

    .disclaimer {
        font-size: 0.9rem;
            margin-bottom: 10px;
    }

    .car-visual {
        width: 150px;
        height: 75px;
        font-size: 1.5rem;
    }

    .car-visual::before {
        width: 170px;
    }
}

/*resistro*/
/* Responsive */
        @media (max-width: 768px) {
            .registration-card {
                padding: 20px;
            }
            .logo img{
                    max-width: 139px;
            }
            .price-icon{
margin-bottom: 5px;
            }
                .promo-card {
        padding: 10px;
    }
            .price-section {
                flex-direction: row;
                align-items: center;
                gap: 10px;
                margin-bottom: 10px;
            }
            .price-label{
                font-size: 11px;
                    margin-bottom: 0;
            }
                .price-value {
        font-size: 22px;
    }
            .price-box{
                width: 50%;
                padding: 0px;
                min-width: auto;
            }
            .vehicle-title{
margin-bottom: 10px;
            }
            .header{
    margin-bottom: 10px;
            }
            .boxCar img{
                    height: 143px;
            }
            .form-row {
                flex-direction: column;
            }
            
            .form-group {
                flex: 1 0 100%;
            }
            
            .file-upload-section {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .logo {
                font-size: 1.8rem;
            }
            
            .tagline {
                font-size: 1.1rem;
            }
        }
        
        .password-strength {
            margin-top: 5px;
            height: 5px;
            border-radius: 5px;
            background: #e1e5eb;
            overflow: hidden;
        }
        
        .password-strength-bar {
            height: 100%;
            width: 0%;
            transition: var(--transition);
        }
        
        .strength-weak {
            background: var(--error);
            width: 25%;
        }
        
        .strength-medium {
            background: #ffc107;
            width: 50%;
        }
        
        .strength-strong {
            background: var(--success);
            width: 100%;
        }
        
        .password-requirements {
            font-size: 0.8rem;
            color: var(--gray);
            margin-top: 5px;
        }