body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #FFFFFF;
    color: #0F172A;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

p {
    color: #6B7280;
    font-size: 18px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    background-color: #111827;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
}

.btn:hover {
    background-color: #374151;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    padding: 30px;
    border-radius: 10px;
}

.card h3 {
    margin-bottom: 10px;
}


.about {
    max-width: 700px;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
}

.contact button {
    margin-top: 20px;
    padding: 14px;
    width: 100%;
    background: #111827;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.contact button:hover {
    background: #374151;
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 40px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between
}



.logo {
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 0.5px;
    color: inherit;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

header.transparent {
    background-color: transparent;
    color: white;
}

header.scrolled {
    background-color: white;
    color: #0F172A;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
}


.hero {
    position: relative;
    height: 40vh;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: -1;
}


.hero-overlay {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.70);
    display: flex;
    align-items: center;
}


.hero-content {
    width: 100%;
    color: white;
    max-width: 700px;
}

.tag {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #E5E7EB;
}

.hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.hero {
    position: relative;
    height: 40vh;
}



.subtitle {
    font-size: 20px;
    color: #E5E7EB;
}

/*BOTON CONTACTO HEADER*/
.cta-btn {
    background-color: #000;
    color: #fff;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cta-btn::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.cta-btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.cta-btn span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-btn:hover span {
    transform: translateY(-1px);
}


/* ===== Cartera Clientes ===== */

.clientes-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
}

.clientes-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #111;
}

.clientes-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
}

.logos-clientes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.cliente-logo {
    width: 60px;
    height: 60px;
}

.cliente-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.cliente-logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

/* ===== Process ===== */
.process {
    padding: 80px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.process h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
}

.process-steps {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.process-steps .step {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-steps .step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


/* ===== Benefits ===== */
.benefits {
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.benefit {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.benefit .icon {
    display: block;
    margin: 0 auto 15px auto;
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.benefit .icon:hover {
    transform: scale(1.2);
}

/* ===== Clients ===== */
.clients {
    padding: 80px 20px;
    text-align: center;
    background-color: #f8f8f8;
}

.clients h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #111;
}

.clients-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.client-card {
    background-color: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    width: 250px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.client-card img {
    height: 60px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.client-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.client-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}


/* ===== FAQ ===== */
.faq {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.faq-item {
    max-width: 700px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/*ICONS*/
.icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.icon:hover {
    transform: scale(1.2);
}


/*CARDS*/
.card {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}
