/* General */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #FFFFFF; /* Fondo blanco */
}

/* Header Styles */
#masthead {
    background: #FFFFFF; /* Fondo blanco */
    color: #C53678; /* Texto rojo-violeta */
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-container {
    height: 10vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px; /* Ajusta el padding lateral */
    max-width: 1400px; /* Ajusta el ancho máximo del contenido */
    margin: 0 auto;
}

.logo img {
    width: 200px; /* Ajusta el tamaño del logo */
}

.navigation-menu ul {
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 0;
    margin-left: 500px;
}

.navigation-menu ul li a {
    color: #003B73; /* Rojo-violeta */
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
}

.navigation-menu ul li a:hover {
    border-bottom: 2px solid #003B73;
}

.call-button a {
    background-color: #FFFFFF; /* Fondo blanco */
    color: #003B73; /* Texto en rojo-violeta */
    padding: 5px 15px; /* Reduce el padding para que el botón sea más angosto */
    border: 1px solid #003B73;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s, color 0.3s;
}

.call-button a:hover {
    background-color: #003B73; /* Cambia a rojo-violeta en hover */
    color: #FFFFFF;
}


/* Hero Section */
.hero {
    position: relative;
    background-color: #FFFFFF;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
}

.hero::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 80%; /* Ajusta el ancho según el tamaño que desees */
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%),
                url('./img/Portada_5.jpg') center center no-repeat;
    background-size: cover;
    clip-path: polygon(0 0, 90% 0, 100% 60%, 90% 100%, 0 100%); /* Forma de flecha `>` */
    z-index: 1;
}


.hero-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 50px;
    position: relative;
    z-index: 2;
    gap: 40px;
}

.hero-text {
    margin-top: 70px;
    margin-left: 50%;
}

.hero-text h1 {
    color: #003B73; /* Rojo-violeta */
    font-size: 2.5rem;
    font-weight: bold;
    display: flex;
}

.hero-text p {
    color: #333;
    font-size: 1.2rem;
    max-width: 600px;
    line-height: 1.6;
}


.hero-call-button {
    display: inline-block;
    background-color: #003B73; /* Naranja ocaso */
    color: #fff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.hero-call-button:hover {
    background-color: #003B73; /* Rojo-violeta */
}

/* Floating WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
}


/*SECCION NUESTROS SERVICIOS*/

.tittle_seccion_uno{
    color: #003B73;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px;

}

.services-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 50px;
    background-color: #FAF9F7; /* Color claro */
    flex-wrap: wrap; /* Permite que las tarjetas se ajusten en varias filas */
}

/* Barra lateral de Servicios */

.title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Espacio entre el título y la imagen */
}

.tittle_seccion_uno {
    color: #003B73;
    font-size: 1.8rem;
    font-weight: bold;
    font-style: italic;
}

.colibri-image {
    width: 60px; /* Ajusta el tamaño de la imagen según tus necesidades */
    height: auto;
    transform: translateY(30px); /* Ajusta el valor para mover la imagen hacia abajo */
}


.services-sidebar {
    width: 100%;
    max-width: 250px;
    background-color: #e0e0e0;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.services-sidebar h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
}

.sidebar-button, .quote-button {
    background-color: #003B73;
    color: #fff;
    border: none;
    padding: 10px;
    width: 100%;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
}

.quote-button {
    margin-top: 20px;
}

.contact-info h3 {
    color: #333;
    font-size: 1.2rem;
    margin: 10px 0;
}

.contact-info p {
    font-size: 0.9rem;
    color: #333;
    margin: 10px 0;
}

/* Tarjetas de Servicios */
.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    justify-content: space-around;
    padding-bottom: 0; /* Asegura que no haya padding inferior */
}


.service-card {
    width: calc(25% - 20px);
    background-color: #f2f2f2;
    text-align: center;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    /* margin-bottom: 20px; */ /* Remueve esta línea */
}

.service-card img {
    width: 100%;
    height: 300px; /* Fija la altura para mantener uniformidad */
    object-fit: cover; /* Asegura que la imagen cubra el área asignada */
}

.service-card h3 {
    font-size: 1.2rem;
    color: #003B73;
    margin: 15px 0;
}

