/* Estilos para los botones */
.buttons-container {
    display: flex;
    justify-content: center;
    gap: 1rem; /* Espacio entre botones */
    margin-top: 1.5rem; /* Margen superior */
    flex-wrap: wrap; /* Permitir que los botones se envuelvan en móviles */
}

.custom-button {
    padding: 0.5rem 1.5rem; /* Padding más pequeño para móviles */
    border-radius: 0.5rem; /* Bordes más redondeados */
    font-weight: bold;
    font-size: 0.875rem; /* Tamaño de fuente más pequeño para móviles */
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    color: white; /* Texto blanco por defecto */
}

/* Efecto de brillo al pasar el mouse */
.custom-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.custom-button:hover::after {
    opacity: 1;
    width: 100%;
    height: 100%;
}

/* Botón Sobre Mí */
.custom-button.sobre-mi {
    background-color: #8b5cf6; /* Color morado */
}

.custom-button.sobre-mi:hover {
    background-color: #7c3aed; /* Color morado más oscuro al hover */
}

/* Botón GitHub */
.custom-button.github {
    background-color: #4a5568; /* Color gris */
}

.custom-button.github:hover {
    background-color: #2d3748; /* Color gris más oscuro al hover */
}

/* Botón LinkedIn */
.custom-button.linkedin {
    background-color: #2563eb; /* Color azul */
}

.custom-button.linkedin:hover {
    background-color: #1e40af; /* Color azul más oscuro al hover */
}

/* Botón Contactar */
.custom-button.contactar {
    background-color: #06b6d4; /* Color cian */
}

.custom-button.contactar:hover {
    background-color: #0891b2; /* Color cian más oscuro al hover */
}

/* Botón Descargar CV */
.custom-button.descargar-cv {
    background-color: #10b981; /* Color verde */
}

.custom-button.descargar-cv:hover {
    background-color: #059669; /* Color verde más oscuro al hover */
}

/* Ajustes para móviles */
@media (max-width: 640px) {
    .custom-button {
        width: 100%; /* Botones de ancho completo en móviles */
    }
}