* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background-color: #0a0a0a;
    border-bottom: 2px solid #ff0000;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    height: 40px; 
}

.logo img {
    height: 100%; 
    width: auto; 
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff0000;
}

.clientes-section {
    background-color: #000;
    padding: 80px 60px;
    text-align: center;
    min-height: 80vh;
}

.clientes-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    text-align: left;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2em;
    color: #fff;
    text-align: left; 
    padding-bottom: 0; 
    border-bottom: none; 
    display: inline-block;
    width: auto;
}

.upload-btn {
    background-color: #ff0000;
    color: #fff;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background 0.3s ease;
    display: inline-block;
    font-size: 1.2em;
    border: none;
    cursor: pointer;
    text-align: center;
    margin-left: auto;
}

.upload-btn:hover {
    background-color: #e60000;
}

.clientes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    margin-bottom: 40px;
}

.cliente-card {
    background-color: #000;
    border: 2px solid #ff0000;
    border-radius: 10px; 
    padding: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cliente-image-container {
    height: 180px; 
    width: 315px;
    overflow: hidden;
    border-radius: 8px; 
    flex-shrink: 0;
}

.cliente-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cliente-text {
    text-align: left;
    flex-grow: 1;
}

.rating-user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.cliente-text h4 {
    color: #fff;
    font-size: 1.1em;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
}

.rating {
    color: #ff0000;
    font-weight: 700;
    font-size: 1.2em;
}

.cliente-text p {
    color: #ccc;
    font-size: 0.9em;
    line-height: 1.4;
    max-height: 4.2em;
    overflow: hidden;
}

.ver-mas-btn {
    background-color: #ff0000;
    color: #fff;
    padding: 15px 60px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s ease;
    display: inline-block;
    font-size: 1.2em;
    margin-top: 30px;
}

.ver-mas-btn:hover {
    background-color: #e60000;
}

.footer {
    background-color: #000;
    padding: 40px 60px 10px;
    border-top: 2px solid #ff0000;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6em;
}

.footer-menu {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
}

.footer-menu a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-menu a:hover {
    color: #ff0000;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-links img:hover {
    transform: scale(1.2);
}

.copy {
    color: #ff0000;
    font-size: 0.85em;
    margin-top: 20px;
    text-align: center;
}

@media (max-width: 900px) {
    .clientes-section {
        padding: 60px 20px;
    }

    .clientes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .clientes-header-container {
        flex-direction: column;
        gap: 20px;
    }

    .footer {
        padding: 30px 20px 10px;
    }

    .footer-content {
        gap: 15px;
    }

    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
}