/* Estilos para la sección Acerca de Nosotros */
.about-us {
    margin-top: 30px;
    font-family: 'Roboto', sans-serif;
    color: #ffffff;
}

.about-us h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #008243ff;  /* Color del título */
}

/* Ajustes para las pestañas (tabs) */
.about-us .nav-tabs .nav-link {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0.5rem;
    color: rgb(255, 255, 255) !important;              /* Texto verde */
    background-color: transparent !important; /* Fondo transparente */
    border: 1px solid transparent;            /* Borde por defecto transparente */
}

.about-us .nav-tabs .nav-link:hover {
    color: #008243ff !important; /* Mantiene el color verde al pasar el cursor */
    border-color: #008243ff !important;
}

.about-us .nav-tabs .nav-link.active {
    border-color: #008243ff !important;
    color: #008243ff !important;
    background-color: transparent !important;
}

/* Estilos para las tarjetas */
.about-us .card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    background-color: #fff;
}

.about-us .card:hover {
    transform: translateY(-5px);
}

.about-us .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #008243ff;  /* Color de los títulos de las tarjetas */
    margin-bottom: 0.75rem;
}

.about-us .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

.about-us .tab-content p {
    text-align: center;
    margin: 0 auto;
    max-width: 800px; /* Opcional, para limitar el ancho del párrafo */
}


/* Estilos para botones dentro de la sección Acerca de */
.about-us .btn {
    color: #008243ff;
    border-color: #008243ff;
    background-color: transparent !important;
    text-transform: uppercase;
    transition: background-color 0.3s, color 0.3s;
}

.about-us .btn:hover {
    background-color: #008243ff;
    color: #fff;
}

@media (max-width: 576px) {
    .about-us h2 {
      font-size: 2rem;
    }
    .about-us .card-title {
      font-size: 1.1rem;
    }
    .about-us .card-text {
      font-size: 0.9rem;
    }
}
