body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #333;
}

/* Header transparente y centrado */
header {
    background-color: transparent;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
}

header img {
    max-height: 60px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff5733;
}

/* Sección Héroe */
.hero {
    padding: 150px 20px 100px;
    background-image: url('images/2.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero button {
    padding: 15px 30px;
    font-size: 1.1em;
    color: white;
    background-color: #ff5733;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero button:hover {
    background-color: #e74c3c;
}

/* Sección de características */
.features {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.features h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
}

.feature {
    display: inline-block;
    margin: 20px;
    max-width: 300px;
}

.feature img {
    width: 80px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.5em;
    color: #ff5733;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1em;
    color: #666;
}

/* Sección Por qué elegirnos */
.why-choose-us {
    padding: 80px 20px;
    background-color: #ececec;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 30px;
}

.why-choose-us p {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 20px;
}

/* Estilo del formulario */
.contact-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    color: #333;
}

.form-group label {
    font-weight: bold;
    color: #333;
}

.form-control {
    border-radius: 5px;
    padding: 10px;
    font-size: 1em;
}

.form-control:focus {
    border-color: #ff5733;
    box-shadow: none;
}

.btn-primary {
    background-color: #ff5733;
    border-color: #ff5733;
    padding: 10px 20px;
    font-size: 1.1em;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #e74c3c;
    border-color: #e74c3c;
}

/* Estilo del footer */
footer {
    background-color: #333;
    color: white;
    padding: 20px 50px;
    text-align: center;
}

footer p {
    margin: 0;
}

.social-icons a {
    color: white;
    margin: 0 10px;
    font-size: 1.5em;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff5733;
}

/* Responsividad */
@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin-left: 0;
        margin-top: 10px;
    }

    .features,
    .why-choose-us {
        text-align: left;
    }

    .feature {
        display: block;
        margin: 20px auto;
    }

    footer {
        flex-direction: column;
        text-align: center;
    }

    footer .social-icons {
        margin-top: 10px;
    }
}

.large-image {
    width: 100%;
    /* Hace que la imagen ocupe todo el ancho del contenedor */
    height: auto;
    /* Mantiene la proporción de la imagen */
    max-width: 300px;
    /* Puedes ajustar este valor según necesites para limitar el tamaño máximo */
    margin-bottom: 20px;
}

/* Estilo para ocultar bordes y títulos del modal */
.modal-content {
    background: none;
    border: none;
}

.modal-body {
    padding: 0;
}

.modal-dialog {
    max-width: 60%;
    margin: auto;
}

.modal-body video {
    width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .modal-dialog {
        max-width: 100%;
        /* Ocupa el 100% en dispositivos móviles */
    }
}

/* Estilo para el carrusel */
.carousel-inner img {
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.carousel-inner img:hover {
    transform: scale(1.05);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(100%);
}

.carousel-indicators li {
    background-color: #ff5733;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 50px;
    height: 50px;
}

.carousel-item {
    transition: transform 2s ease, opacity 1s ease;
}