
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; scroll-behavior: smooth; }
body { color: #333; line-height: 1.6; }

header { background: #2c3e50; padding: 15px 5%; position: sticky; top: 0; z-index: 1000; }
.navbar { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.logo { color: white; font-size: 1.5rem; font-weight: bold; }
.logo span { color: #3498db; }
.nav-links { display: flex; list-style: none; }
.nav-links li { margin: 0 15px; }
.nav-links a { color: white; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: #3498db; }


.search-box { display: flex; }
.search-box input { padding: 6px; border-radius: 5px 0 0 5px; border: none; outline: none; }
.search-box button { padding: 6px 12px; background: #3498db; color: white; border: none; border-radius: 0 5px 5px 0; cursor: pointer; }


.hero { background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1300&q=80'); height: 60vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; color: white; text-align: center; }
.btn-main { display: inline-block; margin-top: 20px; padding: 12px 30px; background: #3498db; color: white; text-decoration: none; border-radius: 5px; }
.hero {
   
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('hero-simca.jpg'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    height: vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: rgb(255, 255, 255);
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.about-section { padding: 80px 5%; background: white; }
.about-container { display: flex; align-items: center; gap: 40px; max-width: 1100px; margin: 0 auto; flex-wrap: wrap; }
.about-image { flex: 1; min-width: 300px; }
.about-image img { width: 100%; border-radius: 15px; box-shadow: 15px 15px 0 #3498db; }
.about-text { flex: 1; min-width: 300px; }
.subtitle { color: #3498db; font-weight: bold; }
.about-stats { display: flex; gap: 20px; margin-top: 20px; }


.services-container { padding: 80px 5%; background: #f9f9f9; text-align: center; }
.services-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 30px; }
.service-card { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); width: 280px; }




.slider-container {
    position: relative;
    width: 100%;
    height: 500px; 
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; 
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1; 
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}


.slide-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 74, 153, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1.2rem;
    z-index: 3;
}
@keyframes slide { 0%, 30% { transform: translateX(0); } 33%, 63% { transform: translateX(-33.33%); } 66%, 100% { transform: translateX(-66.66%); } }

.servicios-detalle { padding: 80px 10%; }
.item-servicio { display: flex; align-items: center; gap: 50px; margin-bottom: 60px; scroll-margin-top: 120px; }
.item-servicio.reverse { flex-direction: row-reverse; }
.item-servicio img { width: 45%; border-radius: 10px; }

.servicios-intro {
    text-align: center;
    padding: 60px 20px 20px;
}

.servicios-intro h2 {
    font-size: 2.5rem;
    color: #004a99;
}

.servicios-intro p {
    color: #666;
    max-width: 600px;
    margin: 10px auto;
}


.servicios-detalle {
    padding: 60px 10%;
    background-color: #fcfcfc;
}

.item-servicio {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.item-servicio:hover {
    transform: translateY(-10px);
}


.item-servicio.reverse {
    flex-direction: row-reverse;
}

.item-servicio img {
    width: 450px;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

.texto-servicio h3 {
    color: #004a99;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
}


.texto-servicio h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #25d366;
    margin-top: 10px;
}

.texto-servicio p {
    margin-bottom: 12px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}


.texto-servicio p::before {
    content: '✔';
    color: #004a99;
    font-weight: bold;
}


@media (max-width: 768px) {
    .item-servicio, .item-servicio.reverse {
        flex-direction: column;
        padding: 20px;
    }
    .item-servicio img {
        width: 100%;
        height: 250px;
    }
}


.jobs-section {
    padding: 60px 10%;
    background-color: #f9f9f9;
}

.jobs-container {
    max-width: 1100px;
    margin: 0 auto;
}

.jobs-header {
    text-align: center;
    margin-bottom: 40px;
}

.jobs-header h2 {
    color: #0056b3;
    font-size: 2rem;
    margin-bottom: 10px;
}


.jobs-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}


.job-benefits {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.job-benefits h3 {
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
}

.job-benefits ul {
    list-style: none;
    padding: 0;
}

.job-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.job-benefits i {
    color: #28a745;
}

.modern-form {
    flex: 1.5;
    min-width: 320px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.input-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #444;
}

.input-group input, 
.input-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus, 
.input-group select:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 5px rgba(0,86,179,0.2);
}


.info-note {
    background: #e7f3ff;
    color: #0056b3;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}


.btn-whatsapp-submit {
    width: 100%;
    padding: 15px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.btn-whatsapp-submit:hover {
    background-color: #1ebe57;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .jobs-section {
        padding: 40px 5%;
    }
}

.file-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}


@media (max-width: 768px) {
    .jobs-content {
        grid-template-columns: 1fr;
    }
}


.contact-container {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-form-container {
    flex: 1.5;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}


textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s ease;
}

textarea:focus {
    outline: none;
    border-color: #0056b3;
}


@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}

.contact-section { padding: 80px 5%; background: #2c3e50; color: white; }
.contact-container { display: flex; gap: 40px; max-width: 1000px; margin: 0 auto; flex-wrap: wrap; }
.contact-form input, .contact-form textarea { width: 100%; padding: 10px; margin-bottom: 10px; border-radius: 5px; border: none; }
.btn-submit { background: #3498db; color: white; padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; width: 100%; }
.main-footer { background: #1a252f; color: #bdc3c7; padding: 40px 5%; text-align: center; }
.footer-social a { color: white; margin: 0 10px; text-decoration: none; }.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 20px 0;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; 
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}


.facebook { background-color: #1877F2; }
.instagram { background-color: #E4405F; }
.tiktok { background-color: #000000; }
.whatsapp { background-color: #25D366; }


.social-btn:hover {
    transform: translateY(-5px); 
    filter: brightness(1.2);    
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.jobs-section {
    padding: 80px 10%;
    background-color: #f8f9fa;
}

.jobs-container {
    max-width: 1100px;
    margin: 0 auto;
}

.jobs-header {
    text-align: center;
    margin-bottom: 50px;
}

.jobs-content {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.job-benefits, .job-form {
    flex: 1;
    min-width: 300px;
}

.job-benefits h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
}

.job-benefits ul {
    list-style: none;
    padding: 0;
}

.job-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.job-benefits i {
    color: #28a745;
    margin-right: 12px;
    font-size: 1.2rem;
}


.job-form {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.job-form input, .job-form select {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.form-hint {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 20px;
}

.btn-whatsapp-submit {
    width: 100%;
    background-color: #25d366;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-whatsapp-submit:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .jobs-section { padding: 50px 5%; }
    .jobs-content { flex-direction: column; }
}


.jobs-section {
    padding: 60px 10%;
    background-color: #f9f9f9;
}

.jobs-container {
    max-width: 1100px;
    margin: 0 auto;
}

.jobs-header {
    text-align: center;
    margin-bottom: 40px;
}

.jobs-header h2 {
    color: #0056b3;
    font-size: 2rem;
    margin-bottom: 10px;
}


.jobs-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap; 
}


.job-benefits {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.job-benefits h3 {
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
}

.job-benefits ul {
    list-style: none;
    padding: 0;
}

.job-benefits li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.job-benefits i {
    color: #28a745; 
}

.modern-form {
    flex: 1.5;
    min-width: 320px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.input-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #444;
}

.input-group input, 
.input-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus, 
.input-group select:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 5px rgba(0,86,179,0.2);
}


.info-note {
    background: #e7f3ff;
    color: #0056b3;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}


.btn-whatsapp-submit {
    width: 100%;
    padding: 15px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.btn-whatsapp-submit:hover {
    background-color: #1ebe57;
}


@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .jobs-section {
        padding: 40px 5%;
    }
}


.modern-form .form-row {
    display: flex;
    gap: 20px;
}

.input-group {
    margin-bottom: 20px;
    flex: 1;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 0.9rem;
}

.input-group input, 
.input-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus, 
.input-group select:focus {
    outline: none;
    border-color: #1f64cc; 
}


.info-note {
    background: #e7f3ff;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: #0c5460;
    font-size: 0.85rem;
}

.btn-submit-blue {
    width: 100%;
    padding: 15px;
    background-color: #0056b3; 
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease;
}

.btn-submit-blue:hover {
    background-color: #003d7a;
}


input[type="file"] {
    padding: 10px;
    background: #f1f1f1;
    border: 1px dashed #ccc;
    cursor: pointer;
}

.btn-whatsapp-submit {
    width: 100%;
    padding: 15px;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-whatsapp-submit:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
}


@media (max-width: 600px) {
    .modern-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}

#whatsappForm input, 
#whatsappForm select {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 2
}

.btn-cotizar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25d366; 
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-cotizar i {
    font-size: 1.2rem;
}

.btn-cotizar:hover {
    background-color: #128c7e;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white; 

}
.mini-slider {
    position: relative;
    width: 100%; 
    max-width: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.mini-slide {
    display: none;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.mini-slide.active {
    display: block;
    animation: fade 0.5s ease-in;
}


.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.next { right: 0; }
.prev { left: 0; }

@keyframes fade {
    from { opacity: 0.4; }
    to { opacity: 1; }
}


.mini-slider {
    position: relative;
    width: 450px; 
    height: 350px; 
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.mini-slide {
    display: none;
    width: 100%;
    height: 100%; 
    object-fit: cover; 
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 74, 153, 0.6); 
    color: white;
    border: none;
    padding: 15px 10px;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    border-radius: 0 5px 5px 0;
}

.next { right: 0; border-radius: 5px 0 0 5px; }
.prev:hover, .next:hover { background: #004a99; }

@media (max-width: 768px) {
    .item-servicio, .item-servicio.reverse {
        flex-direction: column;
        padding: 20px;
    }
   
    .mini-slider, .item-servicio img {
        width: 100% !important; 
        height: 250px;
    }
    .texto-servicio {
        text-align: center;
    }
    .texto-servicio h3::after {
        margin: 10px auto; 
    }
}