body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.header {
    background-color: #002244;
    padding: 10px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

.nav-link {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}

.nav-link:hover {
    text-decoration: underline;
}

.logo-text {
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.hero {
    background-image: url('chevy-background1.jpg'); 
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 48px;
    margin: 0 0 20px;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
}

.btn {
    padding: 10px 20px;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background-color: #003d7a;
}

.about {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.about-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    margin: auto;
}

.about-image {
    width: 25%;
    border-radius: 10px;
}

.about-text {
    width: 50%;
}

.about-text p {
    font-size: 18px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
}

.featured-services {
    padding: 50px 0;
    background-color: #fff;
    text-align: center;
}

.services-grid {
    display: flex;
    justify-content: space-around;
    width: 90%;
    margin: auto;
}

.service-card {
    background-color: #f1f1f1;
    padding: 20px;
    border-radius: 5px;
    width: 30%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.footer {
    background-color: #002244;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 90%;
    margin: auto;
}

.footer-info {
    width: 30%;
}

.footer-info h3 {
    margin-bottom: 10px;
}

.social-links a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
}


.galeria {
    padding: 50px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.galeria-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin: auto;
}

.auto {
    flex: 1 1 calc(33% - 20px);
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.auto img {
    border-radius: 10px;
    width: 100%;
    height: 300px;
    object-fit: cover;

}

.auto p {
    margin-top: 10px;
    font-size: 18px;
}

.calculadora {
    padding: 50px 0;
    text-align: center;
}

.calculadora form {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    font-size: 14px;
    color: #555;
    display: block;
    margin: 0 auto 6px auto; /* Esta línea centra el formulario horizontalmente */
}

.calculadora button {
    padding: 10px 20px;
    background-color: #0056b3;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
}

.calculadora button:hover {
    background-color: #003d7a;
}

#resultado {
    margin-top: 20px;
    font-size: 18px;
}

.about-us {
    padding: 50px 0;
    background-color: #f1f1f1;
    text-align: center;
}

.integrantes {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.integrante {
    max-width: 300px;
    text-align: center;
}

.integrante img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.integrante h3 {
    margin-top: 10px;
    font-size: 24px;
}

.integrante p {
    font-size: 16px;
    color: #666;
}

.historia {
    padding: 50px 20px;
    background-color: #f1f1f1;
    text-align: center;
    color: #333;
    font-family: Arial, sans-serif;
}

.historia h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0056b3;
}

.historia p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 800px;
    margin: 20px auto;
}

.turno{
    padding: 50px 0;
    text-align: center;
}

#turnoForm {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    font-size: 14px;
    color: #555;
    display: block;
    margin: 0 auto 6px auto; /* Esta línea centra el formulario horizontalmente */
}

input, select, button {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
  }
  input:focus, select:focus {
    border-color: #0056b3;
    outline: none;
  }
.form-button {
    background-color: #0056b3;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
  }
.fomr-button:hover {
    background-color: #0056b3;
  }