/* Estilos para las páginas de Personalizados (Bordados y Parches) */
body.personalizados-page {
    background-color: #f4f4f4; /* Un fondo gris claro para la página */
}

.hero-personalizados {
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.hero-personalizados h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff; /* Cambiado de amarillo a blanco */
}

.hero-personalizados .subtitle {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.content-section {
    padding: 50px 20px;
    max-width: 900px;
    margin: 40px auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.content-section h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    color: #333;
}

.content-section p,
.content-section li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    text-align: left;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reason-item {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #333; /* Cambiado de amarillo a gris oscuro */
}

.reason-item h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 10px;
    text-align: left;
}

.how-it-works-list {
    list-style: none;
    padding: 0;
    counter-reset: steps-counter;
}

.how-it-works-list li {
    counter-increment: steps-counter;
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.how-it-works-list li::before {
    content: counter(steps-counter);
    background-color: #333; /* Cambiado de amarillo a gris oscuro */
    color: #fff; /* Cambiado de negro a blanco */
    font-weight: bold;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-right: 20px;
}

.cta-section {
    background-color: #1a1a1a; /* Un poco más claro que el negro puro */
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    margin-top: 50px;
}

.cta-section h2 {
    color: #fff; /* Cambiado de amarillo a blanco */
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 30px auto;
}

.cta-item {
    font-weight: 500;
}

.cta-button {
    background-color: #fff; /* Cambiado de amarillo a blanco */
    color: #000; /* Cambiado de negro a negro */
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    display: inline-block;
    margin-top: 20px;
    font-size: 1.1rem;
    border: 1px solid #fff;
}

.cta-button:hover {
    background-color: transparent;
    color: #fff; /* Texto blanco al pasar el mouse */
}

.checkmark-list {
    list-style: none;
    padding: 0;
}

.checkmark-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.checkmark-list li::before {
    content: '✔';
    color: #333; /* Cambiado de amarillo a gris oscuro */
    font-size: 1.5rem;
    margin-right: 15px;
}

/* Estilos para la galería de imágenes */
.gallery-section {
    background-color: #f4f4f4;
    padding-top: 0;
    margin-top: 0;
    border-top: 1px solid #e0e0e0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}