.service{
    color: #003B73;
    font-weight: bold;
}

.service-info {
    color: #003B73;
    padding: 15px;
    background-color: #d3d3d36b;
}

.service-info p {
    text-align: justify;
    font-size: 0.9rem;
    color: #333;
}

.detail-button {
    background-color: #FF7F50; /* Naranja */
    color: #FFFFFF;
    border: none;
    padding: 8px 16px;
    margin-top: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s; /* Añade una transición suave */
}


.detail-button:hover {
    background-color: #f5f4f4; /* Naranja oscuro */
    color: #FF7F50;
}


/* Sección: Por qué Elegirnos */
.why-choose-us {
    background-color: #FFFFFF; /* Fondo blanco */
    color: #333; /* Texto gris oscuro */
    padding: 50px 20px;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 2rem;
    color: #FF7F50; /* Título en naranja */
    margin-bottom: 10px;
}

.why-choose-us .subtitle {
    font-size: 1rem;
    color: #333; /* Subtítulo gris oscuro */
    margin-bottom: 40px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.feature {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9; /* Fondo gris claro */
    color: #333; /* Texto gris oscuro */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.feature-img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
    filter: brightness(0) saturate(100%) invert(52%) sepia(85%) saturate(508%) hue-rotate(-11deg) brightness(97%) contrast(97%);
}

.feature h3 {
    font-size: 1.2rem;
    color: #003B73; /* Naranja */
    margin-bottom: 10px;
    font-weight: bold;
}

.feature p {
    font-size: 0.9rem;
    color: #333; /* Gris oscuro */
    text-align: justify;
}


/* Sección del Parque Automotor */
.fleet-section {
    background-color: #FAF9F7; /* Color claro */
    padding: 50px 20px;
}

.fleet-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    flex-wrap: wrap;
}

.fleet-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fleet-text {
    flex: 1;
    max-width: 500px;
    text-align: left;
}

.fleet-text h4 {
    font-size: 1rem;
    color: #FF7F50; /* Naranja */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.fleet-text h2 {
    font-size: 2rem;
    color: #003B73;
    margin-bottom: 20px;
}

.fleet-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.fleet-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-red {
    background-color: #881203; /* Naranja */
    color: #ffffff;
}

.btn-red:hover {
    background-color: #ffffff; /* Rojo-violeta */
}

.btn-light {
    background-color: #ffffff;
    color: #FF5841; /* Naranja */
}

.btn-light:hover {
    background-color: #FF5841; /* Naranja */
    color: #ffffff;
}


/* Sección de Testimonios */
.testimonials-section {
    background-color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.testimonials-section h4 {
    font-size: 1rem;
    color: #A59F94; /* Color beige */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonials-section h2 {
    font-size: 2rem;
    color: #003B73;
    margin-bottom: 40px;
}

.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    background-color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    max-width: 500px;
    text-align: left;
    position: relative;
}

.testimonial p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
}

.testimonial .quote-mark {
    font-size: 3rem;
    color: #E8E4DA;
    position: absolute;
    top: -10px;
    left: -10px;
    z-index: -1;
}

.testimonial-author {
    text-align: left;
}

.testimonial-author strong {
    font-size: 1rem;
    color: #333;
    display: block;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: #A59F94;
}

