/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5; /* Color de fondo general */
}

/* Estilos del encabezado */
.hero.is-info {
    background: url('tu-imagen.jpg') center/cover; /* Ajustar la imagen de fondo */
}

.hero-head .navbar {
    background-color: transparent;
}

.navbar-brand h1.title.is-4 {
    color: #fff;
    font-weight: bold;
}

.hero-body p.title {
    border-radius: 50%;
    width: 260px;
}

.hero-body p.title:hover {
    transform: scale(1.1); /* Efecto de escala al hacer hover */
}

.hero-body p.subtitle {
    font-size: 1.2rem;
    margin-top: 20px;
}

.hero-foot .tabs.is-boxed {
    background-color: transparent;
}

.tabs.is-boxed ul li a {
    color: #fff;
    transition: color 0.3s ease-in-out;
}
.tabs.is-boxed a:hover {
    background-color: rgba(0, 0, 0, 0.4) !important;
    border-bottom-color: #dbdbdb;
}

.tabs li.is-active a {
    color: #ffffffd3 !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
    opacity: 1;
}

.title.is-1.head {
    color: white !important;
}

/* Estilos de las secciones */
#nosotros, #clientes, #contacto, #flota {
    background-color: #f5f5f5;
    padding: 30px 0;
    margin-bottom: 1px;
}

.title.is-1.has-text-centered {
    font-size: 2.5rem;
}
.title.is-1.head {
    color: rgba(255, 255, 255, 0.171);
}

.subtitle {
    color: black !important;
    
}

/* Estilos de las columnas */
.columns.is-centered {
    justify-content: center;
}

.column.is-3 {
    margin: 10px;
    text-align: center;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    padding: 10px;
    background-color: #fff;
    transition: transform 0.2s ease-in-out; /* Efecto de escala al hacer hover */
}

.column.is-3:hover {
    transform: scale(1.1); /* Efecto de escala al hacer hover */
}

.column.is-3 img {
    max-width: 100%;
}

/* Estilos para la galería de fotos */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.gallery-item {
    margin: 10px;
    transition: transform 0.2s ease-in-out;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border: 2px solid #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.gallery-item:hover img {
    border-color: #007bff;
    box-shadow: 0 8px 12px rgba(0, 123, 255, 0.2);
}

/* Estilos para el footer */
.footer {
    background-color: #24262B;
    padding: 40px 0;
    color: white !important;
    text-align: center;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-links {
    width: 25%;
    padding: 0 15px;
    margin-bottom: 20px;
    text-align: left;
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.redes {
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

.redes a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.redes a:hover {
    color: #3498db;
}

/* Estilos para el botón de WhatsApp (.wsp) */
.wsp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    height: 50px;
    width: 50px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out;
}

.wsp:hover {
    background-color: #128c7e;
    cursor: pointer;
}

.wsp img {
    width: 30px;
    height: 30px;
    display: block;
    margin: 0 auto;
}

.is-padre {
    position: relative;
}

.hijo {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hijo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    /* Estilos para dispositivos de ancho máximo de 768px */
    .hero-body p.title {
        width: 100%;
    }

    .column.is-3 {
        width: 100%;
        margin: 10px 0;
        padding: 10px 0;
    }

    .footer-links {
        width: 50%;
    }
}
@media screen and (max-width: 768px) {
    body {
        padding: 20px; /* Agrega un espacio alrededor del cuerpo de la página */
    }

    .hero.is-padre {
        padding-top: 100px; /* Añade espacio en la parte superior de la sección hero */
    }

    .title.is-1.has-text-centered {
        font-size: 2rem; /* Disminuye el tamaño de la fuente para los títulos */
    }
    
    .column.is-3 {
        margin: 30px; /* Ajusta el margen de las columnas */
        padding: 30px; /* Ajusta el espacio interno de las columnas */
    }
}

/* Estilos para igualar la altura de los elementos .card-content */
.card-content {
    display: flex;
    flex-direction: column;
    min-height: 290px; /* Ajusta esta altura mínima según tus necesidades */
  }
  .card-content .content {
    margin-top: -10px; /* Ajusta el valor según tus necesidades */
  }
  .card-content .content {
    text-align: justify !important;
    padding-top: 0;

  }
  
