body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 3vh;
 
    background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(63,94,251,1) 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.company-title {

    padding-top: 0.7%;
    font-size: 28px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.menu-items a, .dropbtn {
    margin-right: 5vh;
    text-decoration: none;
    color: #fff;
    padding: 2vh 2vh;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.menu-items a:hover, .dropbtn:hover {
    background-color: rgba(255,255,255,0.2);
}

.dropbtn{
    background-color: #4c41aa;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    color: rgb(255, 255, 255);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: rgba(255,255,255,0.2);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.hero {
    height: auto; /* Cambiamos a auto para que ajuste el contenido. */
    background-color: #e9f5f9;
    margin-top: 0;
    padding-bottom: 50px; /* Espacio extra en la parte inferior. */
}



.img-camion{
    margin-top: 0%;
    width: 150%;
    height: 100%;
    animation: moverCamion 30s linear infinite;
    
}

@keyframes moverCamion {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-30%);
    }
}

.camion-container {
    overflow: hidden;
    height: 85vh;
}


.introduccion {
    text-align: center;
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
}


.img{
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.flecha {
    width: 8vh;
    padding-top: 2%;
}
.introduccion{

 
    align-items: center; /* Centra el contenido horizontalmente */
    text-align: center; /* Centra el texto */
    padding: 0;
   
}
.img-logo img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 20px; /* Esto agrega un espacio entre la imagen y el texto */
}
.introduccion h1, .introduccion h4 {
    margin-top: 0; /* Asegura que no hay margen en la parte superior del texto */
}
@media screen and (min-width: 768px) { 
    /* Esto es un media query para pantallas mayores a 768px (tablets y desktops) */
    .introduccion {
        flex-direction: row;
        justify-content: space-between; 
    }
}

.quienes_Somos{
    font-size: 2vh;
    text-align: justify;
    padding: 2vh;
}


.dropdown-content a{
    width: 10vh;
}

.contact-section {
    padding: 50px 10%;
    margin-top: 40px;
    text-align: center;
    background-color: #f7f7f7;
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-intro {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item img {
    width: 40px;
    height: 40px;
}

/* Input Fields */
.contact-form {
    margin-top: 40px;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #555;
}

/* Footer */
.footer {
    padding: 20px 0;
    text-align: center;
    background-color: #333;
    color: #fff;
    margin-top: auto;
}

span{
    font-size: 2vh;
}