/* Botón */
.button-container {
    margin-top: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-red {
    background-color: #FF5841; /* Naranja */
    color: #ffffff;
}

.btn-red:hover {
    color: #FF5841 ;
    background-color: #f5f4f4; /* Rojo-violeta */
}

/* Sección Contactanos */
.corporate-program-section {
    display: flex;
    justify-content: center;
    align-items: center; /* Centra verticalmente */
    text-align: center; /* Centra el texto */
    padding: 50px 20px;
    background-color: #FAF9F7; /* Color claro */
    color: #333;
    flex-direction: column; /* Asegura que los elementos estén en columna */
}

.left-column {
    max-width: 600px; /* Limita el ancho máximo de la columna */
    width: 100%; /* Ocupa todo el espacio disponible */
}

.left-column h2 {
    font-size: 2rem; /* Tamaño de fuente del título */
    color: #003B73;
    margin-bottom: 20px;
}

.left-column p {
    font-size: 1.2rem; /* Tamaño de fuente del párrafo */
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
    text-align: justify;
}

.btn-request-info {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #FF7F50; /* Naranja */
    color: #FFFFFF;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-request-info:hover {
    background-color: #f5f4f4; /* Naranja oscuro */
    color: #FF7F50;
}


/* WhatsApp Button Styles */
.whatsapp-chat {
    background: none;
    display: flex;
    align-items: center;
    gap: 5px;
    position: fixed;
    bottom: 20px;
    left: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-chat:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon img {
    width: 60%;
    height: auto;
}

.whatsapp-text {
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
}

.whatsapp-text p {
    margin: 0;
    color: #888;
}

.whatsapp-text strong {
    display: block;
    color: #333;
    font-size: 1rem;
}

/* Services, Testimonials, and Contact Sections */
.services, .testimonials, .contact {
    padding: 40px 20px;
    text-align: center;
}

.service, .testimonial {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact input, .contact textarea {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact button {
    padding: 10px 20px;
    background-color: #4A90E2;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

/* Fleet Section */
.fleet {
    padding: 40px 20px;
    text-align: center;
}

.fleet h2 {
    color: #333;
}

.fleet-item {
    display: flex;
    align-items: center;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.fleet-item img {
    width: 50%;
    height: auto;
    border-radius: 5px;
}

.fleet-description {
    padding: 20px;
}

.fleet-item.left img {
    order: 1;
}

.fleet-item.right img {
    order: 2;
}

.fleet-item.left .fleet-description {
    order: 2;
    text-align: left;
}

.fleet-item.right .fleet-description {
    order: 1;
    text-align: right;
}


/* Footer Section Styles */
.footer-section {
    background-color: #333;
    color: #fff;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-top-left {
    display: flex;
    gap: 20px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-item .icon {
    font-size: 2rem;
    color: #8CC63F; /* Verde */
}

.footer-item h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
}

.footer-item p {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

.btn-reserve {
    background-color: #8CC63F;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-reserve:hover {
    background-color: #6FAA30;
}

.footer-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.footer-column p,
.footer-column ul {
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-column .social-icons a {
    justify-content: center;
    align-items: center;
    margin-right: 40px;
    color: #ddd;
}

.footer-column .social-icons img {
    width: 30px;
    height: 30px;
}

.footer-column .social-icons img:hover {
    background-color: white;
    border-radius: 50%;
}

.footer-logo {
    width: 150px;
    margin-top: -70px;
}

.slogan{
    display: flex;
    margin-left: 20px;
}

.footer-copy {
    margin-top: 80px;
    text-align: center;
    font-size: 0.9rem;
    color: #ccc;
    justify-content: flex-end;
}


/* Responsive Design */
@media (max-width: 768px) {
    .features-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-logo img {
        margin-bottom: 20px;
    }
}


/* Responsivo */
@media (max-width: 768px) {
    .corporate-program-section {
        flex-direction: column;
        align-items: center;
    }

    .left-column, .right-column {
        width: 100%;
    }

    .right-column {
        margin-top: 20px;
    }
}


/* Responsivo */
@media (max-width: 768px) {
    .testimonials-container {
        flex-direction: column;
        align-items: center;
    }

    .testimonial {
        max-width: 100%;
    }
}


/* Responsivo */
@media (max-width: 768px) {
    .fleet-container {
        flex-direction: column;
        text-align: center;
    }

    .fleet-text {
        max-width: 100%;
    }

    .fleet-buttons {
        justify-content: center;
    }
}




/* Responsive Design for Smaller Screens */
@media (max-width: 1024px) {
    .service-card {
        width: calc(50% - 20px); /* Dos tarjetas por fila en pantallas medianas */
    }
}

@media (max-width: 768px) {
    .service-card {
        width: 100%; /* Una tarjeta por fila en pantallas pequeñas */
    }
}


/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .navigation-menu ul {
        flex-direction: column;
        display: none;
    }

    .navigation-menu ul.show {
        display: flex;
    }

    .hero {
        text-align: center;
    }

    .fleet-item {
        flex-direction: column;
        text-align: center;
    }

    .fleet-item img {
        width: 100%;
        margin-bottom: 10px;
    }
}
