body {
    font-family: 'Inter', sans-serif;
    background-color: #2D3748; /* Dark Gray/Black */
    color: #FFFFFF; /* White text */
}
.bg-brand-orange {
    background-color: #faaf18; /* Orange */
}
.text-brand-orange {
    color: #faaf18; /* Orange */
}
.border-brand-orange {
    border-color: #faaf18; /* Orange */
}
.section-title {
    font-size: 2.25rem; /* Equivalent to text-4xl */
    font-weight: 700;
    margin-bottom: 1.5rem; /* Equivalent to mb-6 */
    text-align: center;
    text-transform: uppercase;
    color: #faaf18;
}
.subsection-title {
  font-size: 1.875rem; /* Equivalent to text-3xl */
  font-weight: 600;
  margin-bottom: 1rem; /* Equivalent to mb-4 */
  color: #000; /* Orange */
}
.card {
    background-color: #fff; /* Slightly lighter gray for cards */
    border-radius: 0.5rem; /* rounded-lg */
    padding: 1.5rem; /* p-6 */
    margin-bottom: 1rem; /* mb-4 */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    color: #000;
}
.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}
.nav-link:hover {
    background-color: #faaf18; /* Orange */
    color: #FFFFFF;
}
.hero-section {
    background-image: url('assets/bg.png'); /* Placeholder for hero image */
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Dark overlay */
}
.hero-content {
    position: relative;
    z-index: 10;
}
.logo-container {
    max-width: 500px; /* Adjust as needed */
    margin: 0 auto 1rem;
}
footer {
    background-color: #1A202C; /* Even darker gray for footer */
}
/* Styling for the "Nuestro Equipo" section to mimic the diagonal elements */
.team-member-card {
    position: relative;
    overflow: hidden; /* To contain the pseudo-element */
    padding-left: 2.5rem; /* Space for the diagonal element */
}
.team-member-card::before {
    content: "";
    position: absolute;
    left: -20px; /* Adjust to position correctly */
    top: 0;
    bottom: 0;
    width: 40px; /* Width of the diagonal strip */
    background-color: #faaf18; /* Orange */
    transform: skewX(-20deg); /* Create the diagonal effect */
    z-index: 0;
}
  .team-member-card-content {
    position: relative;
    z-index: 1;
}

/* Service item styling */
.service-item {
    position: relative;
    padding-left: 2.5rem; /* Space for the icon/marker */
    margin-bottom: 1rem;
    border: 1px solid #ccc;
}
.service-item::before {
    content: ""; /* Could be an SVG icon or a styled element */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) skewX(-20deg);
    width: 20px; /* Width of the marker */
    height: 20px; /* Height of the marker */
    background-color: #faaf18; /* Orange */
}

/* Responsive table for machinery */
.machinery-table-container {
    overflow-x: auto;
}
.machinery-table {
    width: 100%;
    min-width: 600px; /* Ensure table is scrollable on small screens if content is wide */
    border-collapse: collapse;
}
.machinery-table th, .machinery-table td {
    border: 1px solid #4A5568;
    padding: 0.75rem;
    text-align: left;
}
.machinery-table th {
    background-color: #000;
    color: #FFFFFF;
    font-weight: 600;
}
.machinery-table tr:nth-child(even) {
    background-color: #c8c8c8; /* Slightly different shade for alternate rows */
}
.machinery-table tr:hover {
    background-color: #ebcf98;
}
/* Client logo styling */
.client-logo-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.client-logo img {
    max-height: 80px; /* Adjust as needed */
    width: auto;
    /* filter: grayscale(100%) contrast(120%); */
    transition: filter 0.3s ease;
}
.client-logo img:hover {
    filter: none; /* Show original color on hover */
}

#mobile-menu{
  position: absolute;
  width: 100%;
  text-align: center;
}

#mobile-menu a{
  border-bottom: 1px solid #333f4e;
  border-radius: 0px;
}

#equipo{
  background-image: url(assets/nuestro-equipo.png);
  background-size: cover;
  background-position: bottom;
}
