/* --- estilos.css --- */

:root {
    --bg-light: #FFF9F0; /* Crema claro */
    --bg-dark: #1A237E; /* Azul Oscuro */
    --text-dark: #212121;
    --text-light: #FFFFFF;
    --accent-color: #FF7043; /* Naranja Vibrante */
    --accent-dark: #F4511E;
    --border-color: #E0E0E0;
    --list-spacing: 5rem;        /* Más espacio */
    --list-spacing-large: 7rem;  /* Mucho espacio */

}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Nunito Sans', sans-serif;
}

.font-black {
    font-weight: 900;
}
 
.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}
 
/* Full-Screen Menu Styles */
.fullscreen-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Start off-screen */
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 100;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}
.fullscreen-menu.is-open {
    right: 0;
}

/* Article Content Styles */
.article-content h2 {
    font-size: 1.875rem; /* 30px */
    line-height: 2.25rem; /* 36px */
    font-weight: 900;
    /* margin-top: 1.5rem;
    margin-top: 1.5rem; */
}
.article-content h3 {
    font-size: 1.5rem; /* 24px */
    line-height: 2rem; /* 32px */
    font-weight: 800;
    /* margin-top: 1.5rem;
    margin-top: 1.5rem; */
}
.article-content p {
    margin-top: 1.5rem;
    margin-top: 1.5rem;
    line-height: 1.75;
    color: #4A5568;
}
.article-content ul {
    list-style-type: disc;
    margin-top: 1.5rem;
    margin-top: 1.5rem;
    color: #4A5568;
}
.article-content li {
    margin-top: 1.5rem;
    margin-top: 1.5rem;
}
.article-content a {
    color: var(--accent-color);
    text-decoration: underline;
}
.article-content blockquote {
    border-left: 4px solid var(--accent-color);
    /* padding-left: 1rem; */
    margin: 1.5rem 0;
    font-style: italic;
    color: #6B7280;
    margin-top: 1.5rem;
    margin-top: 1.5rem;
}

.logo-clientes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 3.5rem; /* 40px */
    align-items: center;
}

.cliente-logo img {
    max-height: 40px; /* Ajusta esta altura según el tamaño de tus logos */
    width: auto;
    margin: 0 auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease-in-out;
}

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

.btn-accent {
    background-color: var(--accent-color);
    color: var(--text-light);
    font-weight: 800;
    border-radius: 9999px; /* Esto lo hace totalmente redondeado */
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
}

.btn-accent:hover {
    background-color: var(--accent-dark);
    transform: translateY(-3px); /* Efecto de "levantarse" */
    box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.15);
}


.article-content p,
.article-content li,
.article-content span,
.article-content div {
    font-size: 1.125rem !important; /* 18px - ajusta a tu gusto */
    line-height: 1.75 !important;
}