html, body {
    background-color: var(--color-black); 
    margin: 0 !important;
    padding: 0 !important;
    min-height: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.Navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background-color: transparent;
} 

/* ============================
   🟣🟣🟣 SECCIÓN SERVICIOS 🟣🟣🟣
   ============================ */

/* CONTENEDOR GENERAL */
.about { 
    background-color: var(--color-black); 
    padding: 6rem 0; 
    width: 80%;
    margin: auto;
    overflow-x: hidden;
}

/* TEXTOS INTRO */
.serv-title,
.serv-title0 {
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: var(--h6-size);
    font-weight: var(--h6-weight);
    text-align: center;
}

.serv-title {
    margin-top: 6rem;
    margin-bottom: 1rem;
}

.serv-title0 {
    margin-bottom: 6rem;
}

.serv-highlight {
    color: var(--color-orange);
}

/* CARD BASE */
.about-card { 
    width: 100%; 
    max-width: 1400px; 
    margin: 0 auto 8rem auto; 
    display: grid; 
    grid-template-columns: 1fr 1.2fr; 
    background-color: var(--color-gray); 
    border-radius: 20px; 
    overflow: hidden; 
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.about-card:last-child {
    margin-bottom: 8rem;
}

/* PREVENIR OVERFLOW */
.about-card > * {
    min-width: 0;
}

/* IMAGEN */
.about-image img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    display: block;
}

/* CONTENIDO */
.about-content { 
    padding: 3rem; 
    color: var(--color-white); 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
}

.about-content h2 { 
    font-size: var(--h2-size); 
    font-weight: var(--h2-weight); 
    margin-bottom: 1rem; 
    white-space: normal;       
    word-break: keep-all;    
    overflow-wrap: break-word; 
    hyphens: none;
}

.about-content p { 
    font-size: var(--p-size); 
    font-weight: var(--p-weight); 
    margin-bottom: 2rem;
}

/* LISTA CON CHECKS */
.box-check p {
    margin: 0 !important;
    line-height: 1.4;
    transform: translateY(2px);
}

.box-check {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.box-check:last-child {
    margin-bottom: 0;
}

.check { 
    width: 25px; 
    height: 25px;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* CARD EN ESPEJO (DESKTOP) */
@media (min-width: 768px) {
    .about-card--reverse {
        grid-template-columns: 1.2fr 1fr;
    }

    .about-card--reverse .about-image {
        order: 2;
    }

    .about-card--reverse .about-content {
        order: 1;
    }
}

/* RESPONSIVE */
@media (max-width: 767px) { 
    .about-card { 
        grid-template-columns: 1fr; 
    } 

    .about-content { 
        padding: 2rem; 
        text-align: left; 
    }

    .about-image img {
        height: auto;
    }
}

@media (max-width: 576px) { 
    .about-content h2 {
        font-size: clamp(32px, 6vw, 40px); /* más pequeño y legible */
    }

    .about {
        padding: 4rem 0; 
    }

    .about-content { 
        padding: 2rem; 
        text-align: center; 
    }
}